:root {
  --bg: #050505;
  --surface: #0e0e0e;
  --panel: #171717;
  --text: #f7f7f5;
  --muted: #aaa49d;
  --line: rgba(255,255,255,.17);
  --red: #f03732;
  --red-dark: #8f1518;
  --cream: #eee6d8;
  --yellow: #f4c54d;
  --blue: #6bbbec;
  --green: #8bd36f;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  background: var(--bg);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,.025) 0, rgba(255,255,255,.025) 1px, transparent 1px, transparent 6px);
  opacity: .28;
}

a { color: inherit; text-decoration: none; }

.wrap {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
}

.product-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 2px solid var(--line);
  background: rgba(5,5,5,.94);
  backdrop-filter: blur(12px);
}

.product-nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.product-brand { width: 146px; }
.product-brand img { display: block; width: 100%; height: auto; }

.product-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-menu a:hover { color: var(--yellow); }

.nav-cta,
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 17px;
  color: #000;
  background: var(--yellow);
  border: 3px solid #000;
  box-shadow: 4px 4px 0 var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform .14s linear, box-shadow .14s linear;
}

.cta.secondary {
  color: var(--text);
  background: #090909;
  border-color: var(--text);
  box-shadow: 4px 4px 0 var(--red-dark);
}

.nav-cta:hover,
.cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--red);
}

.product-hero {
  padding: 88px 0 70px;
  border-bottom: 2px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .54fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: end;
}

.eyebrow,
.section-label {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 6px 9px;
  color: #000;
  background: var(--yellow);
  border: 2px solid #000;
  box-shadow: 3px 3px 0 var(--red);
  font-family: "Courier New", monospace;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(56px, 8vw, 116px);
  line-height: .84;
  letter-spacing: -6px;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 730px;
  margin-bottom: 28px;
  color: var(--cream);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-status {
  padding: 22px;
  border: 3px solid var(--text);
  background: #0a0a0a;
  box-shadow: 7px 7px 0 var(--red-dark);
  font-family: "Courier New", monospace;
}

.hero-status strong {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 14px;
  text-transform: uppercase;
}

.status-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.status-list li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.status-list li:last-child { border-bottom: 0; }
.status-list li::before { content: "> "; color: var(--red); font-weight: 900; }

.status-note {
  margin: 17px 0 0;
  padding: 10px;
  color: #080808;
  background: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-proof {
  padding: 54px 0 0;
}

.proof-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 18px;
}

.proof-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.proof-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: contain;
  object-position: top center;
  border-top: 3px solid var(--text);
  border-bottom: 3px solid var(--text);
  background: #f4f4f2;
}

.section {
  padding: 82px 0;
  border-bottom: 2px solid var(--line);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

h2 {
  margin-bottom: 17px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: .92;
  letter-spacing: -4px;
  text-transform: uppercase;
}

.section-heading > p,
.split-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.problem-solution {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: var(--line);
  border: 2px solid var(--line);
}

.split-copy {
  min-height: 260px;
  padding: 30px;
  background: #080808;
}

.split-copy.solution { background: var(--cream); color: #111; }
.split-copy.solution p { color: #37332f; }

.split-copy h3 {
  margin-bottom: 18px;
  font-size: 28px;
  text-transform: uppercase;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audience-list span {
  padding: 10px 12px;
  color: #111;
  background: var(--cream);
  border: 2px solid #000;
  box-shadow: 3px 3px 0 var(--red-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--line);
  border-left: 2px solid var(--line);
}

.feature {
  min-height: 190px;
  padding: 24px;
  border-right: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
}

.feature h3 {
  margin-bottom: 12px;
  font-size: 22px;
  text-transform: uppercase;
}

.feature p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.workflow { border-top: 2px solid var(--line); }

.workflow-row {
  display: grid;
  grid-template-columns: 76px minmax(180px, .45fr) minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 2px solid var(--line);
  align-items: start;
}

.workflow-row b {
  color: var(--red);
  font-family: "Courier New", monospace;
  font-size: 26px;
}

.workflow-row h3 { margin: 0; font-size: 22px; text-transform: uppercase; }
.workflow-row p { margin: 0; color: var(--muted); line-height: 1.5; }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid var(--line);
}

.pricing-table th,
.pricing-table td {
  padding: 17px;
  border-bottom: 2px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.pricing-table th {
  color: #111;
  background: var(--cream);
  font-size: 12px;
  text-transform: uppercase;
}

.pricing-table td:last-child {
  color: var(--yellow);
  font-weight: 900;
  white-space: nowrap;
}

.pricing-note {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.case-study {
  display: grid;
  grid-template-columns: minmax(0, .55fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  padding: 34px;
  color: #111;
  background: var(--blue);
  border: 3px solid #000;
  box-shadow: 8px 8px 0 var(--red-dark);
}

.case-study h2 { margin: 0; }
.case-study p { margin-bottom: 0; font-size: 18px; font-weight: 700; line-height: 1.55; }

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.support-item {
  padding-top: 18px;
  border-top: 5px solid var(--red);
}

.support-item h3 { font-size: 21px; text-transform: uppercase; }
.support-item p { color: var(--muted); line-height: 1.5; }

.faq-list { border-top: 2px solid var(--line); }

.faq-list details { border-bottom: 2px solid var(--line); }
.faq-list summary { padding: 20px 4px; cursor: pointer; font-size: 18px; font-weight: 900; }
.faq-list details p { max-width: 820px; padding: 0 4px 20px; color: var(--muted); line-height: 1.55; }

.closing {
  padding: 90px 0;
  text-align: center;
}

.closing h2 { max-width: 850px; margin: 0 auto 26px; }
.closing .hero-actions { justify-content: center; }

.product-footer {
  padding: 28px 18px;
  color: var(--muted);
  border-top: 2px solid var(--line);
  text-align: center;
  font-size: 12px;
}

@media (max-width: 880px) {
  .hero-grid,
  .problem-solution,
  .case-study { grid-template-columns: 1fr; }

  .feature-grid,
  .support-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .product-menu a:not(.nav-cta) { display: none; }
}

@media (max-width: 600px) {
  .wrap { width: calc(100% - 24px); }
  .product-nav-inner { min-height: 68px; }
  .product-brand { width: 118px; }
  .nav-cta { min-height: 40px; padding: 0 11px; font-size: 9px; }
  .product-hero { padding: 58px 0 48px; }
  h1 { font-size: clamp(44px, 14vw, 66px); letter-spacing: -3px; }
  h2 { letter-spacing: -2px; }
  .hero-grid { min-width: 0; }
  .hero-grid > *,
  .hero-actions,
  .hero-status { min-width: 0; max-width: 100%; }
  .hero-actions .cta {
    width: 100%;
    max-width: 100%;
    padding: 11px 12px;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }
  .hero-copy,
  .status-note,
  h1,
  h2,
  h3,
  p { overflow-wrap: anywhere; }
  .status-note { font-size: 9px; }
  .proof-head { align-items: start; flex-direction: column; }
  .proof-image { aspect-ratio: 4 / 3; }
  .section { padding: 62px 0; }
  .feature-grid,
  .support-grid { grid-template-columns: 1fr; }
  .workflow-row { grid-template-columns: 52px 1fr; }
  .workflow-row p { grid-column: 2; }
  .pricing-table { display: block; overflow-x: auto; }
  .case-study { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
