/* ============== ESCALATION IT — Landing Page ============== */

:root {
  --orange: #FF5A1F;
  --orange-deep: #E84A0E;
  --orange-soft: #FF7A45;
  --ink: #0A0A0B;
  --ink-2: #131418;
  --ink-3: #1B1D22;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);
  --cream: #F4EFE6;
  --cream-2: #E8E1D3;
  --muted: rgba(244,239,230,0.62);
  --muted-2: rgba(244,239,230,0.42);
  --serif: "Fraunces", "Times New Roman", serif;
  --display: "Archivo Black", "Helvetica Neue", Impact, sans-serif;
  --sans: "Inter", "Helvetica Neue", system-ui, sans-serif;
  --mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--ink); color: var(--cream); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body { overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: transparent; }

/* ====== Layout container ====== */
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

/* ====== Top bar ====== */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,11,0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
}
.brand-mark {
  width: 22px; height: 22px;
  background: var(--orange);
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 11px; color: var(--ink); letter-spacing: 0;
  transform: skew(-8deg);
}
.brand-mark span { transform: skew(8deg); }
.topnav { display: flex; gap: 28px; font-size: 13px; color: var(--muted); }
.topnav a:hover { color: var(--cream); }
.topnav-status { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255,90,31,0.18); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(255,90,31,0.18);} 50% { box-shadow: 0 0 0 7px rgba(255,90,31,0.04);} }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 18px;
  border-radius: 2px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  transition: transform 120ms ease, background 200ms ease, color 200ms ease;
}
.btn-primary { background: var(--orange); color: var(--ink); font-weight: 600; }
.btn-primary:hover { background: var(--cream); transform: translateY(-1px); }
.btn-ghost { color: var(--cream); border: 1px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--cream); }
.btn-arrow { width: 14px; height: 1px; background: currentColor; position: relative; transition: width 200ms ease; }
.btn-arrow::after { content: ""; position: absolute; right: 0; top: -3px; width: 6px; height: 6px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg); }
.btn:hover .btn-arrow { width: 22px; }

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 30%, rgba(255,90,31,0.18), transparent 60%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(255,90,31,0.06), transparent 60%);
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black 30%, transparent);
  pointer-events: none;
}

.hero-left { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange);
  padding: 6px 12px;
  border: 1px solid rgba(255,90,31,0.3);
  border-radius: 2px;
  margin-bottom: 32px;
}
.eyebrow .pip { width: 5px; height: 5px; background: var(--orange); border-radius: 50%; }

.hero h1 {
  font-family: var(--display);
  font-size: clamp(48px, 7.4vw, 116px);
  line-height: 0.86;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero h1 .accent { color: var(--orange); }
.hero h1 .strike {
  display: inline-block;
  background: var(--ink);
  color: var(--orange);
  padding: 0 8px;
  transform: skew(-4deg);
}
.hero h1 .strike span { display: inline-block; transform: skew(4deg); }

.hero-sub {
  max-width: 540px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 40px;
}
.hero-sub strong { color: var(--cream); font-weight: 500; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  max-width: 580px;
}
.hero-meta-item .num {
  font-family: var(--display);
  font-size: 32px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.hero-meta-item .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}

/* Hero right — book cover stage */
.hero-right {
  position: relative;
  height: 720px;
  display: grid;
  place-items: center;
}
.cover-stage {
  position: relative;
  width: 100%; height: 100%;
  display: grid; place-items: center;
}
.cover-frame {
  position: relative;
  width: 360px; aspect-ratio: 625/1000;
  transform: rotate(-2deg);
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.7),
    0 60px 100px -40px rgba(255,90,31,0.4);
  border-radius: 2px;
  overflow: hidden;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}
.cover-frame img { width: 100%; height: 100%; object-fit: cover; }
@keyframes float {
  0%,100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-12px); }
}

/* Tactical UI overlays */
.hud {
  position: absolute; z-index: 4;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange);
  pointer-events: none;
}
.hud-line { stroke: var(--orange); stroke-width: 1; fill: none; }
.hud-corners {
  position: absolute;
  width: 22px; height: 22px;
  border: 1px solid var(--orange);
  z-index: 4;
}
.hc-tl { top: 8%; left: 12%; border-right: 0; border-bottom: 0; }
.hc-tr { top: 8%; right: 12%; border-left: 0; border-bottom: 0; }
.hc-bl { bottom: 8%; left: 12%; border-right: 0; border-top: 0; }
.hc-br { bottom: 8%; right: 12%; border-left: 0; border-top: 0; }

.hud-tag {
  position: absolute; z-index: 4;
  display: flex; align-items: center; gap: 8px;
  background: rgba(10,10,11,0.85);
  border: 1px solid var(--line-strong);
  padding: 8px 12px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cream);
  backdrop-filter: blur(6px);
}
.hud-tag .pip { width: 6px; height: 6px; background: var(--orange); }
.hud-tag.t1 { top: 8%; right: 4%; }
.hud-tag.t2 { bottom: 14%; left: 0%; }
.hud-tag.t3 { top: 38%; right: 0%; }

.hud-stat {
  position: absolute; z-index: 4;
  bottom: 4%;
  right: 4%;
  background: rgba(10,10,11,0.85);
  border: 1px solid var(--line-strong);
  padding: 14px 16px;
  font-family: var(--mono);
  backdrop-filter: blur(6px);
  min-width: 180px;
}
.hud-stat .lbl { font-size: 9px; letter-spacing: 0.18em; color: var(--muted); text-transform: uppercase; }
.hud-stat .val { font-family: var(--display); color: var(--orange); font-size: 24px; margin-top: 4px; }
.hud-stat .bar { height: 3px; background: var(--ink-3); margin-top: 8px; position: relative; overflow: hidden; }
.hud-stat .bar::after { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 78%; background: var(--orange); }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 40px; min-height: auto; padding: 60px 0; }
  .hero-right { height: 560px; }
  .cover-frame { width: 280px; }
}

/* ====== SECTION CHROME ====== */
section { position: relative; padding: 120px 0; }
.section-label {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.section-label::before {
  content: ""; width: 24px; height: 1px; background: var(--orange);
}
.section-title {
  font-family: var(--display);
  font-size: clamp(36px, 5.4vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 24px;
  max-width: 14ch;
}
.section-lede {
  max-width: 640px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
}
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line-strong), transparent);
}

/* ====== PROBLEM / STATS ====== */
.problem {
  background:
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  border-top: 1px solid var(--line);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem-quote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 300;
  font-style: italic;
}
.problem-quote .em { color: var(--orange); font-style: normal; font-weight: 400; }
.problem-meta { font-family: var(--mono); font-size: 11px; color: var(--muted); margin-top: 24px; letter-spacing: 0.1em; text-transform: uppercase; }

.stat-stack { display: grid; gap: 0; }
.stat-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: end;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.stat-row:first-child { padding-top: 0; }
.stat-num {
  font-family: var(--display);
  font-size: clamp(48px, 5.6vw, 72px);
  line-height: 1;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.stat-row.flag .stat-num { color: var(--orange); }
.stat-text { font-size: 14px; line-height: 1.5; color: var(--muted); padding-bottom: 8px; }
.stat-text strong { color: var(--cream); font-weight: 500; }

@media (max-width: 980px) { .problem-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ====== INSIDE THE BOOK / CHAPTERS ====== */
.inside { background: var(--ink); }
.inside-head { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: end; margin-bottom: 64px; }
.inside-head .section-lede { margin-top: 8px; }

.modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
.module {
  position: relative;
  padding: 36px 32px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 320px;
  display: flex; flex-direction: column;
  transition: background 240ms ease;
}
.module:hover { background: rgba(255,90,31,0.04); }
.module:nth-child(3n) { border-right: 0; }
.module:nth-last-child(-n+3) { border-bottom: 0; }
.module-id {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--orange);
}
.module h3 {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 14px 0 16px;
  max-width: 12ch;
}
.module p { font-size: 14px; line-height: 1.55; color: var(--muted); margin-bottom: 20px; }
.module-tags { margin-top: auto; display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid var(--line-strong);
  color: var(--muted);
}
.module-corner {
  position: absolute; top: 0; right: 0;
  width: 14px; height: 14px;
  border-left: 1px solid var(--orange);
  border-bottom: 1px solid var(--orange);
}

@media (max-width: 980px) {
  .inside-head { grid-template-columns: 1fr; }
  .modules { grid-template-columns: 1fr; }
  .module { border-right: 0 !important; }
  .module:last-child { border-bottom: 0; }
}

/* ====== PREVIEW ====== */
.preview {
  background: linear-gradient(180deg, var(--ink), var(--ink-2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.preview-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.preview-head .section-lede { margin-top: 8px; }
.preview-stage {
  border: 1px solid var(--line-strong);
  background: var(--ink);
  padding: 0;
  position: relative;
}
.preview-chrome {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--ink-2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.pc-dots { display: flex; gap: 6px; }
.pc-dots span {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--ink-3);
  border: 1px solid var(--line-strong);
}
.pc-dots span:first-child { background: var(--orange); border-color: var(--orange); }
.pc-title { color: var(--cream); flex: 1; }
.pc-meta { color: var(--orange); }
.preview-frame {
  position: relative;
  width: 100%;
  min-height: 480px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,90,31,0.15), transparent 70%),
    var(--ink);
  display: grid; place-items: center;
  padding: 56px 32px;
}
.preview-cta-card {
  position: relative;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
  max-width: 760px;
  width: 100%;
  padding: 36px 40px;
  background: rgba(10,10,11,0.7);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
}
.pcc-cover {
  width: 200px;
  aspect-ratio: 625/1000;
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.6), 0 30px 60px -20px rgba(255,90,31,0.3);
  transform: rotate(-2deg);
}
.pcc-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pcc-body { display: flex; flex-direction: column; gap: 14px; }
.pcc-meta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange);
}
.pcc-meta .pip { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }
.pcc-body h3 {
  font-family: var(--display);
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 4px 0 0;
}
.pcc-body p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 44ch;
  margin-bottom: 8px;
}
.pcc-body .btn { align-self: flex-start; }
.pcc-corner {
  position: absolute;
  width: 14px; height: 14px;
  border-color: var(--orange);
  border-style: solid;
  border-width: 0;
}
.pcc-corner.tl { top: -1px; left: -1px; border-top-width: 1px; border-left-width: 1px; }
.pcc-corner.tr { top: -1px; right: -1px; border-top-width: 1px; border-right-width: 1px; }
.pcc-corner.bl { bottom: -1px; left: -1px; border-bottom-width: 1px; border-left-width: 1px; }
.pcc-corner.br { bottom: -1px; right: -1px; border-bottom-width: 1px; border-right-width: 1px; }
@media (max-width: 720px) {
  .preview-cta-card { grid-template-columns: 1fr; gap: 24px; padding: 28px; text-align: left; }
  .pcc-cover { width: 140px; }
}
.preview-actions {
  display: flex;
  gap: 14px;
  padding: 20px 24px;
  border-top: 1px solid var(--line);
  background: var(--ink-2);
  flex-wrap: wrap;
}
@media (max-width: 980px) {
  .preview-head { grid-template-columns: 1fr; }
  .preview-frame { height: 540px; }
}

.endorse {
  background:
    linear-gradient(180deg, var(--ink-2), var(--ink));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.endorse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.endorse-card {
  position: relative;
  border: 1px solid var(--line);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.015);
}
.endorse-card .qmark {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 0.5;
  color: var(--orange);
  margin-bottom: 16px;
  height: 24px;
}
.endorse-card blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.4;
  color: var(--cream);
  margin-bottom: 28px;
  flex: 1;
}
.endorse-card cite {
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: block;
}
.endorse-card cite strong {
  display: block;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 500;
  margin-bottom: 4px;
}
.endorse-logos {
  display: flex; flex-wrap: wrap;
  gap: 36px 56px;
  align-items: center; justify-content: center;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  opacity: 0.7;
}
.endorse-logos .logo {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}
.endorse-logos .logo-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted-2);
  text-transform: uppercase;
}

@media (max-width: 980px) { .endorse-grid { grid-template-columns: 1fr; } }

/* ====== AUTHORS ====== */
.authors { background: var(--ink); }
.authors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  margin-top: 56px;
}
.author {
  padding: 48px 40px;
  border-right: 1px solid var(--line);
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.author:last-child { border-right: 0; }
.author-avatar {
  width: 88px; height: 88px;
  background: var(--ink-3);
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 32px;
  color: var(--orange);
  margin-bottom: 28px;
  border: 1px solid var(--line-strong);
  position: relative;
}
.author-avatar::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid var(--orange);
  border-right: 0; border-top: 0;
  width: 18px; height: 18px;
  bottom: auto; right: auto;
}

.author-photo {
  position: relative;
  width: 150px;
  min-width: 150px;
  max-width: 150px;
  height: 150px;
  flex: 0 0 150px;
  margin-bottom: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  overflow: hidden;
  filter: grayscale(0.15) contrast(1.05);
  display: block;
}
.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.author-photo-corner {
  position: absolute;
  top: -2px; right: -2px;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 0 2px var(--ink);
}
.author-photo::before {
  content: none;
}
.author h3 {
  font-family: var(--display);
  font-size: 36px;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.author .role {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.author p {
  font-size: 15px; line-height: 1.6; color: var(--muted);
  margin-bottom: 28px;
}
.author-cred {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.cred {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--muted);
  line-height: 1.4;
}
.cred .k { color: var(--cream); display: block; margin-bottom: 4px; font-size: 12px; }

@media (max-width: 980px) {
  .authors-grid { grid-template-columns: 1fr; }
  .author { border-right: 0; border-bottom: 1px solid var(--line); }
  .author:last-child { border-bottom: 0; }
}

/* ====== ADVANTAGE / WHY ====== */
.advantage {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,90,31,0.12), transparent 70%),
    var(--ink);
  border-top: 1px solid var(--line);
}
.advantage-head {
  text-align: center;
  margin-bottom: 80px;
}
.advantage-head .section-label { justify-content: center; }
.advantage-head .section-label::before { display: none; }
.advantage-head .section-title { margin: 0 auto 24px; max-width: 22ch; }
.advantage-head .section-lede { margin: 0 auto; }

.adv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.adv-card {
  border: 1px solid var(--line);
  padding: 36px 32px;
  position: relative;
  background: rgba(0,0,0,0.4);
}
.adv-card .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 24px;
}
.adv-card h4 {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 14px;
}
.adv-card p {
  font-size: 15px; line-height: 1.6; color: var(--muted);
}

@media (max-width: 720px) { .adv-grid { grid-template-columns: 1fr; } }

/* ====== TICKER ====== */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex; gap: 48px;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
}
.ticker-item .pip { color: var(--orange); font-size: 18px; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ====== FINAL CTA ====== */
.final {
  position: relative;
  padding: 140px 0 120px;
  background: var(--orange);
  color: var(--ink);
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.final-inner { position: relative; z-index: 2; text-align: center; }
.final-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 28px;
}
.final-eyebrow .pip { width: 6px; height: 6px; background: var(--ink); }
.final h2 {
  font-family: var(--display);
  font-size: clamp(48px, 9vw, 140px);
  line-height: 0.84;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.final h2 .fl { display: block; }
.final-sub {
  font-size: 19px;
  line-height: 1.5;
  max-width: 540px;
  margin: 0 auto 48px;
  font-weight: 500;
}
.final-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final .btn-primary { background: var(--ink); color: var(--cream); }
.final .btn-primary:hover { background: var(--ink-3); }
.final .btn-ghost { color: var(--ink); border-color: rgba(0,0,0,0.3); }
.final .btn-ghost:hover { border-color: var(--ink); background: rgba(0,0,0,0.05); }

.final-meta {
  margin-top: 64px;
  display: flex; gap: 48px; justify-content: center; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.final-meta .k { opacity: 0.55; margin-right: 8px; }

/* ====== FOOTER ====== */
.foot {
  background: var(--ink);
  padding: 56px 0 40px;
  border-top: 1px solid var(--line);
}
.foot-row {
  display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 24px;
}
.foot p { color: var(--muted); font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.foot a { color: var(--muted); }
.foot a:hover { color: var(--cream); }

/* SVG accent classes */
.diag-line { stroke: var(--line-strong); stroke-width: 1; fill: none; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
