/* ============================================
   ADVERTORIAL — Performance × Editorial
   Design system: Navy + Amber, premium, results-first
   ============================================ */

:root {
  /* Apple-inspired palette */
  --navy-900: #000000;
  --navy-800: #1D1D1F;
  --navy-700: #2C2C2E;
  --navy-600: #3A3A3C;
  --navy-500: #48484A;
  --amber-500: #E5341F;
  --amber-400: #FF4524;
  --amber-300: #FF7A6B;
  --amber-glow: rgba(229, 52, 31, 0.32);
  --cream: #F5F5F7;
  --paper: #FBFBFD;
  --ink: #1D1D1F;
  --muted: #6E6E73;
  --line: rgba(0, 0, 0, 0.10);
  --line-dark: rgba(245, 245, 247, 0.12);
  --success: #30D158;
  /* Apple system font stack — uses SF Pro on Apple devices, Inter on others */
  --serif: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', 'Inter', system-ui, sans-serif;
  --sans: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', 'Inter', system-ui, sans-serif;
  --mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, 'JetBrains Mono', monospace;
  --container: 1280px;
  --container-tight: 1080px;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--amber-500); color: var(--navy-900); }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--amber-500);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--amber-500);
}

h1, h2, h3, h4 {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}

.h-display {
  font-size: clamp(48px, 7.5vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 700;
}
.h-1 { font-size: clamp(40px, 5vw, 72px); font-weight: 700; letter-spacing: -0.035em; }
.h-2 { font-size: clamp(32px, 3.6vw, 52px); font-weight: 700; letter-spacing: -0.03em; }
.h-3 { font-size: clamp(24px, 2.4vw, 34px); font-weight: 600; letter-spacing: -0.022em; }
.h-4 { font-size: clamp(20px, 1.8vw, 24px); font-weight: 600; letter-spacing: -0.015em; }

.lead {
  font-size: clamp(18px, 1.4vw, 21px);
  color: var(--muted);
  line-height: 1.5;
  max-width: 56ch;
  font-weight: 400;
}

/* Apple-style accent — bold weight + accent color, no italic serif */
.italic-serif {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 700;
  color: var(--amber-500);
  letter-spacing: -0.025em;
}

/* ============================================
   LAYOUT
   ============================================ */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container-tight { width: 100%; max-width: var(--container-tight); margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; position: relative; }
.section-sm { padding: 80px 0; }
.section-lg { padding: 160px 0; }

.dark { background: var(--navy-900); color: var(--cream); }
.dark h1, .dark h2, .dark h3, .dark h4 { color: var(--cream); }
.dark .lead, .dark .muted { color: rgba(247, 241, 230, 0.7); }

.divider { height: 1px; background: var(--line); width: 100%; }
.dark .divider { background: var(--line-dark); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(5, 11, 26, 0.85);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--line-dark);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.028em;
  color: var(--cream);
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.nav-logo .dot { color: var(--amber-500); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  background: rgba(247, 241, 230, 0.06);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 6px;
  backdrop-filter: blur(10px);
}
.nav-links a {
  color: var(--cream);
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--cream);
  color: var(--navy-900);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--amber-500);
  color: var(--navy-900);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px var(--amber-glow); }
.nav-cta .arrow { transition: transform 0.3s var(--ease); }
.nav-cta:hover .arrow { transform: translateX(4px); }

.nav-burger { display: none; }
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: rgba(247, 241, 230, 0.08);
    border-radius: 12px;
  }
  .nav-burger span { width: 22px; height: 2px; background: var(--cream); border-radius: 2px; }
}

/* Mobile drawer */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-900);
  z-index: 99;
  padding: 100px 32px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { display: block; opacity: 1; pointer-events: auto; }
.mobile-menu a {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  color: var(--cream);
  padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
}
.mobile-menu a:hover { color: var(--amber-500); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
  cursor: pointer;
}
.btn-primary {
  background: var(--amber-500);
  color: var(--navy-900);
}
.btn-primary:hover {
  background: var(--amber-400);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px var(--amber-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line-dark);
}
.btn-ghost:hover { background: rgba(247, 241, 230, 0.08); border-color: var(--cream); }
.btn-dark {
  background: var(--navy-900);
  color: var(--cream);
}
.btn-dark:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn .arrow {
  display: inline-flex;
  width: 20px; height: 20px;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }
.btn-lg { padding: 22px 34px; font-size: 16px; }

/* ============================================
   HERO (HOMEPAGE)
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy-900);
  color: var(--cream);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 160px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--amber-glow) 0%, transparent 60%);
  filter: blur(40px);
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(27, 50, 78, 0.6) 0%, transparent 70%);
  filter: blur(60px);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247, 241, 230, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 241, 230, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 50% 40%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, black 0%, transparent 70%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
.hero h1 .accent {
  font-family: var(--serif);
  font-style: italic;
  color: var(--amber-500);
  font-weight: 400;
}
.hero h1 .strike {
  position: relative;
  display: inline-block;
}
.hero h1 .strike::after {
  content: '';
  position: absolute;
  left: -4%; right: -4%;
  top: 55%;
  height: 6px;
  background: var(--amber-500);
  transform: scaleX(0);
  transform-origin: left;
  animation: strike 1.2s 1s var(--ease-out) forwards;
}
@keyframes strike { to { transform: scaleX(1); } }

.hero-meta {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line-dark);
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meta-num {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--amber-500);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.meta-label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(247, 241, 230, 0.6);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* Scroll indicator */
.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(247, 241, 230, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.scroll-cue .line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--amber-500), transparent);
  animation: drop 2s var(--ease) infinite;
}
@keyframes drop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   MARQUEE — verified results
   ============================================ */
.marquee {
  background: var(--navy-900);
  color: var(--cream);
  padding: 32px 0;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.marquee-track {
  display: flex;
  gap: 64px;
  animation: scroll-left 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.marquee-item .num { color: var(--amber-500); }
.marquee-item .brand { color: var(--cream); }
.marquee-item::after {
  content: '✦';
  margin-left: 64px;
  color: rgba(247, 241, 230, 0.3);
  font-size: 18px;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   CARDS / SECTION COMMONS
   ============================================ */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px;
  max-width: 800px;
}
.section-head.center { margin-left: auto; margin-right: auto; align-items: center; text-align: center; }
.section-head.split {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 100%;
  gap: 60px;
}
@media (max-width: 900px) { .section-head.split { flex-direction: column; align-items: flex-start; } }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  box-shadow: 0 24px 48px rgba(10, 22, 40, 0.08);
}
.dark .card {
  background: var(--navy-800);
  border-color: var(--line-dark);
}
.dark .card:hover { border-color: var(--amber-500); box-shadow: 0 24px 48px rgba(0,0,0,0.4); }

.card-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.dark .card-num { color: rgba(247, 241, 230, 0.5); }

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.dark .services-grid { border-color: var(--line-dark); }
.service-tile {
  padding: 56px 48px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.4s var(--ease);
  position: relative;
}
.dark .service-tile { border-color: var(--line-dark); }
.service-tile:hover { background: var(--navy-900); color: var(--cream); }
.service-tile:hover h3, .service-tile:hover .service-num { color: var(--amber-500); }
.service-tile:hover p { color: rgba(247, 241, 230, 0.7); }
.service-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.service-tile h3 { transition: color 0.3s; }
.service-tile p { color: var(--muted); transition: color 0.3s; }
.service-tile ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.service-tile li {
  font-size: 13px;
  padding: 6px 12px;
  background: rgba(10, 22, 40, 0.05);
  border-radius: 999px;
  font-family: var(--mono);
}
.service-tile:hover li { background: rgba(247, 241, 230, 0.08); color: var(--cream); }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

/* ============================================
   CASE STUDY CARDS
   ============================================ */
.case-list { display: flex; flex-direction: column; }
.case-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr 200px;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: center;
  transition: padding 0.4s var(--ease);
  position: relative;
}
.case-row:hover { padding-left: 24px; }
.case-row:hover .case-arrow { transform: translateX(8px); opacity: 1; }
.case-num {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(247, 241, 230, 0.5);
  letter-spacing: 0.15em;
}
.case-brand {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.case-vertical { color: rgba(247, 241, 230, 0.6); font-size: 14px; margin-top: 4px; }
.case-metric {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--amber-500);
  letter-spacing: -0.01em;
}
.case-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--amber-500);
  color: var(--navy-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: transform 0.3s var(--ease), opacity 0.3s;
  justify-self: end;
}
@media (max-width: 900px) {
  .case-row { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
  .case-brand { font-size: 26px; }
  .case-metric { font-size: 18px; }
  .case-arrow { justify-self: start; }
}

/* ============================================
   PROCESS — STEPS
   ============================================ */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: grid;
  grid-template-columns: 100px 1fr 1.4fr;
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  transition: padding 0.4s var(--ease);
}
.process-step:last-child { border-bottom: 1px solid var(--line); }
.process-step:hover { padding-left: 24px; }
.process-step-num {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--amber-500);
  letter-spacing: 0.15em;
}
.process-step h3 { font-size: 28px; }
.process-step p { color: var(--muted); max-width: 56ch; }
@media (max-width: 900px) {
  .process-step { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
}

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip {
  background: var(--navy-900);
  color: var(--cream);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--amber-glow) 0%, transparent 70%);
  filter: blur(80px);
}
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 900px; margin: 0 auto; }
.cta-strip h2 { font-size: clamp(40px, 6vw, 88px); margin-bottom: 32px; }
.cta-strip .lead { margin: 0 auto 48px; color: rgba(247, 241, 230, 0.7); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-900);
  color: var(--cream);
  padding: 80px 0 40px;
  border-top: 1px solid var(--line-dark);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .nav-logo { font-size: 32px; margin-bottom: 20px; }
.footer-brand p { color: rgba(247, 241, 230, 0.6); max-width: 36ch; }
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--amber-500);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: rgba(247, 241, 230, 0.8); font-size: 15px; transition: color 0.2s; }
.footer-col a:hover { color: var(--amber-500); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(247, 241, 230, 0.5);
  letter-spacing: 0.05em;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

.split-line {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.split-line span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.9s var(--ease-out);
}
.split-line.in span { transform: translateY(0); }

/* ============================================
   TICKER COUNTER & METRICS GRID
   ============================================ */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}
.metric-cell {
  padding: 40px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.metric-cell .num {
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 56px);
  color: var(--amber-500);
  letter-spacing: -0.03em;
  line-height: 1;
}
.metric-cell .label {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(247, 241, 230, 0.6);
  margin-top: 12px;
}
@media (max-width: 900px) { .metrics-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pricing-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.3s;
}
.pricing-card.featured {
  background: var(--navy-900);
  color: var(--cream);
  border-color: var(--navy-900);
}
.pricing-card.featured h3, .pricing-card.featured .price { color: var(--cream); }
.pricing-card:hover { transform: translateY(-6px); border-color: var(--ink); }
.pricing-card.featured:hover { border-color: var(--amber-500); }
.pricing-tag {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--amber-500);
  color: var(--navy-900);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}
.pricing-card h3 { font-size: 24px; margin-bottom: 8px; }
.pricing-card .vertical {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.pricing-card.featured .vertical { color: rgba(247, 241, 230, 0.6); }
.pricing-card .price {
  font-family: var(--serif);
  font-size: 48px;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  line-height: 1;
}
.pricing-card .price-unit {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}
.pricing-card.featured .price-unit { color: rgba(247, 241, 230, 0.6); }
.pricing-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-card li {
  font-size: 14px;
  padding-left: 24px;
  position: relative;
  color: var(--muted);
}
.pricing-card.featured li { color: rgba(247, 241, 230, 0.8); }
.pricing-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 6px;
  border-left: 1.5px solid var(--amber-500);
  border-bottom: 1.5px solid var(--amber-500);
  transform: rotate(-45deg);
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ============================================
   FORMS
   ============================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.form-group label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}
.form-input, .form-select, .form-textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 17px;
  color: var(--ink);
  width: 100%;
  transition: border-color 0.3s;
  outline: none;
}
.dark .form-input, .dark .form-select, .dark .form-textarea {
  border-bottom-color: var(--line-dark);
  color: var(--cream);
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-bottom-color: var(--amber-500); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: inherit;
  font-size: 14px;
  transition: all 0.2s;
  font-family: inherit;
}
.dark .chip { border-color: var(--line-dark); color: var(--cream); }
.chip:hover { border-color: var(--ink); }
.dark .chip:hover { border-color: var(--cream); }
.chip.active {
  background: var(--amber-500);
  border-color: var(--amber-500);
  color: var(--navy-900);
}

/* ============================================
   VERTICAL LANDER COMMONS
   ============================================ */
.lander-hero {
  background: var(--navy-900);
  color: var(--cream);
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}
.lander-hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) { .lander-hero-inner { grid-template-columns: 1fr; gap: 40px; } }
.lander-hero h1 { font-size: clamp(40px, 6vw, 80px); margin: 24px 0; }
.lander-hero h1 .accent { color: var(--amber-500); font-family: var(--serif); font-style: italic; }

.lander-proof {
  background: var(--navy-800);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.lander-proof .proof-num {
  font-family: var(--serif);
  font-size: 64px;
  color: var(--amber-500);
  letter-spacing: -0.03em;
  line-height: 1;
}
.lander-proof .proof-label {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(247, 241, 230, 0.6);
  margin: 16px 0 24px;
}
.lander-proof .proof-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.4;
  color: var(--cream);
}
.lander-proof .proof-source {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(247, 241, 230, 0.6);
  letter-spacing: 0.1em;
}

/* ============================================
   QUOTE BLOCK
   ============================================ */
.quote-block {
  padding: 120px 0;
  text-align: center;
}
.quote-block blockquote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 1000px;
  margin: 0 auto;
  font-weight: 400;
}
.quote-block blockquote .accent { color: var(--amber-500); font-style: italic; }
.quote-block cite {
  display: block;
  margin-top: 40px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--muted);
}
.dark .quote-block cite { color: rgba(247, 241, 230, 0.6); }

/* ============================================
   ABOUT — FOUNDERS
   ============================================ */
.founder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.founder-card {
  background: var(--navy-800);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: transform 0.4s var(--ease), border-color 0.3s;
}
.founder-card:hover { transform: translateY(-6px); border-color: var(--amber-500); }
.founder-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-300));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 32px;
  color: var(--navy-900);
  margin-bottom: 28px;
  font-weight: 500;
}
.founder-card h3 { font-size: 24px; color: var(--cream); }
.founder-card .role {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber-500);
  margin: 6px 0 16px;
}
.founder-card p { color: rgba(247, 241, 230, 0.7); font-size: 15px; line-height: 1.55; }
@media (max-width: 900px) { .founder-grid { grid-template-columns: 1fr; } }

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--amber-500);
  z-index: 1000;
  width: 0;
  transition: width 0.1s linear;
}

/* ============================================
   MISC
   ============================================ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 164, 12, 0.12);
  color: var(--amber-500);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.tag .dot {
  width: 6px; height: 6px;
  background: var(--amber-500);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.highlight {
  background: linear-gradient(120deg, transparent 0%, transparent 50%, var(--amber-300) 50%, var(--amber-300) 100%);
  background-size: 220% 100%;
  background-position: 100% 0;
  padding: 0 4px;
  transition: background-position 1s var(--ease-out);
}
.highlight.lit { background-position: 0 0; color: var(--navy-900); }

/* ============================================
   RESPONSIVE TWEAKS
   ============================================ */
@media (max-width: 600px) {
  .section { padding: 80px 0; }
  .section-lg { padding: 100px 0; }
  .container, .container-tight { padding: 0 20px; }
  .hero { padding: 130px 0 60px; }
  .card, .service-tile, .founder-card, .pricing-card, .lander-proof { padding: 28px; }
  .hero-meta { gap: 28px; }
  .meta-num { font-size: 28px; }
  .quote-block blockquote { font-size: 26px; }
  .cta-strip { padding: 90px 0; }
}

/* ============================================
   v2 — INTERACTIVE LAYER
   ============================================ */

/* Custom cursor */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  mix-blend-mode: difference;
  transition: opacity 0.3s, transform 0.18s var(--ease-out), width 0.25s var(--ease-out), height 0.25s var(--ease-out), background 0.25s;
  will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--cream);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--cream);
  transform: translate(-50%, -50%);
}
.cursor-ring.hover {
  width: 80px; height: 80px;
  background: var(--amber-500);
  border-color: var(--amber-500);
  mix-blend-mode: normal;
}
.cursor-ring.text-hover {
  width: 110px; height: 110px;
  background: var(--amber-500);
  border-color: var(--amber-500);
  mix-blend-mode: normal;
}
.cursor-ring .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-900);
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.cursor-ring.text-hover .label { display: flex; }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* Hero particle canvas */
.hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-spotlight {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 164, 12, 0.18) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(20px);
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s;
}
.hero.cursor-in .hero-spotlight { opacity: 1; }

/* Tilt cards */
.tilt {
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease-out);
  will-change: transform;
}
.tilt > * { transform-style: preserve-3d; }
.tilt-pop {
  transform: translateZ(40px);
}
.tilt-pop-sm { transform: translateZ(20px); }

/* Scramble / glitch text */
.scramble {
  font-family: var(--mono);
  display: inline-block;
}

/* Live ticker badge */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(247, 241, 230, 0.08);
  border: 1px solid var(--line-dark);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.live-badge .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  position: relative;
}
.live-badge .pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--success);
  opacity: 0.4;
  animation: pulse-out 1.6s infinite;
}
@keyframes pulse-out {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(2.5); opacity: 0; }
}
.live-badge .rotating { color: var(--amber-500); font-weight: 500; min-width: 220px; }

/* Sticky floating CTA */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  background: var(--amber-500);
  color: var(--navy-900);
  padding: 18px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 50px rgba(255, 164, 12, 0.4), 0 0 0 1px rgba(0,0,0,0.05);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.5s, box-shadow 0.3s;
}
.floating-cta.show { transform: translateY(0); opacity: 1; }
.floating-cta:hover { box-shadow: 0 28px 60px rgba(255, 164, 12, 0.55); }
.floating-cta .dot-pulse {
  width: 8px; height: 8px;
  background: var(--navy-900);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@media (max-width: 600px) {
  .floating-cta { bottom: 16px; right: 16px; padding: 14px 20px; font-size: 13px; }
}

/* ROAS Calculator */
.calc {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 56px;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
@media (max-width: 600px) { .calc { padding: 32px 24px; } }
.calc::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--amber-glow) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.calc-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .calc-inner { grid-template-columns: 1fr; gap: 40px; } }
.calc-controls { display: flex; flex-direction: column; gap: 28px; }
.calc-control label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247, 241, 230, 0.6);
  margin-bottom: 12px;
}
.calc-control label .v {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--amber-500);
  letter-spacing: -0.01em;
}
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(247, 241, 230, 0.12);
  border-radius: 6px;
  outline: none;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px;
  background: var(--amber-500);
  border-radius: 50%;
  cursor: grab;
  box-shadow: 0 0 0 6px rgba(255, 164, 12, 0.2);
  transition: box-shadow 0.2s;
}
.calc-slider::-webkit-slider-thumb:hover { box-shadow: 0 0 0 10px rgba(255, 164, 12, 0.3); }
.calc-slider::-moz-range-thumb {
  width: 24px; height: 24px;
  background: var(--amber-500);
  border-radius: 50%;
  cursor: grab;
  border: none;
  box-shadow: 0 0 0 6px rgba(255, 164, 12, 0.2);
}
.calc-result {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.calc-readout {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 88px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--cream);
}
.calc-readout .amber { color: var(--amber-500); }
.calc-readout .small { font-size: 0.45em; color: rgba(247, 241, 230, 0.6); display: block; margin-top: 12px; font-family: var(--sans); letter-spacing: 0; }
.calc-targets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.calc-target {
  background: rgba(247, 241, 230, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  padding: 16px;
}
.calc-target .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 241, 230, 0.5);
  margin-bottom: 6px;
}
.calc-target .val {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--cream);
  letter-spacing: -0.01em;
}

/* SVG dashboard mockup */
.dashboard-mock {
  background: var(--navy-800);
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  position: relative;
}
.dashboard-mock::before {
  content: '';
  position: absolute;
  top: 16px; left: 24px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #ff5f56;
  box-shadow: 20px 0 0 #ffbd2e, 40px 0 0 #27c93f;
}
.dashboard-mock-head {
  margin-left: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.dashboard-title {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(247, 241, 230, 0.6);
  letter-spacing: 0.1em;
}
.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.dashboard-kpi {
  background: var(--navy-800);
  padding: 16px;
}
.dashboard-kpi .lbl {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 241, 230, 0.5);
  margin-bottom: 4px;
}
.dashboard-kpi .val {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.dashboard-kpi .delta {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--success);
}

/* Horizontal scroll cases */
.hscroll {
  display: flex;
  gap: 24px;
  padding-left: 32px;
  padding-right: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 20px;
}
.hscroll::-webkit-scrollbar { display: none; }
.hscroll-card {
  flex: 0 0 460px;
  scroll-snap-align: start;
  background: var(--navy-800);
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  transition: transform 0.4s var(--ease-out), border-color 0.3s;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 520px;
}
.hscroll-card:hover { border-color: var(--amber-500); transform: translateY(-6px); }
.hscroll-card .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--amber-500);
}
.hscroll-card .brand {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hscroll-card .vertical {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 241, 230, 0.6);
}
.hscroll-card .metric-big {
  font-family: var(--serif);
  font-size: 64px;
  color: var(--amber-500);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: auto 0 16px;
}
.hscroll-card .metric-lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247, 241, 230, 0.6);
}
.hscroll-card .copy {
  color: rgba(247, 241, 230, 0.7);
  font-size: 14px;
  line-height: 1.5;
}
.hscroll-card svg.minichart {
  width: 100%; height: 60px;
}
.hscroll-hint {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-500);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 600px) {
  .hscroll-card { flex-basis: 88vw; min-height: 460px; padding: 28px; }
  .hscroll-card .brand { font-size: 32px; }
  .hscroll-card .metric-big { font-size: 48px; }
}

/* Sector orbit graphic */
.orbit {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 520px;
  margin: 0 auto;
}
.orbit-ring {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(247, 241, 230, 0.18);
  border-radius: 50%;
}
.orbit-ring.r2 { inset: 12%; }
.orbit-ring.r3 { inset: 24%; }
.orbit-ring.r4 { inset: 36%; }
.orbit-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.orbit-center .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-500);
}
.orbit-center .num {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--cream);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 8px;
}
.orbit-node {
  position: absolute;
  background: var(--navy-800);
  border: 1px solid var(--amber-500);
  color: var(--amber-500);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

/* Bigger section borders */
.bordered {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

/* Workflow diagram */
.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.workflow-step {
  padding: 32px;
  border: 1px solid var(--line-dark);
  border-right: none;
  position: relative;
  background: var(--navy-800);
}
.workflow-step:last-child { border-right: 1px solid var(--line-dark); }
.workflow-step .stepnum {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--amber-500);
  letter-spacing: 0.15em;
}
.workflow-step h4 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--cream);
  margin: 16px 0 8px;
}
.workflow-step p { color: rgba(247, 241, 230, 0.6); font-size: 13px; }
.workflow-step::after {
  content: '→';
  position: absolute;
  right: -10px; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  background: var(--amber-500);
  color: var(--navy-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  z-index: 2;
}
.workflow-step:last-child::after { display: none; }
@media (max-width: 900px) {
  .workflow { grid-template-columns: 1fr; }
  .workflow-step { border-right: 1px solid var(--line-dark); border-bottom: none; }
  .workflow-step:last-child { border-bottom: 1px solid var(--line-dark); }
  .workflow-step::after { right: 50%; top: auto; bottom: -10px; transform: translateX(50%) rotate(90deg); }
}

/* ============================================
   v3 — VISUAL HEAVY (no-images strategy)
   ============================================ */

/* Grain texture overlay — premium editorial feel */
body::before {
  content: '';
  position: fixed;
  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='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: overlay;
  opacity: 0.55;
}

/* Brand mark — rotating seal */
.mark-seal {
  width: 120px; height: 120px;
  position: relative;
}
.mark-seal svg.ring { width: 100%; height: 100%; animation: rotate-slow 22s linear infinite; }
.mark-seal .core {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 44px;
  color: var(--amber-500);
  font-style: italic;
}
@keyframes rotate-slow { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* Kinetic infinite typography strip */
.kinetic {
  overflow: hidden;
  padding: 32px 0;
  position: relative;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--navy-900);
}
.kinetic-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: scroll-left 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.kinetic.reverse .kinetic-track { animation-direction: reverse; animation-duration: 45s; }
.kinetic-track .word {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--cream);
  line-height: 1;
}
.kinetic-track .word.italic { font-style: italic; color: var(--amber-500); }
.kinetic-track .word.outline {
  -webkit-text-stroke: 1.5px var(--cream);
  color: transparent;
}
.kinetic-track .star {
  width: 40px; height: 40px;
  color: var(--amber-500);
}

/* Big editorial section numerals */
.giant-num {
  font-family: var(--serif);
  font-size: clamp(120px, 18vw, 280px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--amber-500);
  font-style: italic;
  font-weight: 400;
  display: block;
}
.giant-num.outline {
  -webkit-text-stroke: 1.5px var(--amber-500);
  color: transparent;
}

/* Editorial split — magazine-style */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .editorial { grid-template-columns: 1fr; gap: 40px; } }

/* Pull quote — magazine */
.pull-quote {
  border-left: 3px solid var(--amber-500);
  padding-left: 32px;
  margin: 40px 0;
}
.pull-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* Index strip — like a magazine TOC */
.index-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
}
.index-cell {
  padding: 32px 24px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.3s;
  text-align: left;
}
.index-cell:hover { background: rgba(255, 164, 12, 0.08); }
.index-cell .ix-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--amber-500);
  letter-spacing: 0.15em;
}
.index-cell .ix-ttl {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.index-cell .ix-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 241, 230, 0.5);
}
@media (max-width: 900px) { .index-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .index-strip { grid-template-columns: 1fr; } }

/* Funnel SVG container */
.funnel-wrap {
  position: relative;
  background: var(--navy-800);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 56px;
  overflow: hidden;
}
.funnel-wrap::before {
  content: '';
  position: absolute;
  top: -30%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--amber-glow) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.funnel-stage {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247, 241, 230, 0.6);
}

/* Coin animation */
@keyframes coin-flow {
  0% { transform: translateX(-100px) translateY(0); opacity: 0; }
  10% { opacity: 1; }
  50% { transform: translateX(50%) translateY(-30px); opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(120%) translateY(0); opacity: 0; }
}
.coin {
  position: absolute;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
  box-shadow: 0 6px 16px var(--amber-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 600;
  animation: coin-flow 4s linear infinite;
}

/* Verticals — big tiles with custom illustrations */
.vert-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vert-tile {
  background: var(--navy-800);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.3s;
}
.vert-tile:hover { transform: translateY(-8px); border-color: var(--amber-500); }
.vert-tile:hover .vert-illustration { transform: scale(1.05) rotate(-3deg); }
.vert-illustration {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 164, 12, 0.08);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s var(--ease-out);
}
.vert-illustration svg { width: 70%; height: 70%; }
.vert-tile h3 { font-size: 28px; color: var(--cream); }
.vert-tile .vert-meta {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber-500);
}
.vert-tile .vert-stat {
  display: flex;
  gap: 32px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}
.vert-tile .vert-stat .num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--amber-500);
  letter-spacing: -0.02em;
}
.vert-tile .vert-stat .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 241, 230, 0.6);
}
@media (max-width: 900px) { .vert-tiles { grid-template-columns: 1fr; } }

/* Anonymized case row */
.case-anon {
  display: grid;
  grid-template-columns: 100px 1.4fr 1fr 1fr 60px;
  gap: 40px;
  padding: 56px 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: center;
  position: relative;
  transition: padding 0.4s var(--ease);
  cursor: pointer;
}
.case-anon:hover { padding-left: 24px; background: linear-gradient(90deg, rgba(255, 164, 12, 0.05), transparent); }
.case-anon .ix {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--amber-500);
  letter-spacing: 0.15em;
}
.case-anon .ttl {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.case-anon .ttl .small {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(247, 241, 230, 0.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 8px;
}
.case-anon .metric {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--amber-500);
  letter-spacing: -0.02em;
  line-height: 1;
}
.case-anon .metric-lbl {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(247, 241, 230, 0.6);
  margin-top: 6px;
}
.case-anon .summary { color: rgba(247, 241, 230, 0.65); font-size: 14px; line-height: 1.5; }
.case-anon .go {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
  justify-self: end;
}
.case-anon:hover .go { background: var(--amber-500); color: var(--navy-900); border-color: var(--amber-500); transform: rotate(-45deg); }
@media (max-width: 900px) {
  .case-anon { grid-template-columns: 1fr; gap: 16px; padding: 36px 0; }
  .case-anon .ttl { font-size: 28px; }
  .case-anon .metric { font-size: 30px; }
  .case-anon .go { justify-self: start; }
}

/* Capability ring — services on a circle */
.cap-ring {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 600px;
  margin: 0 auto;
}
.cap-ring svg.spinner {
  width: 100%; height: 100%;
  animation: rotate-slow 50s linear infinite;
}
.cap-ring .center-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cap-ring .center-label .big {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--cream);
  letter-spacing: -0.03em;
  line-height: 1;
}
.cap-ring .center-label .big em { color: var(--amber-500); font-style: italic; }
.cap-ring .center-label .small {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247, 241, 230, 0.6);
  margin-top: 14px;
}

/* Big counters block (full row) */
.big-counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.big-counter {
  padding: 60px 32px;
  border-right: 1px solid var(--line-dark);
  text-align: left;
}
.big-counter:last-child { border-right: none; }
.big-counter .v {
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 96px);
  color: var(--cream);
  letter-spacing: -0.04em;
  line-height: 1;
}
.big-counter .v .amber { color: var(--amber-500); font-style: italic; }
.big-counter .l {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247, 241, 230, 0.5);
  margin-top: 24px;
  max-width: 26ch;
}
@media (max-width: 900px) {
  .big-counters { grid-template-columns: repeat(2, 1fr); }
  .big-counter:nth-child(2) { border-right: none; }
  .big-counter:nth-child(1), .big-counter:nth-child(2) { border-bottom: 1px solid var(--line-dark); }
}

/* Anatomy tabs */
.anatomy {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .anatomy { grid-template-columns: 1fr; gap: 30px; } }
.anatomy-tabs {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line-dark);
}
.anatomy-tab {
  text-align: left;
  padding: 24px 28px;
  border-left: 2px solid transparent;
  margin-left: -1px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.3s;
  color: rgba(247, 241, 230, 0.5);
  background: transparent;
}
.anatomy-tab:hover { color: var(--cream); }
.anatomy-tab.active {
  border-left-color: var(--amber-500);
  color: var(--cream);
  background: rgba(255, 164, 12, 0.06);
}
.anatomy-tab .week {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
}
.anatomy-tab .ttl {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: -0.01em;
}
.anatomy-panel {
  background: var(--navy-800);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 56px;
  min-height: 480px;
  display: none;
}
.anatomy-panel.active { display: flex; flex-direction: column; gap: 24px; }
.anatomy-panel .stage {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--amber-500);
}
.anatomy-panel h3 {
  font-size: 40px;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.anatomy-panel .body { color: rgba(247, 241, 230, 0.7); font-size: 16px; line-height: 1.6; max-width: 56ch; }
.anatomy-panel ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.anatomy-panel li {
  padding-left: 28px;
  position: relative;
  font-size: 14px;
  color: rgba(247, 241, 230, 0.8);
  font-family: var(--mono);
  letter-spacing: 0.05em;
}
.anatomy-panel li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--amber-500);
}
@media (max-width: 600px) { .anatomy-panel { padding: 32px; min-height: 0; } .anatomy-panel h3 { font-size: 28px; } }

/* Logo-mark big graphic */
.bigmark {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 80px 0;
  flex-wrap: wrap;
  justify-content: center;
}
.bigmark .letter {
  font-family: var(--serif);
  font-size: clamp(120px, 18vw, 240px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--cream);
  font-weight: 400;
}
.bigmark .letter.italic { color: var(--amber-500); font-style: italic; }

/* Asterisk separator */
.aster {
  text-align: center;
  font-family: var(--serif);
  font-size: 32px;
  color: var(--amber-500);
  padding: 60px 0;
  letter-spacing: 1em;
}

/* Section number badge */
.section-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-500);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.section-num::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--amber-500);
}

/* Editorial spread block */
.spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.spread > div {
  padding: 80px 56px;
  border-right: 1px solid var(--line-dark);
}
.spread > div:last-child { border-right: none; }
@media (max-width: 900px) {
  .spread { grid-template-columns: 1fr; }
  .spread > div { border-right: none; border-bottom: 1px solid var(--line-dark); padding: 48px 32px; }
  .spread > div:last-child { border-bottom: none; }
}

/* Number/word collage */
.collage {
  position: relative;
  min-height: 480px;
  padding: 60px 0;
}
.collage-item {
  position: absolute;
  font-family: var(--serif);
  font-style: italic;
  color: var(--amber-500);
  letter-spacing: -0.03em;
  line-height: 0.9;
}
.collage-item.outline {
  -webkit-text-stroke: 1px var(--amber-500);
  color: transparent;
  font-style: normal;
}
.collage-item.white { color: var(--cream); font-style: normal; }
.collage-item.label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247, 241, 230, 0.5);
  font-style: normal;
}

/* Decorative SVG floats */
.float-svg {
  position: absolute;
  pointer-events: none;
  opacity: 0.4;
  animation: float-y 8s ease-in-out infinite;
}
@keyframes float-y {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(8deg); }
}

/* Vertical icons (used in tiles + nav) */
.icon-vert { width: 100%; height: 100%; }

/* Disclaimer / NDA note */
.nda-note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 241, 230, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
}
.nda-note::before {
  content: '◉';
  color: var(--amber-500);
}

/* ============================================
   v4 — TRESMARES LIGHT LAYER
   White, minimal, editorial. Image-led.
   ============================================ */

/* Body grain off in light mode to keep it crisp */
body.light::before { display: none; }
body.light { background: #FFFFFF; color: var(--ink); }

/* Light nav */
.nav.light .nav-logo { color: var(--ink); }
.nav.light .nav-links {
  background: rgba(0, 0, 0, 0.03);
  border-color: var(--line);
}
.nav.light .nav-links a { color: var(--ink); }
.nav.light .nav-links a:hover,
.nav.light .nav-links a.active {
  background: var(--ink);
  color: #FFF;
}
.nav.light.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}
.nav.light .nav-burger { background: rgba(0, 0, 0, 0.05); }
.nav.light .nav-burger span { background: var(--ink); }

/* Light hero — split layout, image right */
.hero-light {
  min-height: auto;
  background: #FFFFFF;
  color: var(--ink);
  padding: 180px 0 100px;
  position: relative;
  overflow: visible;
  display: block;
}
.hero-light .hero-grid,
.hero-light .hero-bg,
.hero-light .hero-canvas,
.hero-light .hero-spotlight { display: none; }
.hero-light-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-light-text { display: flex; flex-direction: column; gap: 32px; }
.hero-light h1 {
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--ink);
}
.hero-light h1 .accent { color: var(--amber-500); }
.hero-light .lead { color: var(--muted); font-size: 20px; max-width: 56ch; }
.hero-light-img {
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  background: #F5F5F7;
  position: relative;
}
.hero-light-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-light-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero-light-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-light { padding: 130px 0 60px; }
  .hero-light-img { aspect-ratio: 4 / 3; }
}

/* Light eyebrow */
.eyebrow-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-500);
  font-weight: 600;
}
.eyebrow-light::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--amber-500);
}

/* Light section */
.section-light { padding: 120px 0; background: #FFFFFF; color: var(--ink); }
.section-light-cream { background: #F5F5F7; }
.section-light h1, .section-light h2, .section-light h3, .section-light h4 { color: var(--ink); }
.section-light .lead { color: var(--muted); }

/* Intro block — magazine-style */
.intro-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  padding: 40px 0;
}
.intro-block .intro-label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 600;
}
.intro-block .intro-headline {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--ink);
  max-width: 22ch;
}
.intro-block .intro-headline em {
  font-style: normal;
  color: var(--amber-500);
  font-weight: 700;
}
.intro-block .intro-body {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 60ch;
}
.intro-block .intro-body p + p { margin-top: 20px; }
@media (max-width: 900px) {
  .intro-block { grid-template-columns: 1fr; gap: 32px; }
}

/* Image cards — Tresmares style: photo top, text bottom */
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.image-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.image-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .image-grid, .image-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .image-grid, .image-grid.cols-2, .image-grid.cols-4 { grid-template-columns: 1fr; gap: 32px; } }

.image-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
  transition: transform 0.4s var(--ease-out);
}
.image-card:hover { transform: translateY(-4px); }
.image-card:hover .image-card-photo img { transform: scale(1.04); }
.image-card-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  background: #F5F5F7;
  position: relative;
}
.image-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}
.image-card-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 65%, rgba(0,0,0,0.18) 100%);
  pointer-events: none;
}
.image-card-tag {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber-500);
  font-weight: 600;
}
.image-card h3 {
  font-size: 24px;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--ink);
}
.image-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.image-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.image-card-arrow .arrow {
  transition: transform 0.3s var(--ease-out);
}
.image-card:hover .image-card-arrow .arrow { transform: translateX(4px); }

/* Spotlight row — full-bleed image with caption beside it */
.spotlight-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #F5F5F7;
}
.spotlight-row .spotlight-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.spotlight-row .spotlight-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.spotlight-row .spotlight-text {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.spotlight-row.flip { direction: rtl; }
.spotlight-row.flip > * { direction: ltr; }
.spotlight-row .spotlight-text h2 {
  font-size: clamp(32px, 3.6vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  max-width: 20ch;
}
.spotlight-row .spotlight-text h2 em { font-style: normal; color: var(--amber-500); }
.spotlight-row .spotlight-text p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 50ch;
}
@media (max-width: 900px) {
  .spotlight-row { grid-template-columns: 1fr; }
  .spotlight-row .spotlight-text { padding: 48px 32px; }
}

/* Metric strip — light, restrained */
.metric-strip-light {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.metric-strip-light .cell {
  padding: 56px 32px;
  border-right: 1px solid var(--line);
}
.metric-strip-light .cell:last-child { border-right: none; }
.metric-strip-light .cell .v {
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 1;
}
.metric-strip-light .cell .v .accent { color: var(--amber-500); }
.metric-strip-light .cell .l {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-top: 20px;
  max-width: 24ch;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .metric-strip-light { grid-template-columns: repeat(2, 1fr); }
  .metric-strip-light .cell:nth-child(2) { border-right: none; }
  .metric-strip-light .cell:nth-child(1), .metric-strip-light .cell:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* Coverage / map-style block */
.coverage-block {
  background: var(--ink);
  color: #FFFFFF;
  padding: 100px 0;
}
.coverage-block h2 {
  color: #FFFFFF;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.035em;
  max-width: 18ch;
}
.coverage-block h2 em { font-style: normal; color: var(--amber-500); }
.coverage-block .lead { color: rgba(255, 255, 255, 0.7); margin-top: 24px; max-width: 56ch; }
.coverage-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.coverage-cell {
  padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.coverage-cell:nth-child(3n) { border-right: none; }
.coverage-cell .name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-500);
  font-weight: 600;
}
.coverage-cell .v {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-top: 12px;
  line-height: 1;
}
.coverage-cell .l {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.5;
  max-width: 24ch;
}
@media (max-width: 900px) {
  .coverage-list { grid-template-columns: repeat(2, 1fr); }
  .coverage-cell:nth-child(3n) { border-right: 1px solid rgba(255,255,255,0.15); }
  .coverage-cell:nth-child(2n) { border-right: none; }
}
@media (max-width: 500px) {
  .coverage-list { grid-template-columns: 1fr; }
  .coverage-cell { border-right: none !important; }
}

/* Selected work — large work cards */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 32px;
}
@media (max-width: 800px) { .work-grid { grid-template-columns: 1fr; } }
.work-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.work-card:hover .work-photo img { transform: scale(1.04); }
.work-photo {
  aspect-ratio: 5 / 3;
  overflow: hidden;
  border-radius: 4px;
  background: #F5F5F7;
  position: relative;
}
.work-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}
.work-photo .work-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  padding: 8px 12px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
}
.work-photo .work-metric {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  color: #FFFFFF;
}
.work-photo .work-metric .v {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--amber-500);
}
.work-photo .work-metric .l {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}
.work-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}
.work-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.work-card h3 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.work-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

/* Team spread — wide photo + bio */
.team-spread {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.team-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  background: #F5F5F7;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-text h2 {
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 16ch;
}
.team-text h2 em { font-style: normal; color: var(--amber-500); }
.team-text p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.team-text p + p { margin-top: 16px; }
.team-text .quote-credit {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
}
.team-text .quote-credit span { color: var(--muted); font-weight: 500; }
@media (max-width: 900px) { .team-spread { grid-template-columns: 1fr; gap: 40px; } }

/* CTA band — light */
.cta-band {
  background: var(--ink);
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
}
.cta-band h2 {
  color: #FFFFFF;
  font-size: clamp(36px, 4.6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.035em;
  max-width: 22ch;
  margin: 0 auto;
}
.cta-band h2 em { font-style: normal; color: var(--amber-500); }
.cta-band p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  margin: 24px auto 40px;
  max-width: 56ch;
  line-height: 1.55;
}

/* Light footer */
.footer-light {
  background: #FFFFFF;
  color: var(--ink);
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-light .footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-light .footer-brand .nav-logo { font-size: 28px; color: var(--ink); margin-bottom: 16px; }
.footer-light .footer-brand p { color: var(--muted); font-size: 15px; max-width: 36ch; line-height: 1.6; }
.footer-light .footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--amber-500);
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-light .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-light .footer-col a { color: var(--ink); font-size: 15px; transition: color 0.2s; }
.footer-light .footer-col a:hover { color: var(--amber-500); }
.footer-light .footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 500;
}
@media (max-width: 900px) {
  .footer-light .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 500px) {
  .footer-light .footer-inner { grid-template-columns: 1fr; }
}

/* Calculator — light variant */
.calc.light {
  background: #F5F5F7;
  border: 1px solid var(--line);
  color: var(--ink);
}
.calc.light::before { display: none; }
.calc.light .calc-control label { color: var(--muted); }
.calc.light .calc-control label .v { color: var(--amber-500); }
.calc.light .calc-slider {
  background: rgba(0, 0, 0, 0.08);
}
.calc.light .calc-readout { color: var(--ink); }
.calc.light .calc-readout .small { color: var(--muted); }
.calc.light .calc-target {
  background: #FFFFFF;
  border-color: var(--line);
}
.calc.light .calc-target .lbl { color: var(--muted); }
.calc.light .calc-target .val { color: var(--ink); }
.calc.light .calc-result > div:first-child > div:first-child { color: var(--muted); }

/* Anatomy — light variant */
.anatomy-light .anatomy-tabs { border-left-color: var(--line); }
.anatomy-light .anatomy-tab { color: rgba(29, 29, 31, 0.5); }
.anatomy-light .anatomy-tab:hover { color: var(--ink); }
.anatomy-light .anatomy-tab.active {
  color: var(--ink);
  background: #F5F5F7;
  border-left-color: var(--amber-500);
}
.anatomy-light .anatomy-panel {
  background: #F5F5F7;
  border-color: var(--line);
}
.anatomy-light .anatomy-panel h3 { color: var(--ink); }
.anatomy-light .anatomy-panel .body { color: var(--muted); }
.anatomy-light .anatomy-panel li { color: var(--ink); }
.anatomy-light .anatomy-panel .stage { color: var(--amber-500); }

/* Section nav-style mini header (Tresmares-style number + label) */
.tres-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 64px;
  gap: 40px;
}
.tres-head h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  max-width: 18ch;
}
.tres-head h2 em { font-style: normal; color: var(--amber-500); }
.tres-head .tres-head-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
  flex-shrink: 0;
}
.tres-head .tres-head-meta .num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
}
.tres-head .tres-head-meta .ttl {
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}
@media (max-width: 700px) {
  .tres-head { flex-direction: column; align-items: flex-start; }
  .tres-head .tres-head-meta { text-align: left; }
}

/* Editorial quote block (light) */
.editorial-quote {
  padding: 100px 0;
  background: #FFFFFF;
  text-align: left;
}
.editorial-quote blockquote {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--ink);
  max-width: 22ch;
}
.editorial-quote blockquote em { font-style: normal; color: var(--amber-500); font-weight: 700; }
.editorial-quote cite {
  display: block;
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
}

/* Hide site-wide grain in light theme for crispness */
body.light::before, body.light .scroll-progress { display: none; }
body.light .cursor-dot, body.light .cursor-ring { display: none; }
body.light .floating-cta { display: none; }

/* ============================================
   v5 — ANIMATIONS ON (light mode)
   ============================================ */
body.light [data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
body.light [data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}
body.light [data-reveal-delay="1"] { transition-delay: 0.12s; }
body.light [data-reveal-delay="2"] { transition-delay: 0.22s; }
body.light [data-reveal-delay="3"] { transition-delay: 0.34s; }
body.light [data-reveal-delay="4"] { transition-delay: 0.46s; }

body.light .image-card { transition: transform 0.5s var(--ease-out); }
body.light .image-card:hover { transform: translateY(-8px); }
body.light .image-card-photo img { transition: transform 0.9s var(--ease-out); }
body.light .image-card:hover .image-card-photo img { transform: scale(1.05); }
body.light .work-card { transition: transform 0.5s var(--ease-out); }
body.light .work-card:hover { transform: translateY(-8px); }
body.light .work-card:hover .work-photo img { transform: scale(1.05); }
body.light .btn { transition: transform 0.3s var(--ease-out), box-shadow 0.3s, background 0.3s, color 0.3s, border-color 0.3s; }
body.light .btn:hover { transform: translateY(-2px); }
body.light .nav-cta { transition: transform 0.3s var(--ease-out), box-shadow 0.3s; }
body.light .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px var(--amber-glow); }
body.light .coverage-cell { transition: background 0.3s; }
body.light .coverage-cell[href]:hover { background: rgba(255,255,255,0.04); }
body.light .insight-card { transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.3s; }
body.light .insight-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.06); }
body.light .principle-cell { transition: background 0.3s; }
body.light .principle-cell:hover { background: #FAFAFA; }
body.light .step-cell { transition: background 0.3s; }
body.light .step-cell:hover { background: #FAFAFA; }
body.light .nav-links a { transition: background 0.25s, color 0.25s; }

/* ============================================
   v6 — SHAPES + WAVE DIVIDERS
   ============================================ */

/* Wave / shape divider — sits between sections */
.divider-svg {
  display: block;
  width: 100%;
  line-height: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}
.divider-svg svg {
  display: block;
  width: 100%;
  height: 80px;
}
.divider-svg.h-120 svg { height: 120px; }
.divider-svg.h-60 svg { height: 60px; }
.divider-svg.flip svg { transform: scaleY(-1); }

/* Decorative shape primitives */
.shape-wrap { position: relative; }
.has-shapes { position: relative; overflow: hidden; }

.shape-ring {
  position: absolute;
  border: 1px solid var(--amber-500);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.shape-ring.dashed { border-style: dashed; }
.shape-ring.thick { border-width: 2px; }
.shape-ring.dark { border-color: var(--ink); opacity: 0.08; }

.shape-blob {
  position: absolute;
  border-radius: 50%;
  background: var(--amber-glow);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.shape-dots {
  position: absolute;
  background-image: radial-gradient(circle, var(--ink) 1px, transparent 1.5px);
  background-size: 16px 16px;
  pointer-events: none;
  opacity: 0.08;
  z-index: 1;
}

.shape-dots.amber {
  background-image: radial-gradient(circle, var(--amber-500) 1px, transparent 1.5px);
  opacity: 0.25;
}

.shape-slash {
  position: absolute;
  width: 200px; height: 2px;
  background: var(--amber-500);
  transform: rotate(-25deg);
  opacity: 0.7;
  pointer-events: none;
}

.bg-numeral {
  position: absolute;
  font-size: clamp(220px, 30vw, 600px);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: rgba(229, 52, 31, 0.05);
  pointer-events: none;
  z-index: 0;
  user-select: none;
  line-height: 0.85;
  font-style: italic;
}

.bg-numeral.dark { color: rgba(0,0,0,0.04); }
.bg-numeral.outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(229, 52, 31, 0.12);
}

/* Floating shape animation */
@keyframes float-soft {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(6deg); }
}
.shape-anim { animation: float-soft 8s ease-in-out infinite; }
.shape-anim.slow { animation-duration: 14s; }
.shape-anim.delay { animation-delay: 2s; }
.shape-anim.delay-2 { animation-delay: 4s; }

/* Slow rotate */
@keyframes rot-slow { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.shape-rotate { animation: rot-slow 60s linear infinite; }
.shape-rotate.reverse { animation-direction: reverse; }

/* Pulse ring */
@keyframes ring-pulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}
.shape-pulse { animation: ring-pulse 3s ease-out infinite; }

/* Marquee (light, subtle) */
.marquee-light {
  background: var(--ink);
  color: #FFF;
  padding: 32px 0;
  overflow: hidden;
  position: relative;
}
.marquee-light-track {
  display: flex;
  gap: 80px;
  animation: scroll-left 50s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-light-track .item {
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: rgba(255,255,255,0.85);
  display: inline-flex;
  align-items: center;
  gap: 24px;
}
.marquee-light-track .item .accent { color: var(--amber-500); }
.marquee-light-track .star {
  width: 20px; height: 20px;
  color: var(--amber-500);
  flex-shrink: 0;
}

/* Subtle parallax helper applied by JS */
[data-parallax] { will-change: transform; }

/* Page hero — common to all inner pages */
.page-hero {
  background: #FFFFFF;
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-hero .page-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.page-hero h1 {
  font-size: clamp(40px, 5.4vw, 84px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--ink);
  margin: 24px 0;
}
.page-hero h1 em { font-style: normal; color: var(--amber-500); }
.page-hero p.lead {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
  max-width: 56ch;
}
.page-hero .stat-cluster {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.page-hero .stat {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.page-hero .stat .v {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--amber-500);
  line-height: 1;
}
.page-hero .stat .l {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-top: 10px;
  font-weight: 600;
}
@media (max-width: 900px) {
  .page-hero { padding: 140px 0 60px; }
  .page-hero .page-hero-inner { grid-template-columns: 1fr; }
}

/* Detail row — for services pages */
.detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}
.detail-row.flip > div:first-child { order: 2; }
.detail-row .detail-img {
  aspect-ratio: 4 / 3;
  background: #F5F5F7;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.detail-row .detail-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-row .detail-num {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--amber-500);
  font-weight: 700;
}
.detail-row h2 {
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 16px 0 24px;
  color: var(--ink);
  max-width: 18ch;
}
.detail-row h2 em { font-style: normal; color: var(--amber-500); }
.detail-row .body { color: var(--muted); font-size: 17px; line-height: 1.65; max-width: 56ch; }
.detail-row .checklist {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.detail-row .checklist li {
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: var(--ink);
}
.detail-row .checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber-500);
  font-weight: 700;
}
@media (max-width: 900px) {
  .detail-row { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
  .detail-row.flip > div:first-child { order: 0; }
}

/* Filter chips for case-studies */
.chip-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.chip-bar button {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
}
.chip-bar button:hover { border-color: var(--ink); }
.chip-bar button.active {
  background: var(--ink);
  color: #FFFFFF;
  border-color: var(--ink);
}

/* Team cards (about page) */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.team-card .photo {
  aspect-ratio: 3 / 4;
  background: #F5F5F7;
  overflow: hidden;
  border-radius: 4px;
}
.team-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #F5F5F7;
}
.team-card .role {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber-500);
  font-weight: 600;
}
.team-card h3 { font-size: 22px; letter-spacing: -0.02em; font-weight: 700; color: var(--ink); }
.team-card p { color: var(--muted); font-size: 14px; line-height: 1.55; }
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr; } }

/* Contact layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-form-wrap {
  background: #F5F5F7;
  padding: 48px;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info-block .label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber-500);
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-info-block .value {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.contact-info-block .value a:hover { color: var(--amber-500); }
.contact-info-block p { color: var(--muted); font-size: 15px; line-height: 1.55; margin-top: 6px; }
.form-success {
  display: none;
  padding: 40px;
  text-align: center;
}
.form-success.active { display: block; }
.form-success h3 { font-size: 28px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.form-success p { color: var(--muted); }

/* ============================================
   v7 — DRAMATIC ANIMATION LAYER
   ============================================ */

/* Cursor follower (subtle, premium) */
.cursor-follower {
  position: fixed;
  top: 0; left: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--amber-500);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s, opacity 0.3s;
  will-change: transform;
  opacity: 0;
}
.cursor-follower.ready { opacity: 0.85; }
.cursor-follower.big { width: 60px; height: 60px; background: var(--amber-500); }
@media (hover: none) { .cursor-follower { display: none; } }

/* Image mask reveal — simplified: just a soft fade-in for images, no overlay */
.img-mask {
  position: relative;
  overflow: hidden;
}
.img-mask::after { display: none !important; content: none; }
.img-mask img {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.9s var(--ease-out), transform 1.2s var(--ease-out);
}
.img-mask.revealed img {
  opacity: 1;
  transform: scale(1);
}

/* Defensive: nuke any leftover decorative giant numerals */
.bg-numeral { display: none !important; }

/* Text split — words slide up from below with stagger */
.split-text {
  display: block;
  overflow: hidden;
  perspective: 800px;
}
.split-text .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  line-height: inherit;
  padding-right: 0.25em;
}
.split-text .word-inner {
  display: inline-block;
  transform: translateY(110%) rotate(4deg);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s;
  will-change: transform;
}
.split-text.revealed .word-inner {
  transform: translateY(0) rotate(0);
  opacity: 1;
}

/* Stagger delay for words (set inline via JS for arbitrary counts) */
.split-text .word:nth-child(1) .word-inner { transition-delay: 0.05s; }
.split-text .word:nth-child(2) .word-inner { transition-delay: 0.12s; }
.split-text .word:nth-child(3) .word-inner { transition-delay: 0.19s; }
.split-text .word:nth-child(4) .word-inner { transition-delay: 0.26s; }
.split-text .word:nth-child(5) .word-inner { transition-delay: 0.33s; }
.split-text .word:nth-child(6) .word-inner { transition-delay: 0.40s; }
.split-text .word:nth-child(7) .word-inner { transition-delay: 0.47s; }
.split-text .word:nth-child(8) .word-inner { transition-delay: 0.54s; }
.split-text .word:nth-child(9) .word-inner { transition-delay: 0.61s; }
.split-text .word:nth-child(10) .word-inner { transition-delay: 0.68s; }
.split-text .word:nth-child(11) .word-inner { transition-delay: 0.75s; }
.split-text .word:nth-child(12) .word-inner { transition-delay: 0.82s; }
.split-text .word:nth-child(13) .word-inner { transition-delay: 0.89s; }
.split-text .word:nth-child(14) .word-inner { transition-delay: 0.96s; }
.split-text .word:nth-child(15) .word-inner { transition-delay: 1.03s; }
.split-text .word:nth-child(16) .word-inner { transition-delay: 1.10s; }
.split-text .word:nth-child(17) .word-inner { transition-delay: 1.17s; }
.split-text .word:nth-child(18) .word-inner { transition-delay: 1.24s; }
.split-text .word:nth-child(19) .word-inner { transition-delay: 1.31s; }
.split-text .word:nth-child(20) .word-inner { transition-delay: 1.38s; }

/* Parallax helpers */
.parallax-img { will-change: transform; }

/* Stronger reveal animation — replaces v5 settings */
body.light [data-reveal] {
  opacity: 0;
  transform: translateY(60px) scale(0.97);
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1), transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
body.light [data-reveal].in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Number counter pop */
.number-pop {
  display: inline-block;
  transform: scale(0.6);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s;
}
.number-pop.in { transform: scale(1); opacity: 1; }

/* Stronger hover lift on cards */
body.light .image-card { transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1); }
body.light .image-card:hover { transform: translateY(-14px); }
body.light .work-card { transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1); }
body.light .work-card:hover { transform: translateY(-14px); }
body.light .image-card-photo img,
body.light .work-photo img { transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1); }
body.light .image-card:hover .image-card-photo img,
body.light .work-card:hover .work-photo img { transform: scale(1.08); }

/* Card photo dark overlay on hover */
.image-card-photo::before,
.work-photo .work-hover-tint {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(229, 52, 31, 0);
  z-index: 1;
  transition: background 0.5s var(--ease-out);
  pointer-events: none;
}
body.light .image-card:hover .image-card-photo::before { background: rgba(229, 52, 31, 0.08); }

/* CTA link arrow draw */
.image-card-arrow,
.read,
.btn-outline,
.btn-primary,
.work-meta + h3 {
  position: relative;
}
.image-card-arrow .arrow,
.btn .arrow {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.image-card:hover .image-card-arrow .arrow,
.btn:hover .arrow { transform: translateX(8px); }

/* Hover scale on principle / step cells */
body.light .principle-cell,
body.light .step-cell,
body.light .compare-col,
body.light .insight-card {
  transition: background 0.4s var(--ease-out), border-color 0.4s, transform 0.4s var(--ease-out);
}
body.light .principle-cell:hover,
body.light .step-cell:hover,
body.light .insight-card:hover {
  background: #FAFAFA;
  transform: translateY(-4px);
}

/* Section reveal — section-light gets a subtle fade-up on first appearance */
.section-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.section-reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Letter-by-letter (for small accents like eyebrows) */
.letter-rise {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.letter-rise span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.letter-rise.in span { transform: translateY(0); }

/* Sticky scroll badge that follows section */
.sticky-track {
  position: sticky;
  top: 120px;
}

/* Marquee mini — between sections */
.marquee-mini {
  background: #F5F5F7;
  padding: 24px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee-mini-track {
  display: flex;
  gap: 48px;
  animation: scroll-left 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-mini-track .item {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  text-transform: uppercase;
}
.marquee-mini-track .item .ac { color: var(--amber-500); }
.marquee-mini-track .dot {
  width: 6px; height: 6px;
  background: var(--amber-500);
  border-radius: 50%;
}

/* ============================================
   v8 — STAGGER GRIDS · HORIZONTAL SCROLL · DRAW
   ============================================ */

/* Stagger child reveal — for grids */
body.light .stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
body.light .stagger.in > *:nth-child(1)  { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
body.light .stagger.in > *:nth-child(2)  { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
body.light .stagger.in > *:nth-child(3)  { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
body.light .stagger.in > *:nth-child(4)  { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
body.light .stagger.in > *:nth-child(5)  { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }
body.light .stagger.in > *:nth-child(6)  { opacity: 1; transform: translateY(0); transition-delay: 0.55s; }
body.light .stagger.in > *:nth-child(7)  { opacity: 1; transform: translateY(0); transition-delay: 0.65s; }
body.light .stagger.in > *:nth-child(8)  { opacity: 1; transform: translateY(0); transition-delay: 0.75s; }
body.light .stagger.in > *:nth-child(n+9){ opacity: 1; transform: translateY(0); transition-delay: 0.85s; }

/* Horizontal-scroll showcase intro — sits ABOVE the pinned section */
.hscroll-intro {
  background: var(--ink);
  color: #FFFFFF;
  padding: 100px 0 40px;
}
.hscroll-intro .hscroll-intro-head .eyebrow {
  color: var(--amber-500);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
}
.hscroll-intro .hscroll-intro-head h2 {
  color: #FFFFFF;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: 16px;
  max-width: 22ch;
  line-height: 1.1;
}
.hscroll-intro .hscroll-intro-head h2 em {
  color: var(--amber-500);
  font-style: normal;
}

/* Horizontal-scroll showcase (sticky pin → translate sideways with scroll) */
.hscroll-pin {
  position: relative;
  background: var(--ink);
  color: #FFFFFF;
  /* NO overflow: hidden here — it breaks position: sticky on the inner */
}
.hscroll-pin-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 40px;
}
.hscroll-pin-stage {
  display: flex;
  gap: 32px;
  padding: 0 60px;
  will-change: transform;
  flex: 1;
  min-height: 0;
  align-items: center;
}
.hscroll-pin-card {
  flex: 0 0 auto;
  width: 480px;
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.3s, transform 0.4s var(--ease-out);
}
.hscroll-pin-card:hover { border-color: var(--amber-500); transform: translateY(-6px); }
.hscroll-pin-card .ix {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--amber-500);
  font-weight: 700;
}
.hscroll-pin-card .ttl {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  line-height: 1.1;
}
.hscroll-pin-card .photo {
  aspect-ratio: 5/3;
  background: #2C2C2E;
  border-radius: 8px;
  overflow: hidden;
}
.hscroll-pin-card .photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hscroll-pin-card .metric {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--amber-500);
  line-height: 1;
  margin-top: auto;
}
.hscroll-pin-card .metric-l {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  font-weight: 600;
}
.hscroll-pin-card .copy {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
}
.hscroll-pin-head {
  padding: 110px 60px 20px;
  flex-shrink: 0;
  z-index: 5;
  position: relative;
}
.hscroll-pin-head .eyebrow {
  color: var(--amber-500);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
}
.hscroll-pin .hscroll-pin-head h2 {
  color: #FFFFFF !important;
  font-size: clamp(22px, 2.4vw, 32px) !important;
  font-weight: 700 !important;
  letter-spacing: -0.022em !important;
  margin-top: 10px !important;
  max-width: 32ch !important;
  line-height: 1.15 !important;
}
.hscroll-pin-head h2 em { color: var(--amber-500); font-style: normal; }
.hscroll-progress {
  position: relative;
  margin: 24px 60px 40px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}
.hscroll-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--amber-500);
  transition: width 0.1s linear;
}
@media (max-width: 800px) {
  .hscroll-pin { display: none; }
}

/* SVG wave draw animation */
.divider-svg path { stroke-dasharray: 3000; stroke-dashoffset: 3000; }
.divider-svg.drawn path { stroke-dashoffset: 0; transition: stroke-dashoffset 1.6s cubic-bezier(0.65, 0, 0.35, 1); }
/* But waves are filled, not stroked — so the trick is to add invisible stroke that draws */

/* Bigger number pop — counters scale up with bouncy ease */
body.light [data-counter] {
  display: inline-block;
  transition: transform 0.4s var(--ease-out);
}
body.light [data-counter].counted {
  animation: number-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes number-pop {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Pull strong eyebrow stagger reveal */
body.light .eyebrow-light {
  position: relative;
}
body.light .eyebrow-light::before {
  width: 0;
  transition: width 0.7s 0.2s var(--ease-out);
}
body.light .eyebrow-light.in::before { width: 24px; }

/* Hover effect on metric cells — number lifts and accent line */
body.light .metric-strip-light .cell {
  transition: background 0.4s var(--ease-out);
  position: relative;
}
body.light .metric-strip-light .cell::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--amber-500);
  transition: width 0.5s var(--ease-out);
}
body.light .metric-strip-light .cell:hover { background: #FAFAFA; }
body.light .metric-strip-light .cell:hover::before { width: 100%; }
body.light .metric-strip-light .cell .v {
  transition: transform 0.4s var(--ease-out);
}
body.light .metric-strip-light .cell:hover .v { transform: translateY(-4px); }

/* Coverage cell row line indicator */
body.light .coverage-cell {
  transition: background 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
body.light .coverage-cell[href]::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 2px;
  background: var(--amber-500);
  transition: width 0.5s var(--ease-out);
}
body.light .coverage-cell[href]:hover::after { width: 100%; }

/* Floating shape orbits — gentle */
@keyframes orbit-1 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(20px, -16px); }
  50% { transform: translate(0, -28px); }
  75% { transform: translate(-20px, -12px); }
}
.shape-ring.shape-anim { animation: orbit-1 12s ease-in-out infinite; }
.shape-ring.shape-anim.slow { animation-duration: 18s; }
.shape-ring.shape-anim.delay { animation-delay: 3s; }

/* Image hover ZOOM stronger (overrides earlier) */
body.light .image-card:hover .image-card-photo img,
body.light .work-card:hover .work-photo img,
body.light .team-card:hover .photo img { transform: scale(1.10); }

/* Stagger headers section number */
.section-num-anim {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-500);
  font-weight: 700;
  overflow: hidden;
}

/* Vertical accent line that grows */
.line-grow {
  display: inline-block;
  width: 0;
  height: 1px;
  background: var(--amber-500);
  transition: width 0.6s var(--ease-out);
}
.line-grow.in { width: 32px; }

/* ============================================
   v9 — CINEMATIC LAYER
   ============================================ */

/* Cinematic page loader — covers screen on load, lifts in two halves */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.loader-half {
  position: fixed;
  left: 0; right: 0;
  height: 50%;
  background: var(--ink);
  z-index: 10000;
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.18, 1);
}
.loader-half.top { top: 0; transform: translateY(0); }
.loader-half.bot { bottom: 0; transform: translateY(0); }
.loader.done .loader-half.top { transform: translateY(-100%); }
.loader.done .loader-half.bot { transform: translateY(100%); }
.loader-mark {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10001;
  font-family: var(--sans);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  opacity: 0;
  transition: opacity 0.4s, transform 0.6s var(--ease-out);
}
.loader-mark .dot { color: var(--amber-500); }
.loader-mark.in { opacity: 1; }
.loader.done .loader-mark { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
.loader-progress {
  position: fixed;
  bottom: 60px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 1px;
  background: rgba(255,255,255,0.2);
  z-index: 10002;
}
.loader-progress .bar {
  width: 0%;
  height: 100%;
  background: var(--amber-500);
  transition: width 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}
.loader.done .loader-progress { opacity: 0; transition: opacity 0.3s; }

/* Cursor gradient blob — for dark sections */
.gradient-blob {
  position: fixed;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 52, 31, 0.35) 0%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s;
  will-change: transform;
}
.gradient-blob.active { opacity: 1; }

/* Floating particles in dark sections */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--amber-500);
  opacity: 0.4;
  animation: particle-drift linear infinite;
}
@keyframes particle-drift {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-120vh) translateX(40px); opacity: 0; }
}

/* Slot machine counter */
.slot {
  display: inline-flex;
  vertical-align: baseline;
  overflow: hidden;
  line-height: 1;
}
.slot-digit {
  display: inline-block;
  position: relative;
  width: 0.6em;
  height: 1em;
  overflow: hidden;
  text-align: center;
}
.slot-digit .reel {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  flex-direction: column;
  transform: translateY(0);
  transition: transform 1.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.slot-digit .reel span {
  display: block;
  height: 1em;
  line-height: 1;
}

/* Sticky storyteller section */
.story {
  position: relative;
  background: var(--ink);
  color: #FFFFFF;
  overflow: visible;
}
.story-pin {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}
.story-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 0 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.story-text-stack {
  position: relative;
  min-height: 420px;
}
.story-chapter {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.story-chapter.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.story-chapter .ch-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-500);
  font-weight: 700;
  display: block;
  margin-bottom: 16px;
}
.story-chapter h3 {
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: #FFFFFF;
  line-height: 1.05;
  max-width: 18ch;
}
.story-chapter h3 em { font-style: normal; color: var(--amber-500); }
.story-chapter p {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  line-height: 1.6;
  margin-top: 20px;
  max-width: 50ch;
}
.story-visual {
  position: relative;
  height: 60vh;
}
.story-visual-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  border-radius: 8px;
  overflow: hidden;
  background: #2C2C2E;
}
.story-visual-frame.active {
  opacity: 1;
  transform: scale(1);
}
.story-visual-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-rail {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 3;
}
.story-rail .pip {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.3s, transform 0.3s;
}
.story-rail .pip.active { background: var(--amber-500); transform: scale(1.5); }
.story-progress {
  position: absolute;
  bottom: 40px; left: 60px; right: 60px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  z-index: 3;
}
.story-progress .bar {
  height: 100%; width: 0%;
  background: var(--amber-500);
  transition: width 0.2s linear;
}
@media (max-width: 900px) {
  .story-inner { grid-template-columns: 1fr; padding: 0 32px; gap: 32px; }
  .story-text-stack { height: 240px; }
  .story-visual { height: 40vh; }
  .story-chapter h3 { font-size: 32px; }
  .story-rail { display: none; }
}

/* Magnetic everything — visual cue applied via JS */
.magnetic { will-change: transform; }

/* Section number that scales up with scroll */
.scale-on-scroll {
  display: inline-block;
  transition: transform 0.2s linear;
  will-change: transform;
}

/* Page transition overlay */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 9998;
  transform: scaleY(0);
  transform-origin: top;
  pointer-events: none;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.18, 1);
}
.page-transition.in { transform: scaleY(1); transform-origin: top; }
.page-transition.out { transform: scaleY(0); transform-origin: bottom; }

/* Vertical lander — featured stat */
.vert-feature {
  background: var(--ink);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.vert-feature h2 { color: #fff; font-size: clamp(40px, 5vw, 80px); font-weight: 700; letter-spacing: -0.035em; max-width: 18ch; }
.vert-feature h2 em { color: var(--amber-500); font-style: normal; }
.vert-feature p.lead { color: rgba(255,255,255,0.7); margin-top: 24px; max-width: 56ch; }
.vert-feature .featured-stat {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.vert-feature .big-stat {
  font-size: clamp(80px, 12vw, 200px);
  font-weight: 800;
  letter-spacing: -0.06em;
  color: var(--amber-500);
  line-height: 0.95;
}
.vert-feature .big-stat-l {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7);
  margin-top: 24px;
  font-weight: 600;
}
@media (max-width: 900px) { .vert-feature .featured-stat { grid-template-columns: 1fr; } }

/* ============================================
   v5 — NEW SECTIONS
   ============================================ */

/* Tools / platforms strip — dark band */
.tools-strip {
  padding: 56px 0;
  background: var(--ink);
  color: #FFFFFF;
}
.tools-strip-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: center;
}
.tools-strip .tools-label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  line-height: 1.5;
}
.tools-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 56px;
  align-items: center;
}
.tool-logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: rgba(255,255,255,0.85);
}
@media (max-width: 700px) {
  .tools-strip-inner { grid-template-columns: 1fr; gap: 24px; }
  .tools-list { gap: 24px 36px; }
}

/* Principles — 3 cards */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.principle-cell {
  background: #FFFFFF;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.principle-cell .num {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--amber-500);
  line-height: 1;
}
.principle-cell h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ink);
}
.principle-cell p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .principles-grid { grid-template-columns: 1fr; }
  .principle-cell { padding: 36px 28px; }
}

/* Comparison — old way vs ours */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.compare-col {
  background: #FFFFFF;
  padding: 48px;
}
.compare-col.theirs { background: #F5F5F7; }
.compare-col .col-title {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 12px;
}
.compare-col.ours .col-title { color: var(--amber-500); }
.compare-col h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 32px;
  line-height: 1.3;
}
.compare-col ul { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.compare-col li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  padding-left: 28px;
  position: relative;
}
.compare-col.theirs li { color: var(--muted); }
.compare-col li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--sans);
}
.compare-col.theirs li::before {
  content: '×';
  background: rgba(0,0,0,0.08);
  color: var(--muted);
}
.compare-col.ours li::before {
  content: '✓';
  background: var(--amber-500);
  color: #FFFFFF;
}
@media (max-width: 800px) {
  .compare { grid-template-columns: 1fr; }
  .compare-col { padding: 36px 28px; }
}

/* First call — 4 step bullets */
.steps-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.step-cell {
  padding: 48px 32px;
  border-right: 1px solid var(--line);
}
.step-cell:last-child { border-right: none; }
.step-cell .step-num {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--amber-500);
  line-height: 1;
}
.step-cell h4 {
  font-size: 18px;
  letter-spacing: -0.015em;
  font-weight: 700;
  color: var(--ink);
  margin: 24px 0 12px;
}
.step-cell p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .steps-list { grid-template-columns: 1fr 1fr; }
  .step-cell:nth-child(2) { border-right: none; }
  .step-cell:nth-child(1), .step-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 500px) {
  .steps-list { grid-template-columns: 1fr; }
  .step-cell { border-right: none !important; border-bottom: 1px solid var(--line); }
  .step-cell:last-child { border-bottom: none; }
}

/* FAQ accordion */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-family: var(--sans);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--amber-500); }
.faq-q .plus {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.faq-item.open .faq-q .plus { background: var(--amber-500); color: #FFFFFF; border-color: var(--amber-500); }
.faq-q .plus::before { content: '+'; }
.faq-item.open .faq-q .plus::before { content: '–'; }
.faq-a {
  display: none;
  padding: 0 60px 32px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 70ch;
}
.faq-item.open .faq-a { display: block; }
@media (max-width: 600px) { .faq-q { font-size: 16px; } .faq-a { padding-right: 0; } }

/* Insights / preview cards */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.insight-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #FFFFFF;
  transition: border-color 0.2s;
}
.insight-card:hover { border-color: var(--ink); }
.insight-card .meta {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  font-weight: 600;
}
.insight-card h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}
.insight-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.insight-card .read {
  margin-top: auto;
  padding-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
@media (max-width: 900px) { .insights-grid { grid-template-columns: 1fr; } }


