/* ─── FONTS ──────────────────────────────────────────────────────────── */
@import url("https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@400,500,700,800,900&f[]=general-sans@400,500,600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Caveat:wght@500;600;700&display=swap");

/* ─── TOKENS ─────────────────────────────────────────────────────────── */
:root {
  --paper:        oklch(96.5% 0.008 65);
  --paper-2:      oklch(94.5% 0.013 62);
  --paper-3:      oklch(92.5% 0.018 60);
  --card:         oklch(98%   0.005 65);
  --ink:          oklch(18% 0.012 55);
  --ink-2:        oklch(28% 0.010 55);
  --ink-3:        oklch(40% 0.009 55);
  --ink-4:        oklch(54% 0.008 55);
  --ink-5:        oklch(66% 0.007 55);
  --ink-6:        oklch(74% 0.007 55);
  --rule:         oklch(86% 0.012 55);
  --rule-2:       oklch(90% 0.010 55);
  --rule-strong:  oklch(76% 0.014 55);
  --terra:        oklch(54% 0.14 42);
  --terra-deep:   oklch(45% 0.13 40);
  --terra-soft:   oklch(74% 0.10 50);
  --terra-wash:   oklch(54% 0.14 42 / 0.10);
  --terra-line:   oklch(54% 0.14 42 / 0.28);
  --graphite:     oklch(18% 0.014 50);
  --graphite-2:   oklch(22% 0.014 50);
  --graphite-ink: oklch(94% 0.010 65);
  --graphite-ink-2: oklch(70% 0.012 55);
  --font-display: "Cabinet Grotesk", system-ui, -apple-system, sans-serif;
  --font-body:    "General Sans", system-ui, -apple-system, sans-serif;
  --font-serif:   "Instrument Serif", Georgia, serif;
  --font-mono:    ui-monospace, "SF Mono", Menlo, monospace;
}

/* ─── BASE ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 700; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--terra); color: var(--paper); }

/* ─── UTIL ───────────────────────────────────────────────────────────── */
.shell { max-width: 1280px; margin-inline: auto; padding-inline: clamp(20px, 4vw, 56px); }
.serif-italic { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -0.02em; }
.eyebrow { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terra); font-weight: 600; }
.hairline { height: 1px; background: var(--rule); border: 0; margin: 0; }
.tabular { font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1, "lnum" 1; }

/* ─── BUTTON ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: -0.005em;
  transition: transform .25s cubic-bezier(.16,1,.3,1), background .2s, color .2s, box-shadow .25s;
  cursor: pointer; border: 1px solid transparent; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary, .btn-terra { background: var(--terra); color: var(--paper); }
.btn-primary:hover, .btn-terra:hover { background: var(--terra-deep); box-shadow: 0 10px 30px oklch(54% 0.14 42 / 0.35); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--rule-strong); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-sm { padding: 9px 14px; font-size: 13px; }
.arrow-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 2px; transition: color .2s, border-color .2s, gap .25s; white-space: nowrap; }
.arrow-link:hover { color: var(--terra); border-color: var(--terra); gap: 12px; }

/* ─── REVEAL ─────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
.reveal-delay-5 { transition-delay: .40s; }
.reveal-delay-6 { transition-delay: .48s; }

/* ─── CURSOR DOT ─────────────────────────────────────────────────────── */
.cursor-dot {
  position: fixed; top: 0; left: 0; width: 12px; height: 12px; border-radius: 50%;
  background: var(--terra); pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%); transition: width .25s, height .25s, background .25s, opacity .25s, mix-blend-mode .25s;
  mix-blend-mode: multiply; opacity: 0;
}
.cursor-dot.show { opacity: 1; }
.cursor-dot.expand { width: 56px; height: 56px; background: oklch(54% 0.14 42 / 0.18); mix-blend-mode: normal; }
@media (pointer: coarse) { .cursor-dot { display: none; } }

/* ─── MARQUEE ────────────────────────────────────────────────────────── */
.marquee { display: flex; overflow: hidden; width: 100%; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; flex-shrink: 0; align-items: center; gap: 56px; white-space: nowrap; animation: marquee-roll 60s linear infinite; will-change: transform; }
@keyframes marquee-roll { to { transform: translateX(-50%); } }

/* ─── NAV ────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 100; width: calc(100% - 24px); max-width: 1120px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 8px 10px 8px 14px;
  background: oklch(96.5% 0.008 65 / 0.72);
  -webkit-backdrop-filter: blur(20px) saturate(1.4); backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--rule); border-radius: 16px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.55) inset, 0 12px 32px -16px oklch(20% 0.014 50 / 0.18), 0 4px 12px -8px oklch(20% 0.014 50 / 0.08);
  transition: top .35s, padding .35s, max-width .35s, background .35s;
}
.nav.scrolled { top: 12px; max-width: 980px; padding-top: 6px; padding-bottom: 6px; background: oklch(96.5% 0.008 65 / 0.86); }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 17px; letter-spacing: -0.02em; color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 4px; font-family: var(--font-display); font-size: 13.5px; font-weight: 500; }
.nav-links a { position: relative; padding: 8px 12px; color: var(--ink-3); transition: color .2s, background .2s; white-space: nowrap; border-radius: 8px; }
.nav-links a:hover { color: var(--ink); background: oklch(94.5% 0.013 62 / 0.8); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { content: ""; position: absolute; bottom: 4px; left: 12px; right: 12px; height: 1.5px; background: var(--terra); border-radius: 1px; }
@media (max-width: 880px) { .nav-links { display: none; } }

.hamburger { display: none; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; border: 1px solid var(--rule-strong); background: var(--card); cursor: pointer; padding: 0; transition: background .2s; }
.hamburger:hover { background: var(--paper-2); }
.hamburger .bars { display: flex; flex-direction: column; gap: 4px; width: 18px; }
.hamburger .bars span { display: block; height: 2px; background: var(--ink); border-radius: 1px; }
@media (max-width: 880px) { .hamburger { display: inline-flex; } }

.drawer { position: fixed; inset: 0; z-index: 200; pointer-events: none; opacity: 0; transition: opacity .25s; }
.drawer.open { opacity: 1; pointer-events: auto; }
.drawer-backdrop { position: absolute; inset: 0; background: oklch(18% 0.012 55 / 0.50); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.drawer-panel { position: absolute; top: 0; bottom: 0; left: 0; width: min(82vw, 360px); background: var(--paper); border-right: 1px solid var(--rule); padding: 24px 28px; display: flex; flex-direction: column; gap: 12px; transform: translateX(-100%); transition: transform .35s cubic-bezier(.16,1,.3,1); box-shadow: 8px 0 32px oklch(20% 0.014 50 / 0.10); overflow-y: auto; }
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--rule); margin-bottom: 12px; }
.drawer-close { width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--rule-strong); background: var(--card); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; color: var(--ink); padding: 0; }
.drawer-close:hover { background: var(--ink); color: var(--paper); }
.drawer-link { display: flex; align-items: center; justify-content: space-between; padding: 16px 4px; font-family: var(--font-display); font-weight: 600; font-size: 22px; letter-spacing: -0.02em; color: var(--ink); border-bottom: 1px solid var(--rule); transition: color .2s, padding .2s; text-decoration: none; }
.drawer-link:hover { color: var(--terra); padding-left: 8px; }
.drawer-link .ico { color: var(--ink-5); }
.drawer-foot { margin-top: auto; padding-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.drawer-foot .note { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--ink-4); }

/* ─── REVIEWS STRIP ──────────────────────────────────────────────────── */
.reviews-strip { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--paper); }
.reviews-strip a { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: clamp(18px, 3vw, 40px); padding: 22px 24px; text-decoration: none; transition: background .25s; }
.reviews-strip a:hover { background: var(--paper-2); }
.reviews-strip .stars { display: inline-flex; align-items: center; gap: 4px; color: var(--terra); font-size: 22px; line-height: 1; }
.reviews-strip .rate { font-family: var(--font-display); font-weight: 800; font-size: 20px; letter-spacing: -0.025em; color: var(--ink); }
.reviews-strip .rate em { font-family: var(--font-serif); font-style: italic; color: var(--terra); font-weight: 400; }
.reviews-strip .sep { width: 1px; height: 20px; background: var(--rule-strong); display: inline-block; }
.reviews-strip .who { font-family: var(--font-display); font-size: 14px; font-weight: 500; color: var(--ink-2); letter-spacing: -0.005em; }
.reviews-strip .who strong { font-weight: 700; color: var(--ink); }
.reviews-strip .cta { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 600; font-size: 13.5px; color: var(--terra); transition: gap .25s; }
.reviews-strip a:hover .cta { gap: 12px; }
@media (max-width: 720px) { .reviews-strip a { gap: 14px; padding: 16px 20px; } .reviews-strip .who, .reviews-strip .sep:nth-of-type(2) { display: none; } }

/* ─── HERO ───────────────────────────────────────────────────────────── */
.hero { position: relative; padding-top: 96px; padding-bottom: 40px; min-height: 86dvh; display: flex; flex-direction: column; justify-content: space-between; gap: 40px; }
.hero-main { display: grid; grid-template-columns: minmax(0, 1fr) clamp(280px, 32vw, 420px); gap: clamp(40px, 5vw, 80px); align-items: start; }
@media (max-width: 1080px) { .hero-main { grid-template-columns: 1fr; gap: 24px; } }

.hero-portrait { position: relative; width: 100%; aspect-ratio: 4/5; max-height: 440px; justify-self: end; display: flex; flex-direction: column; align-items: center; }
.hero-portrait .img-wrap { position: relative; flex: 1; width: 100%; min-height: 0; }
.hero-portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 18%; filter: saturate(0.92) contrast(1.02); -webkit-mask-image: radial-gradient(ellipse 58% 64% at center 40%, #000 14%, rgba(0,0,0,0.6) 50%, transparent 86%); mask-image: radial-gradient(ellipse 58% 64% at center 40%, #000 14%, rgba(0,0,0,0.6) 50%, transparent 86%); }
.hero-portrait .sign-block { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-top: -16px; position: relative; z-index: 2; }
.hero-portrait .sign-block .sig { font-family: "Caveat", cursive; font-weight: 600; font-size: 40px; line-height: 0.9; color: var(--terra); letter-spacing: -0.005em; transform: rotate(-2deg); white-space: nowrap; }
.hero-portrait .sign-block .role { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-4); font-weight: 500; }
@media (max-width: 640px) { .hero-portrait { display: none; } }

.hero-live { border: 1px solid var(--rule); background: var(--card); border-radius: 14px; padding: 18px; display: flex; flex-direction: column; gap: 14px; box-shadow: 0 8px 24px oklch(20% 0.014 50 / 0.06); }
.hero-live-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px solid var(--rule); }
.hero-live-head .label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-4); }
.hero-live-head .live-blip { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--terra); font-weight: 600; }
.hero-live-head .live-blip .b { width: 6px; height: 6px; border-radius: 50%; background: var(--terra); position: relative; }
.hero-live-head .live-blip .b::after { content: ""; position: absolute; inset: -3px; border-radius: 50%; background: var(--terra); opacity: 0.35; animation: blip-pulse 1.8s cubic-bezier(.16,1,.3,1) infinite; }
.hero-live-feed { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; position: relative; height: 200px; overflow: hidden; -webkit-mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent); mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent); }
.hero-live-feed-inner { display: flex; flex-direction: column; gap: 12px; animation: live-roll 28s linear infinite; }
@keyframes live-roll { to { transform: translateY(-50%); } }
.hero-live-item { display: flex; flex-direction: column; gap: 4px; padding: 10px 12px; border-radius: 8px; background: var(--paper-2); border: 1px solid var(--rule); }
.hero-live-item .time { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-5); }
.hero-live-item .what { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--ink); letter-spacing: -0.01em; display: flex; align-items: center; gap: 8px; }
.hero-live-item .what .marker { width: 8px; height: 8px; border-radius: 50%; background: var(--terra); flex-shrink: 0; }
.hero-live-item .who { font-family: var(--font-body); font-size: 11.5px; color: var(--ink-4); }
.hero-live-foot { padding-top: 10px; border-top: 1px solid var(--rule); display: flex; justify-content: space-between; align-items: baseline; }
.hero-live-foot .v { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.025em; color: var(--ink); }
.hero-live-foot .l { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--ink-5); }
.hero-eyebrow-row { display: flex; align-items: center; gap: 14px; margin-bottom: 36px; }
.hero-pulse { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--ink-3); text-transform: uppercase; }
.hero-pulse .blip { width: 8px; height: 8px; border-radius: 50%; background: var(--terra); position: relative; display: inline-block; }
.hero-pulse .blip::before { content: ""; position: absolute; inset: -4px; border-radius: 50%; background: var(--terra); opacity: .35; animation: blip-pulse 1.8s cubic-bezier(.16,1,.3,1) infinite; }
@keyframes blip-pulse { 0% { transform: scale(.6); opacity: .5; } 100% { transform: scale(2.2); opacity: 0; } }
.hero-display { font-family: var(--font-display); font-weight: 800; font-size: clamp(44px, 6.5vw, 96px); line-height: 0.96; letter-spacing: -0.04em; color: var(--ink); text-wrap: balance; max-width: 18ch; }
.hero-display em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--terra); letter-spacing: -0.02em; }
.hero-sub { font-family: var(--font-body); font-size: clamp(16px, 1.6vw, 19px); line-height: 1.6; color: var(--ink-3); max-width: 56ch; margin-top: 40px; }
.hero-sub-2 { font-family: var(--font-body); font-size: clamp(15px, 1.4vw, 17px); line-height: 1.6; color: var(--ink-3); max-width: 56ch; margin-top: 16px; }
.hero-sub-2 strong { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.hero-cta-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 40px; }
.hero-cta-row .small-note { font-family: var(--font-body); font-size: 13px; color: var(--ink-4); }
.hero-stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--rule); margin-top: 64px; }
.hero-stat { padding: 24px 22px; border-right: 1px solid var(--rule); display: flex; flex-direction: column; gap: 6px; }
.hero-stat:last-child { border-right: 0; }
.hero-stat .v { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 3.6vw, 44px); letter-spacing: -0.035em; color: var(--ink); }
.hero-stat .l { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-4); }
@media (max-width: 720px) { .hero-stat-row { grid-template-columns: repeat(2, 1fr); } .hero-stat:nth-child(2) { border-right: 0; } .hero-stat:nth-child(1), .hero-stat:nth-child(2) { border-bottom: 1px solid var(--rule); } }

/* ─── TICKER ─────────────────────────────────────────────────────────── */
.ticker { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--paper); padding: 14px 0; overflow: hidden; }
.ticker-item { display: inline-flex; align-items: center; gap: 18px; font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink); }
.ticker-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terra); flex-shrink: 0; }

/* ─── SECTION SCAFFOLD ──────────────────────────────────────────────── */
.section { padding-block: clamp(72px, 9vw, 128px); position: relative; }
.section + .section { border-top: 1px solid var(--rule); }
.section-dark { background: var(--graphite); color: var(--graphite-ink); }
.section-paper { background: var(--paper-2); }
.section-label-row { display: flex; align-items: baseline; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: 56px; }
.section-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-4); display: flex; align-items: center; gap: 12px; }
.section-label .rule { width: 56px; height: 1px; background: var(--ink); display: inline-block; }
.section-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(38px, 5.5vw, 76px); line-height: 0.98; letter-spacing: -0.035em; color: var(--ink); max-width: 22ch; text-wrap: balance; }
.section-title em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--terra); letter-spacing: -0.02em; }
.section-lede { font-family: var(--font-body); font-size: clamp(15px, 1.4vw, 17px); line-height: 1.6; color: var(--ink-3); max-width: 40ch; }

/* ─── PROBLEM ────────────────────────────────────────────────────────── */
.problem-list { border-top: 1px solid var(--ink); }
.problem-item { display: grid; grid-template-columns: 80px 1.1fr 1.4fr; gap: 40px; padding: 40px 0; border-bottom: 1px solid var(--rule); align-items: start; transition: background .3s; }
.problem-item:hover { background: var(--paper-2); }
.problem-item .num { font-family: var(--font-display); font-weight: 800; font-size: 56px; letter-spacing: -0.04em; color: var(--ink-6); transition: color .3s; }
.problem-item:hover .num { color: var(--terra); }
.problem-item .scene { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 2.4vw, 32px); line-height: 1.1; letter-spacing: -0.03em; color: var(--ink); text-wrap: balance; }
.problem-item .body { font-family: var(--font-body); font-size: 15px; line-height: 1.7; color: var(--ink-2); max-width: 42ch; }
.problem-item .body .fix-label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terra); font-weight: 600; margin-bottom: 8px; }
@media (max-width: 980px) { .problem-item { grid-template-columns: 56px 1fr; gap: 18px; } .problem-item .num { font-size: 38px; } .problem-item .body { grid-column: 2; } }

/* ─── CASES ──────────────────────────────────────────────────────────── */
.cases-strip { display: flex; gap: 16px; padding: 8px 0; height: 680px; -webkit-mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent); overflow: hidden; }
.case-col { flex: 1; min-width: 0; overflow: hidden; }
.case-col-track { display: flex; flex-direction: column; gap: 14px; animation: case-roll linear infinite; will-change: transform; }
@keyframes case-roll { to { transform: translateY(-50%); } }
@media (max-width: 880px) { .case-col:nth-child(n+2) { display: none; } }
@media (min-width: 881px) and (max-width: 1120px) { .case-col:nth-child(3) { display: none; } }
.case-card { background: var(--card); border: 1px solid var(--rule); border-radius: 14px; padding: 22px; display: flex; flex-direction: column; gap: 8px; transition: transform .3s, border-color .3s, box-shadow .3s; }
.case-card:hover { transform: translateY(-2px); border-color: var(--terra-line); box-shadow: 0 12px 32px oklch(20% 0.014 50 / 0.08); }
.case-card .tag { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--terra); font-weight: 600; }
.case-card .headline { font-family: var(--font-display); font-weight: 800; font-size: 24px; letter-spacing: -0.035em; color: var(--ink); line-height: 1.05; margin-top: 2px; }
.case-card .headline em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--terra); }
.case-card .sub { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--ink-3); }
.case-card .body { font-family: var(--font-body); font-size: 13.5px; line-height: 1.6; color: var(--ink-3); }
.case-card .foot { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--rule); }
.case-card .foot .client { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--ink); }
.case-card .foot .contact { font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-4); }

/* ─── VS TABLE ───────────────────────────────────────────────────────── */
.vs-table { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.vs-row { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid var(--rule); align-items: stretch; }
.vs-row:last-child { border-bottom: 0; }
.vs-row > div { padding: 28px 24px; display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.vs-row .topic { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.02em; color: var(--ink); border-right: 1px solid var(--rule); }
.vs-row .typical { font-family: var(--font-body); font-size: 14.5px; line-height: 1.55; color: var(--ink-3); border-right: 1px solid var(--rule); background: var(--paper-2); }
.vs-row .typical::before { content: "Lo típico"; display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-5); margin-bottom: 6px; }
.vs-row .mine { font-family: var(--font-body); font-size: 14.5px; line-height: 1.55; color: var(--ink); background: var(--card); }
.vs-row .mine::before { content: "Método Legalketing"; display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terra); margin-bottom: 6px; font-weight: 600; }
.vs-header { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid var(--ink); }
.vs-header > div { padding: 14px 24px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-4); }
@media (max-width: 880px) { .vs-header { display: none; } .vs-row { grid-template-columns: 1fr; } .vs-row > div { border-right: 0; border-bottom: 1px solid var(--rule); } .vs-row > div:last-child { border-bottom: 0; } }

/* ─── ABOUT ──────────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
@media (max-width: 980px) { .about-grid { grid-template-columns: 1fr; } }
.about-letter { font-family: var(--font-body); font-size: clamp(16px, 1.5vw, 19px); line-height: 1.7; color: var(--ink-2); }
.about-letter p { margin-bottom: 22px; max-width: 56ch; }
.about-letter em.serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--terra); font-size: 1.08em; }
.about-photo { position: relative; aspect-ratio: 4/5; background: transparent; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.92); -webkit-mask-image: radial-gradient(ellipse 62% 68% at center 38%, #000 18%, rgba(0,0,0,0.55) 52%, transparent 86%); mask-image: radial-gradient(ellipse 62% 68% at center 38%, #000 18%, rgba(0,0,0,0.55) 52%, transparent 86%); }
.about-photo-badge { position: absolute; bottom: 6%; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; width: max-content; max-width: 90%; }
.about-photo-badge .name { font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: -0.02em; }
.about-photo-badge .role { font-family: var(--font-body); font-size: 11.5px; color: var(--ink-4); margin-top: 1px; }
.about-photo-badge .avail { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terra); font-weight: 600; background: var(--card); border: 1px solid var(--terra-line); padding: 8px 16px; border-radius: 999px; box-shadow: 0 2px 12px oklch(20% 0.014 50 / 0.08); }
.about-photo-badge .avail .b { width: 7px; height: 7px; border-radius: 50%; background: var(--terra); position: relative; }
.about-photo-badge .avail .b::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; background: var(--terra); opacity: 0.35; animation: blip-pulse 1.8s cubic-bezier(.16,1,.3,1) infinite; }
.about-mini-stats { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 24px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--rule); }
.about-mini-stats .s { padding: 18px 14px; border-right: 1px solid var(--rule); }
.about-mini-stats .s:last-child { border-right: 0; }
.about-mini-stats .v { font-family: var(--font-display); font-weight: 800; font-size: 26px; letter-spacing: -0.03em; color: var(--ink); }
.about-mini-stats .l { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-4); margin-top: 4px; line-height: 1.3; }

/* ─── TESTIMONIALS ───────────────────────────────────────────────────── */
.testimonial-hero { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
@media (max-width: 980px) { .testimonial-hero { grid-template-columns: 1fr; } }
.testimonial-hero .quote { font-family: var(--font-display); font-weight: 500; font-size: clamp(22px, 2.8vw, 38px); line-height: 1.2; letter-spacing: -0.025em; color: var(--ink); text-wrap: balance; }
.testimonial-hero .quote::before { content: "\201C"; display: block; font-family: var(--font-serif); font-style: italic; font-size: 96px; line-height: 0.7; color: var(--terra); margin-bottom: 8px; }
.testimonial-hero .author { display: flex; align-items: center; gap: 12px; margin-top: 28px; }
.testimonial-hero .author .av { width: 40px; height: 40px; border-radius: 50%; background: var(--terra-soft); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--terra-deep); }
.testimonial-hero .author .n { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.testimonial-hero .author .r { font-family: var(--font-body); font-size: 12.5px; color: var(--ink-4); }
.testimonial-secondary { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 64px; }
@media (max-width: 1180px) { .testimonial-secondary { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 880px) { .testimonial-secondary { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .testimonial-secondary { grid-template-columns: 1fr; } }
.t-card { background: var(--card); border: 1px solid var(--rule); border-radius: 12px; padding: 22px; transition: border-color .25s, transform .25s; display: flex; flex-direction: column; }
.t-card:hover { border-color: var(--terra-line); transform: translateY(-2px); }
.t-card .t-sector { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terra); font-weight: 600; margin-bottom: 12px; }
.t-card .body { font-family: var(--font-body); font-size: 13.5px; line-height: 1.6; color: var(--ink-2); flex: 1; }
.t-card .foot { display: flex; align-items: center; gap: 10px; margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--rule); }
.t-card .av { width: 32px; height: 32px; border-radius: 50%; background: var(--terra-soft); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 11px; color: var(--terra-deep); flex-shrink: 0; }
.t-card .n { font-family: var(--font-display); font-weight: 700; font-size: 13px; }
.t-card .r { font-family: var(--font-body); font-size: 11px; color: var(--ink-4); line-height: 1.3; }

/* ─── FAQ ─────────────────────────────────────────────────────────────── */
.faq-list { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item:last-of-type { border-bottom: 0; }
.faq-item summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: 64px 1fr 40px; gap: 24px; align-items: start; padding: 32px 0; transition: padding .25s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item:hover { background: var(--paper-2); }
.faq-item:hover summary { padding-left: 8px; }
.faq-item .faq-num { font-family: var(--font-display); font-weight: 800; font-size: 36px; color: var(--ink-6); letter-spacing: -0.04em; line-height: 1; transition: color .3s; }
.faq-item[open] .faq-num { color: var(--terra); }
.faq-item .faq-q-wrap { min-width: 0; }
.faq-item .faq-q { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(18px, 2vw, 26px); letter-spacing: -0.03em; line-height: 1.15; color: var(--ink); text-wrap: balance; }
.faq-item .faq-chev { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; color: var(--ink-3); border: 1px solid var(--rule-strong); background: var(--card); transition: transform .35s cubic-bezier(.16,1,.3,1), background .25s, color .25s, border-color .25s; margin-top: 4px; flex-shrink: 0; }
.faq-item[open] .faq-chev { transform: rotate(45deg); background: var(--terra); color: var(--paper); border-color: var(--terra); }
.faq-item .faq-a { padding: 0 56px 36px 88px; max-width: 880px; font-family: var(--font-body); font-size: clamp(15px, 1.4vw, 17px); line-height: 1.75; color: var(--ink-2); }
@media (max-width: 760px) { .faq-item summary { grid-template-columns: 44px 1fr 36px; gap: 14px; padding: 22px 0; } .faq-item .faq-num { font-size: 24px; } .faq-item .faq-a { padding: 0 8px 24px 58px; } }
.faq-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-top: 32px; padding: 22px 26px; border: 1px solid var(--terra-line); border-radius: 12px; background: var(--card); }

/* ─── CTA LETTER ─────────────────────────────────────────────────────── */
.cta-letter { text-align: left; max-width: 760px; }
.cta-letter h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 6vw, 88px); line-height: 0.98; letter-spacing: -0.04em; color: var(--graphite-ink); text-wrap: balance; }
.cta-letter h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: oklch(94% 0.008 65 / 0.85); }
.cta-letter p { font-family: var(--font-body); font-size: clamp(16px, 1.6vw, 19px); line-height: 1.65; color: var(--graphite-ink-2); margin-top: 32px; max-width: 56ch; }

/* ─── FOOTER ──────────────────────────────────────────────────────────── */
.footer { padding: 56px 0 32px; border-top: 1px solid var(--rule); background: var(--paper); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } }
.footer h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-5); font-weight: 600; margin-bottom: 16px; }
.footer-grid li { list-style: none; font-family: var(--font-display); font-weight: 500; font-size: 14.5px; padding: 4px 0; color: var(--ink-2); }
.footer-grid ul { padding: 0; margin: 0; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; margin-top: 40px; border-top: 1px solid var(--rule); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--ink-5); flex-wrap: wrap; gap: 12px; }

/* ─── FAB ─────────────────────────────────────────────────────────────── */
.fab { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; border-radius: 50%; background: var(--terra); display: inline-flex; align-items: center; justify-content: center; color: var(--paper); z-index: 60; box-shadow: 0 8px 24px oklch(54% 0.14 42 / 0.34); transition: transform .25s, background .25s, box-shadow .25s, opacity .25s; opacity: 0; pointer-events: none; transform: scale(0.7); }
.fab.show { opacity: 1; pointer-events: auto; transform: scale(1); }
.fab:hover { background: var(--terra-deep); transform: scale(1.06); }
@media (min-width: 880px) { .fab { display: none; } }

/* ─── SKIP LINK ──────────────────────────────────────────────────────── */
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; background: var(--ink); color: var(--paper); padding: 8px 14px; border-radius: 6px; z-index: 9999; }

/* ─── NOISE ──────────────────────────────────────────────────────────── */
.noise { position: absolute; inset: 0; pointer-events: none; opacity: .04; mix-blend-mode: multiply; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>"); }

/* ═══════════════════════════════════════════════════════════════════════
   LEGALKETING SPECIFIC SECTIONS
═══════════════════════════════════════════════════════════════════════ */

/* ─── SPECIALTIES GRID ───────────────────────────────────────────────── */
.specialties-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 1080px) { .specialties-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .specialties-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .specialties-grid { grid-template-columns: 1fr; } }

.specialty-card { background: var(--card); border: 1px solid var(--rule); border-radius: 14px; padding: 22px; transition: border-color .25s, transform .25s, box-shadow .25s; cursor: default; }
.specialty-card:hover { border-color: var(--terra-line); transform: translateY(-2px); box-shadow: 0 12px 32px oklch(20% 0.014 50 / 0.08); }
.specialty-card.terra { border-color: var(--terra-line); background: oklch(54% 0.14 42 / 0.04); }
.specialty-card .icon { font-size: 26px; margin-bottom: 10px; }
.specialty-card .name { font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 6px; }
.specialty-card .stat { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--terra); font-weight: 600; margin-bottom: 10px; }
.specialty-card .desc { font-family: var(--font-body); font-size: 13px; line-height: 1.6; color: var(--ink-3); }

/* ─── FUNNEL STEPS ───────────────────────────────────────────────────── */
.funnel-steps { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--rule); border-radius: 16px; overflow: hidden; background: var(--card); }
@media (max-width: 980px) { .funnel-steps { grid-template-columns: 1fr; border-radius: 12px; } }
.funnel-step { padding: 28px 22px; border-right: 1px solid var(--rule); transition: background .25s; }
.funnel-step:last-child { border-right: 0; }
.funnel-step:hover { background: var(--paper-2); }
@media (max-width: 980px) { .funnel-step { border-right: 0; border-bottom: 1px solid var(--rule); } .funnel-step:last-child { border-bottom: 0; } }
.funnel-step .step-num { font-family: var(--font-display); font-weight: 800; font-size: 40px; letter-spacing: -0.04em; color: var(--rule-strong); line-height: 1; margin-bottom: 10px; }
.funnel-step .step-icon { font-size: 22px; margin-bottom: 10px; }
.funnel-step .step-title { font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 12px; line-height: 1.2; }
.funnel-step .step-owner { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; margin-bottom: 14px; }
.step-owner.legalketing { background: var(--terra-wash); color: var(--terra); border: 1px solid var(--terra-line); }
.step-owner.both { background: oklch(50% 0.14 270 / 0.08); color: oklch(40% 0.12 270); border: 1px solid oklch(50% 0.14 270 / 0.20); }
.step-owner.you { background: oklch(50% 0.14 145 / 0.08); color: oklch(35% 0.12 145); border: 1px solid oklch(50% 0.14 145 / 0.20); }
.funnel-step .step-items { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 5px; }
.funnel-step .step-items li { font-family: var(--font-body); font-size: 13px; line-height: 1.5; color: var(--ink-3); padding-left: 14px; position: relative; }
.funnel-step .step-items li::before { content: "·"; position: absolute; left: 0; color: var(--terra); font-weight: 700; }

/* ─── RESULTS GRID ───────────────────────────────────────────────────── */
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 880px) { .results-grid { grid-template-columns: 1fr; } }
.result-card { background: var(--graphite-2); border: 1px solid oklch(35% 0.014 50); border-radius: 14px; padding: 24px; transition: border-color .25s; }
.result-card:hover { border-color: var(--terra); }
.result-card .rc-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid oklch(35% 0.014 50); }
.result-card .rc-spec { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--graphite-ink-2); }
.result-card .rc-live { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--terra); }
.result-card .rc-live .b { width: 5px; height: 5px; border-radius: 50%; background: var(--terra); display: inline-block; }
.result-card .rc-big { font-family: var(--font-display); font-weight: 800; font-size: clamp(56px, 7vw, 80px); letter-spacing: -0.04em; line-height: 0.9; color: var(--terra); margin-bottom: 4px; }
.result-card .rc-unit { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--graphite-ink-2); margin-bottom: 16px; }
.result-card .rc-stats { display: flex; gap: 20px; padding-top: 14px; border-top: 1px solid oklch(35% 0.014 50); flex-wrap: wrap; }
.result-card .rc-stat-item { display: flex; flex-direction: column; gap: 2px; }
.result-card .rc-stat-v { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.02em; color: var(--graphite-ink); }
.result-card .rc-stat-l { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--graphite-ink-2); }

/* ─── ROI CALCULATOR ─────────────────────────────────────────────────── */
.roi-calc { border: 1px solid var(--rule); border-radius: 16px; padding: 40px; background: var(--card); }
@media (max-width: 720px) { .roi-calc { padding: 24px; } }
.roi-calc-input-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 36px; }
.roi-calc-input-row label { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.02em; color: var(--ink); white-space: nowrap; }
.roi-ticket-input { display: flex; align-items: center; gap: 14px; font-family: var(--font-display); font-weight: 800; font-size: 28px; letter-spacing: -0.03em; color: var(--terra); }
.roi-ticket-input input[type="range"] { -webkit-appearance: none; appearance: none; width: clamp(160px, 25vw, 220px); height: 4px; background: var(--rule); border-radius: 2px; outline: none; cursor: pointer; }
.roi-ticket-input input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--terra); cursor: pointer; box-shadow: 0 2px 8px oklch(54% 0.14 42 / 0.3); }
.roi-calc-scenarios { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 720px) { .roi-calc-scenarios { grid-template-columns: 1fr; } }
.scenario-card { border: 1px solid var(--rule); border-radius: 12px; padding: 22px; }
.scenario-card.optimista { border-color: oklch(50% 0.14 145 / 0.40); background: oklch(50% 0.14 145 / 0.04); }
.scenario-card.neutral, .scenario-card.pesimista { background: var(--paper-2); }
.scenario-card .sc-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; margin-bottom: 4px; }
.scenario-card .sc-note { font-family: var(--font-body); font-size: 12px; color: var(--ink-4); margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--rule); }
.scenario-card .sc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 12px; }
.scenario-card .sc-item .lbl { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--ink-5); margin-bottom: 3px; }
.scenario-card .sc-item .val { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.03em; color: var(--ink); line-height: 1; }
.scenario-card .sc-item .val.accent { color: var(--terra); }

/* ─── TRANSFORMATION CHART ───────────────────────────────────────────── */
.transform-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: stretch; }
@media (max-width: 880px) { .transform-grid { grid-template-columns: 1fr; } }
.transform-chart { border: 1px solid var(--rule); border-radius: 14px; padding: 24px; background: var(--card); }
.transform-chart.before { border-color: oklch(54% 0.14 42 / 0.25); background: oklch(54% 0.14 42 / 0.03); }
.transform-chart.after { border-color: oklch(50% 0.14 145 / 0.35); background: oklch(50% 0.14 145 / 0.04); }
.transform-chart .tc-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-5); font-weight: 600; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--rule); }
.transform-chart.before .tc-label { color: oklch(54% 0.14 42 / 0.7); }
.transform-chart.after .tc-label { color: oklch(38% 0.12 145); }
.tc-bars { display: flex; align-items: flex-end; gap: 6px; height: 120px; margin-bottom: 12px; }
.tc-bar { flex: 1; border-radius: 3px 3px 0 0; }
.transform-chart.before .tc-bar { background: oklch(54% 0.14 42 / 0.30); }
.transform-chart.after .tc-bar { background: var(--terra); }
.tc-months { display: flex; gap: 6px; border-top: 1px solid var(--rule); padding-top: 8px; }
.tc-month-label { flex: 1; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-6); text-align: center; }
.tc-items { margin-top: 16px; display: flex; flex-direction: column; gap: 7px; }
.tc-item { display: flex; align-items: flex-start; gap: 8px; font-family: var(--font-body); font-size: 13px; color: var(--ink-3); line-height: 1.4; }
.tc-item::before { content: "✗"; color: var(--terra); font-weight: 700; flex-shrink: 0; }
.transform-chart.after .tc-item::before { content: "✓"; color: oklch(38% 0.12 145); }
.transform-arrow { display: flex; align-items: center; justify-content: center; width: 48px; align-self: center; flex-shrink: 0; }
.transform-arrow .circle { width: 48px; height: 48px; border-radius: 50%; background: var(--graphite); color: var(--graphite-ink); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; }
@media (max-width: 880px) { .transform-arrow { display: none; } }

/* ─── PROCESS TIMELINE ───────────────────────────────────────────────── */
.process-timeline { position: relative; padding-left: 120px; display: flex; flex-direction: column; }
@media (max-width: 640px) { .process-timeline { padding-left: 80px; } }
.process-timeline::before { content: ""; position: absolute; left: 84px; top: 12px; bottom: 12px; width: 2px; background: var(--rule); }
@media (max-width: 640px) { .process-timeline::before { left: 54px; } }
.process-step { position: relative; padding: 0 0 32px 40px; }
.process-step:last-child { padding-bottom: 0; }
.process-step .ps-dot { position: absolute; left: -10px; top: 14px; width: 20px; height: 20px; border-radius: 50%; background: var(--rule-strong); border: 3px solid var(--paper); }
.process-step.active .ps-dot { background: var(--terra); }
.process-step.final .ps-dot { background: oklch(38% 0.12 145); }
.process-step .ps-when { position: absolute; left: -124px; top: 10px; width: 100px; text-align: right; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--terra); font-weight: 700; }
@media (max-width: 640px) { .process-step .ps-when { left: -84px; width: 70px; font-size: 9px; } }
.process-step .ps-content { background: var(--card); border: 1px solid var(--rule); border-radius: 12px; padding: 22px 24px; }
.process-step.final .ps-content { border-color: oklch(50% 0.14 145 / 0.35); background: oklch(50% 0.14 145 / 0.04); }
.process-step .ps-title { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.025em; color: var(--ink); margin-bottom: 8px; }
.process-step.final .ps-title { color: oklch(35% 0.10 145); }
.process-step .ps-body { font-family: var(--font-body); font-size: 14.5px; line-height: 1.65; color: var(--ink-3); }

/* ─── PLANS GRID ─────────────────────────────────────────────────────── */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
@media (max-width: 880px) { .plans-grid { grid-template-columns: 1fr; } }
.plan-card { background: var(--card); border: 1px solid var(--rule); border-radius: 16px; padding: 32px; display: flex; flex-direction: column; transition: border-color .25s, transform .25s; }
.plan-card:hover { transform: translateY(-3px); }
.plan-card.highlight { border-color: var(--terra); background: oklch(54% 0.14 42 / 0.04); }
.plan-card .plan-badge { display: inline-flex; margin-bottom: 20px; padding: 5px 14px; border-radius: 999px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; border: 1px solid var(--rule); background: var(--paper); color: var(--ink-3); align-self: flex-start; }
.plan-card.highlight .plan-badge { background: var(--terra); color: var(--paper); border-color: var(--terra); }
.plan-card .plan-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(64px, 10vw, 96px); letter-spacing: -0.05em; line-height: 0.9; color: var(--ink); margin-bottom: 4px; }
.plan-card.highlight .plan-num { color: var(--terra); }
.plan-card .plan-unit { font-family: var(--font-body); font-size: 14px; color: var(--ink-4); margin-bottom: 20px; }
.plan-card .plan-budget { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink-3); margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--rule); }
.plan-card .plan-guarantee { display: flex; align-items: flex-start; gap: 8px; font-family: var(--font-body); font-size: 13.5px; color: oklch(35% 0.10 145); font-weight: 600; margin-top: auto; }
.plan-card .plan-guarantee::before { content: "✓"; font-weight: 700; flex-shrink: 0; }

/* ─── PRICE BOX ──────────────────────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; align-items: start; }
@media (max-width: 880px) { .price-grid { grid-template-columns: 1fr; } }
.price-box { background: var(--card); border: 1.5px solid var(--terra); border-radius: 16px; padding: 36px; }
.price-box .pb-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terra); font-weight: 700; margin-bottom: 12px; }
.price-box .pb-price { font-family: var(--font-display); font-weight: 800; font-size: clamp(72px, 12vw, 96px); letter-spacing: -0.05em; line-height: 0.9; color: var(--terra); margin-bottom: 4px; }
.price-box .pb-note { font-family: var(--font-body); font-size: 13px; color: var(--ink-4); margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--rule); }
.price-box .pb-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.price-box .pb-feature { display: flex; align-items: flex-start; gap: 10px; font-family: var(--font-body); font-size: 14px; color: var(--ink-2); line-height: 1.4; }
.price-box .pb-feature::before { content: "✓"; color: oklch(35% 0.10 145); font-weight: 700; flex-shrink: 0; }
.price-vs { background: var(--paper-2); border: 1px solid var(--rule); border-radius: 16px; padding: 32px; }
.price-vs .pvs-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-5); font-weight: 600; margin-bottom: 20px; }
.price-vs .pvs-item { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-bottom: 1px solid var(--rule); font-family: var(--font-body); font-size: 14px; color: var(--ink-3); }
.price-vs .pvs-item:last-of-type { border-bottom: 0; }
.price-vs .pvs-item .pvs-v { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--ink-3); }
.price-vs .pvs-total { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 0 0; margin-top: 4px; font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: -0.02em; color: var(--ink); border-top: 2px solid var(--ink); }
.price-vs .pvs-total .pvs-tv { color: var(--terra); }
.price-vs .pvs-footer { margin-top: 20px; padding: 14px 16px; background: oklch(50% 0.14 145 / 0.08); border: 1px solid oklch(50% 0.14 145 / 0.25); border-radius: 8px; font-family: var(--font-body); font-size: 13px; line-height: 1.5; color: oklch(28% 0.10 145); }

/* ─── CTA DARK ───────────────────────────────────────────────────────── */
.cta-dark { background: var(--terra); }
.cta-dark .section-label { color: oklch(94% 0.008 65 / 0.7); }
.cta-dark .section-label .rule { background: oklch(94% 0.008 65 / 0.4); }
