/* ═══════════════════════ TOKENS ═══════════════════════ */
:root {
  --dark: #0A0907;
  --dark-elev: #110F0C;
  --cream: #F5F1EA;
  --cream-2: #EFEAE1;
  --text-light: #1A1A1A;
  --secondary: #8A8278;
  --secondary-dark: #6B655C;
  --accent: #C8553D;
  --accent-hover: #B14A33;
  --border-light: rgba(245, 241, 234, 0.08);
  --border-light-2: rgba(245, 241, 234, 0.14);
  --border-dark: rgba(26, 26, 26, 0.12);
  --border-dark-2: rgba(26, 26, 26, 0.22);
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --pad-x: clamp(20px, 4vw, 56px);
  --pad-y: clamp(120px, 16vh, 180px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: var(--cream); }

/* ─── shared screen container ─── */
.screen {
  position: relative;
  padding: var(--pad-y) var(--pad-x);
  overflow: hidden;
}
.screen--dark { background: var(--dark); color: var(--cream); }
.screen--dark::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.8 0 0 0 0 0.8 0 0 0 0 0.8 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}
.screen > * { position: relative; z-index: 1; }

.screen-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: clamp(60px, 10vh, 120px);
}
.screen-top .label {
  display: flex; gap: 12px; align-items: center;
}
.screen-top .dot-accent {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
.page-num-d { color: var(--cream); opacity: 0.6; }
.page-num-d .total { opacity: 0.5; margin-left: 2px; }

/* shared display headings on dark */
.h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 5.6vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--cream);
  text-wrap: pretty;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.accent-italic {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.h2-sub {
  font-family: var(--sans);
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.55;
  color: var(--secondary);
  max-width: 460px;
  font-weight: 400;
}

/* shared head row (h2 + sub) */
.aud-head, .appr-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(70px, 10vh, 120px);
  max-width: 1600px;
}

/* ═══════════════════════ 01 HERO ═══════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--dark);
  color: var(--cream);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-bg::before {
  content: "";
  position: absolute; inset: -20%;
  background:
    radial-gradient(ellipse 60% 50% at 30% 20%, rgba(200, 85, 61, 0.06), transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 80%, rgba(245, 241, 234, 0.025), transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(20, 18, 15, 0.4), transparent 70%);
  animation: drift 30s ease-in-out infinite alternate;
}
@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-3%, 2%) scale(1.05); }
}
.grain {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.8 0 0 0 0 0.8 0 0 0 0 0.8 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(10, 9, 7, 0.55);
  pointer-events: none; z-index: 2;
}
.hero-content {
  position: relative; z-index: 3;
  flex: 1;
  display: flex; flex-direction: column;
  padding: 32px var(--pad-x);
}
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.logo {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--cream);
}
.logo sup {
  font-size: 9px; margin-left: 1px;
  opacity: 0.6; vertical-align: super;
}
.nav {
  display: flex;
  gap: clamp(16px, 2.5vw, 36px);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav a {
  color: var(--cream);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.25s ease;
  position: relative;
  padding-bottom: 2px;
}
.nav a:hover { opacity: 1; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--cream);
  transition: right 0.3s ease;
}
.nav a:hover::after { right: 0; }

/* HERO — voice given 120px+ between top-bar and H1 */
.hero-center {
  flex: 1;
  display: flex;
  align-items: center;
  margin-top: clamp(120px, 14vh, 180px);
  margin-bottom: clamp(60px, 8vh, 100px);
}

.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 8.4vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--cream);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  max-width: 100%;
}
.display .line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.display .line:nth-child(1) { animation-delay: 0.1s; }
.display .line:nth-child(2) { animation-delay: 0.22s; }
.display .line:nth-child(3) { animation-delay: 0.34s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
.display .accent {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.specs {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-top: clamp(24px, 4vh, 40px);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: center;
  opacity: 0;
  animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.5s forwards;
}
.specs .sep { opacity: 0.4; }
.specs .pill { color: var(--cream); opacity: 0.85; }
.hero-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
  opacity: 0;
  animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.6s forwards;
}
.subtitle {
  max-width: 520px;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.5;
  color: var(--secondary);
  font-weight: 400;
}

/* CTA — shared */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  background: var(--accent);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--accent);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  white-space: nowrap;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--cream);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  z-index: 0;
}
.cta:hover { color: var(--text-light); border-color: var(--cream); }
.cta:hover::before { transform: translateY(0); }
.cta > * { position: relative; z-index: 1; }
.cta .arrow { transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1); }
.cta:hover .arrow { transform: translateX(4px); }

.hero-footer {
  position: relative; z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 var(--pad-x) 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
}
.scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: pulse 2.4s ease-in-out infinite;
}
.scroll .arrow-down {
  width: 1px; height: 24px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  position: relative;
}
.scroll .arrow-down::after {
  content: "";
  position: absolute; bottom: 0; left: 50%;
  width: 6px; height: 6px;
  border-right: 1px solid var(--cream);
  border-bottom: 1px solid var(--cream);
  transform: translate(-50%, 2px) rotate(45deg);
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, 4px); }
}
.page-num { color: var(--cream); opacity: 0.6; }
.page-num .total { opacity: 0.5; margin-left: 2px; }

/* ═══════════════════════ 02 — MARQUEE + AUDIENCE ═══════════════════════ */
.marquee {
  background: var(--dark);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  gap: 36px;
  width: max-content;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  animation: marquee 60s linear infinite;
  white-space: nowrap;
}
.marquee-track .dot {
  color: var(--accent);
  font-size: 8px;
  align-self: center;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.aud-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}
.aud-item {
  background: var(--dark);
  padding: clamp(40px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 280px;
  transition: background 0.35s ease;
  position: relative;
}
.aud-item:hover { background: var(--dark-elev); }
.aud-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.aud-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--cream);
  text-wrap: balance;
  font-variation-settings: "opsz" 60, "SOFT" 50;
}
.aud-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--secondary);
  max-width: 44ch;
  margin-top: auto;
}

.aud-not-for {
  margin-top: clamp(48px, 7vh, 80px);
  padding-top: clamp(40px, 6vh, 64px);
  border-top: 1px solid var(--border-light);
  max-width: 1600px;
}
.aud-nf-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: clamp(20px, 3vh, 32px);
}
.aud-nf-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.8vh, 18px);
  margin-bottom: clamp(32px, 5vh, 52px);
}
.aud-nf-list li {
  font-family: var(--sans);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.55;
  color: var(--secondary);
  font-weight: 400;
  max-width: 780px;
}
.aud-nf-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.45;
  color: var(--secondary);
  text-align: center;
  font-variation-settings: "opsz" 60, "SOFT" 80;
}

/* ═══════════════════════ 03 — APPROACH (vs table) ═══════════════════════ */
.vs-table {
  border: 1px solid var(--border-light);
  background: var(--dark);
  display: flex;
  flex-direction: column;
}
.vs-row {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1.4fr;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.35s ease;
}
.vs-row:last-child { border-bottom: none; }
.vs-row:hover:not(.vs-row--head) { background: var(--dark-elev); }
.vs-row--head {
  background: rgba(245,241,234,0.02);
}
.vs-cell {
  padding: clamp(20px, 2.2vw, 32px) clamp(20px, 2.6vw, 36px);
  border-right: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.45;
}
.vs-cell:last-child { border-right: none; }
.vs-cell--label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
}
.vs-cell--studio {
  color: var(--secondary);
  text-decoration: line-through;
  text-decoration-color: rgba(200, 85, 61, 0.4);
  text-decoration-thickness: 1px;
}
.vs-cell--us {
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 500;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 60;
}
.vs-cell--us sup { font-size: 0.5em; opacity: 0.7; vertical-align: super; }
.vs-cell--us .strong {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.vs-row--head .vs-cell {
  font-family: var(--mono);
  font-size: 11px !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 500;
}
.vs-row--head .vs-cell--us {
  color: var(--cream);
  font-style: normal;
}

/* ═══════════════════════ 04 — GUARANTEES (light) ═══════════════════════ */
.guarantees {
  position: relative;
  background: var(--cream);
  color: var(--text-light);
  padding: var(--pad-y) var(--pad-x);
  overflow: hidden;
}
.guarantees::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n2'><feTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.05 0 0 0 0 0.05 0 0 0 0 0.05 0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n2)'/></svg>");
  opacity: 0.35;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.guarantees > * { position: relative; z-index: 1; }
.g-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary-dark);
  margin-bottom: clamp(60px, 10vh, 120px);
}
.g-top .label { display: flex; gap: 12px; align-items: center; }
.g-top .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
.g-top .page-num-light { color: var(--text-light); }
.g-top .page-num-light .total { color: var(--secondary-dark); }

.g-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(70px, 10vh, 120px);
  max-width: 1600px;
}
.g-h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 5.4vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text-light);
  text-wrap: pretty;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.g-sub {
  font-family: var(--sans);
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.55;
  color: var(--secondary-dark);
  max-width: 460px;
}
.g-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  margin-bottom: clamp(80px, 12vh, 140px);
}
.card {
  background: var(--cream);
  padding: clamp(36px, 4.5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.5vw, 32px);
  min-height: clamp(280px, 36vh, 380px);
  transition: background 0.35s ease;
}
.card:hover { background: var(--cream-2); }
.card-head { display: flex; align-items: baseline; gap: 20px; }
.card-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.card-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary-dark);
}
.card-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.05vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-light);
  text-wrap: balance;
  font-variation-settings: "opsz" 60, "SOFT" 50;
}
.card-body {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.55;
  color: var(--secondary-dark);
  margin-top: auto;
  max-width: 42ch;
}
.anchor {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--text-light);
  text-wrap: balance;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}
.anchor .accent-text { color: var(--accent); }
.anchor::before {
  content: "";
  display: block;
  width: 40px; height: 1px;
  background: var(--text-light);
  margin: 0 auto clamp(28px, 4vh, 40px);
  opacity: 0.3;
}

/* ═══════════════════════ 05 — PRICING ═══════════════════════ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  margin-bottom: clamp(40px, 6vh, 60px);
}
.tier {
  background: var(--dark);
  padding: clamp(36px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 2.5vw, 32px);
  min-height: 540px;
  transition: background 0.35s ease;
  position: relative;
}
.tier:hover { background: var(--dark-elev); }
.tier--featured { background: var(--dark-elev); }
.tier--featured::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
}
.tier-head {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.tier-num, .tier-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
}
.tier-tag { color: var(--cream); }
.tier-badge {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 8px;
  margin-left: auto;
}
.tier-price {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: clamp(24px, 2.5vw, 32px);
  border-bottom: 1px solid var(--border-light);
}
.tier-amount {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--cream);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.tier-amount .cur {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.tier-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
}
.tier-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--cream);
  text-wrap: balance;
  font-variation-settings: "opsz" 60, "SOFT" 50;
}
.tier-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--secondary);
}
.tier-list li {
  padding-left: 22px;
  position: relative;
}
.tier-list li::before {
  content: "→";
  position: absolute;
  left: 0; top: 0;
  font-family: var(--mono);
  color: var(--accent);
  opacity: 0.6;
  font-size: 12px;
  line-height: 1.5;
}
.tier-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  border-top: 1px solid var(--border-light);
  transition: color 0.3s ease;
}
.tier-cta span { transition: transform 0.3s ease; }
.tier-cta:hover { color: var(--accent); }
.tier-cta:hover span { transform: translateX(4px); }
.tier-cta--accent { color: var(--accent); }

.pricing-foot {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

/* ═══════════════════════ 06 — PROCESS (timeline, light) ═══════════════════════ */
.process .timeline {
  list-style: none;
  border-top: 1px solid var(--border-dark);
  max-width: 1400px;
}
.tl-step {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(40px, 6vw, 100px);
  padding: clamp(36px, 5vw, 56px) 0;
  border-bottom: 1px solid var(--border-dark);
  position: relative;
}
.tl-step--mark { background: rgba(200,85,61,0.04); margin: 0 calc(-1 * var(--pad-x)); padding-left: var(--pad-x); padding-right: var(--pad-x); }
.tl-step--mark::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--accent);
}
.tl-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-top: 8px;
}
.tl-day {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-light);
}
.tl-time { color: var(--secondary-dark); }
.tl-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}
.tl-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.1vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-light);
  text-wrap: balance;
  font-variation-settings: "opsz" 60, "SOFT" 50;
}
.tl-desc {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.55;
  color: var(--secondary-dark);
}

/* ═══════════════════════ 07 — MANIFESTO ═══════════════════════ */
.manifesto {
  padding: clamp(200px, 24vh, 280px) var(--pad-x);
}
.manif-body {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3.4vw, 44px);
}
.manif-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: clamp(20px, 3vh, 32px);
}
.manif-p {
  font-family: var(--sans);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: var(--cream);
  font-weight: 300;
  text-wrap: pretty;
}
.manif-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 2.1vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--cream);
  text-wrap: balance;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  padding-top: clamp(20px, 3vh, 32px);
  border-top: 1px solid var(--border-light);
}
.manif-sign {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: clamp(32px, 4vh, 48px);
  margin-top: clamp(20px, 3vh, 32px);
}
.manif-name {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--cream);
}
.manif-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.manif-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s ease;
}
.manif-link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--cream);
  transition: right 0.3s ease;
}
.manif-link:hover { color: var(--cream); }
.manif-link:hover::after { right: 0; }
.manif-link span { color: var(--accent); }

/* ═══════════════════════ 08 — FAQ ═══════════════════════ */
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
}
.faq-aside { position: sticky; top: 80px; }
.faq-h2 { font-size: clamp(36px, 4.5vw, 72px); }
.faq-sub {
  margin-top: 24px;
  max-width: 380px;
  color: var(--secondary);
}

.faq-list { list-style: none; border-top: 1px solid var(--border-light); }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: 48px 1fr 32px;
  gap: 20px;
  align-items: center;
  background: none;
  border: 0;
  padding: clamp(22px, 2.4vw, 32px) 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif);
  font-weight: 500;
  color: var(--cream);
  font-size: clamp(18px, 1.5vw, 24px);
  letter-spacing: -0.015em;
  line-height: 1.2;
  font-variation-settings: "opsz" 60, "SOFT" 50;
  transition: color 0.3s ease;
}
.faq-q:hover { color: var(--accent); }
.faq-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--secondary);
  font-weight: 400;
}
.faq-icon {
  position: relative;
  width: 16px; height: 16px;
  justify-self: end;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--cream);
  top: 50%; left: 50%;
}
.faq-icon::before { width: 14px; height: 1px; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1px; height: 14px; transform: translate(-50%, -50%); transition: transform 0.3s ease; }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.faq-a > p {
  overflow: hidden;
  padding-left: 68px;
  max-width: 640px;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: var(--secondary);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item.open .faq-a > p { padding-bottom: clamp(22px, 2.4vw, 32px); }

/* ═══════════════════════ 09 — FINAL CTA ═══════════════════════ */
.final {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: clamp(60px, 8vh, 100px) var(--pad-x) 32px;
}
.final-bg::before {
  content: "";
  position: absolute; inset: -20%;
  background:
    radial-gradient(ellipse 70% 50% at 20% 30%, rgba(200, 85, 61, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 70% at 80% 80%, rgba(245, 241, 234, 0.03), transparent 60%);
  animation: drift 30s ease-in-out infinite alternate;
}
.final-top { margin-bottom: 0; }
.final-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: clamp(60px, 10vh, 120px) auto;
  width: 100%;
  gap: clamp(24px, 3vh, 40px);
}
.final-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.final-h {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(56px, 10vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--cream);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  text-wrap: balance;
}
.final-sub {
  max-width: 560px;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  color: var(--secondary);
}
.final-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cta-final { padding: 22px 36px; font-size: 13px; }
.cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 22px 36px;
  background: transparent;
  color: var(--cream);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--border-light-2);
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.cta-ghost:hover { border-color: var(--cream); }

.final-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4vw, 64px);
  margin-top: clamp(28px, 4vh, 48px);
  padding-top: clamp(28px, 4vh, 48px);
  border-top: 1px solid var(--border-light);
  width: 100%;
}
.final-contacts > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.final-contacts dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
}
.final-contacts dd {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(18px, 1.4vw, 22px);
  letter-spacing: -0.01em;
  color: var(--cream);
  font-variation-settings: "opsz" 60;
}
.final-contacts dd a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}
.final-contacts dd a:hover {
  color: var(--accent);
}

.site-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
  gap: 16px;
}
.foot-meta { opacity: 0.7; }

/* ═══════════════════════ REVEAL ═══════════════════════ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ═══════════════════════ RESPONSIVE ═══════════════════════ */
@media (max-width: 1024px) {
  .aud-head, .appr-head, .g-head { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .price-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-aside { position: static; }
  .vs-row { grid-template-columns: 1fr 1fr 1fr; }
  .tl-step { grid-template-columns: 200px 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  /* Nav — показываем все 4 пункта, убираем устаревший скрытый nth-child */
  .nav { gap: 8px; font-size: 10px; }

  .hero-bottom { grid-template-columns: 1fr; gap: 28px; }
  .cta { width: 100%; justify-content: space-between; }
  .g-grid, .aud-list { grid-template-columns: 1fr; }
  .hero-center { margin-top: 80px; margin-bottom: 32px; }
  .hero-content { padding: 24px 20px; }
  .hero-footer { padding: 0 20px 24px; }
  .scroll { display: none; }

  /* VS-таблица — стек + защита от переполнения */
  .vs-table { overflow: hidden; }
  .vs-row { grid-template-columns: 1fr; border-bottom: 1px solid var(--border-light-2); padding: 8px 0; }
  .vs-cell { border-right: none; padding: 12px 20px; }
  .vs-cell--label { padding-bottom: 4px; }
  .vs-row--head { display: none; }

  .tl-step { grid-template-columns: 1fr; gap: 16px; }
  .manifesto { padding: 100px var(--pad-x); }
  .final-h { font-size: clamp(44px, 14vw, 100px); }

  /* Контакты — вертикальный стек вместо flex-row */
  .final-contacts { flex-direction: column; gap: 20px; }
}

@media (max-width: 560px) {
  /* Hero H1 — снижаем минимум: «AI-продакшен» (12 симв.) при 44px ≈ 301px > 280px контента */
  .display { font-size: clamp(32px, 10vw, 48px); }
  .specs { font-size: 10px; letter-spacing: 0.1em; }
  .marquee-track { font-size: 11px; }
}

@media (max-width: 480px) {
  /* Top-bar: логотип + nav в одну строку не влезают — переносим nav на следующую строку */
  .top-bar { flex-wrap: wrap; gap: 12px; }
  .nav { font-size: 9px; gap: 6px; }

  /* Финальная секция */
  .final-h { font-size: clamp(38px, 12vw, 60px); }
  .final-actions { flex-direction: column; }
  .cta-ghost { width: 100%; justify-content: space-between; }

  /* Tap-target: tier-cta чуть ниже 44px на мобильном */
  .tier-cta { min-height: 44px; align-items: center; }

  .manifesto { padding: 80px var(--pad-x); }
}
