/* ── TOKENS ── */
:root {
  --ivory:     #F8F5F0;
  --warm-white:#FDFCFA;
  --cream:     #EEE8DE;
  --sand:      #D9CFBE;
  --champagne: #C4AA88;
  --gold:      #A8895A;
  --gold-light:rgba(168,137,90,0.12);
  --warm-mid:  #7A6A56;
  --stone:     #9A8E82;
  --ink:       #1E1A16;
  --ink-soft:  #2E2820;
  --rule:      rgba(168,137,90,0.2);

  --display:   'DM Serif Display', Georgia, serif;
  --body:      'DM Sans', system-ui, sans-serif;

  /* Spacing scale */
  --s1: 8px; --s2: 16px; --s3: 24px; --s4: 32px;
  --s5: 48px; --s6: 64px; --s7: 96px; --s8: 128px;
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--body);
  background: var(--warm-white);
  color: var(--ink);
  overflow-x: hidden;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--champagne); border-radius: 2px; }

/* ── CURSOR ── */
* { cursor: none !important; }
#cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .25s ease, height .25s ease, background .25s ease, opacity .2s;
}
#cursor.expand { width: 36px; height: 36px; background: rgba(168,137,90,0.15); }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px;
  background: rgba(253,252,250,0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--rule);
  transition: height .4s ease, background .4s ease;
}
nav.scrolled { height: 58px; background: rgba(253,252,250,0.98); }
.mobile-menu-wrapper { display: contents; }
.nav-logo { height: 30px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-links a {
  font-family: var(--body); font-size: 11px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--warm-mid); transition: color .25s;
  position: relative;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0; right:0;
  height:1px; background:var(--gold); transform:scaleX(0);
  transform-origin: left; transition: transform .3s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  font-family: var(--body); font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--warm-white); background: var(--ink);
  border: none; padding: 11px 28px;
  transition: background .3s ease; cursor: none;
}
.nav-cta:hover { background: var(--gold); }

.hamburger { display: none; background: none; border: none; color: var(--ink); cursor: none; padding: 4px; }
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .hamburger { display: block; }
  
  .mobile-menu-wrapper {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--warm-white); padding: 0 24px; height: 0; overflow: hidden;
    border-top: 1px solid transparent; display: flex; flex-direction: column;
    transition: height 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  }
  nav.nav-open .mobile-menu-wrapper {
    height: auto; padding: 24px; border-top-color: var(--rule); padding-bottom: 32px;
  }
  /* Remove flex direction and hiding logic since we want them vertical inside wrapper anyway */
  .nav-links { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
  .nav-cta { display: block; width: 100%; text-align: center; padding: 15px; }
}/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--ink);
  display: grid;
  grid-template-rows: 1fr auto;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}
.hero-coral-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-coral-bg svg {
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  width: 55vw; opacity: 0.035;
}
.hero-grain {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5; mix-blend-mode: overlay;
}
.hero-body {
  display: flex; align-items: center;
  max-width: 1280px; margin: 0 auto;
  padding: 80px 52px 60px;
  width: 100%; gap: 80px;
}
.hero-left { flex: 0 0 auto; max-width: 580px; }
.hero-right { flex: 1; display: flex; flex-direction: column; gap: 20px; align-items: flex-end; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--champagne);
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp .8s .1s ease forwards;
}
.hero-eyebrow::before { content:''; display:block; width:32px; height:1px; background:var(--champagne); }

.hero h1 {
  font-family: var(--display);
  font-size: clamp(48px, 5.5vw, 84px);
  font-weight: 500; line-height: 1.08;
  color: var(--warm-white);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp .9s .2s ease forwards;
}
.hero h1 em {
  font-style: italic; font-weight: 400;
  color: var(--champagne);
}

.hero-sub {
  font-size: 16px; font-weight: 300; line-height: 1.75;
  color: rgba(253,252,250,0.6);
  max-width: 480px; margin-bottom: 44px;
  opacity: 0; animation: fadeUp .9s .35s ease forwards;
}

.hero-actions {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .9s .5s ease forwards;
}
.btn-primary {
  font-family: var(--body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); background: var(--champagne);
  border: none; padding: 15px 36px; cursor: none;
  transition: background .3s ease; display: inline-block;
}
.btn-primary:hover { background: var(--sand); }
.btn-secondary {
  font-family: var(--body); font-size: 12px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(253,252,250,0.55);
  border: 1px solid rgba(253,252,250,0.18);
  padding: 15px 32px; cursor: none;
  transition: all .3s ease; display: inline-block;
}
.btn-secondary:hover { color: var(--warm-white); border-color: rgba(253,252,250,0.45); }

/* Hero right — stat pills */
.hero-pill {
  background: rgba(253,252,250,0.05);
  border: 1px solid rgba(168,137,90,0.25);
  padding: 20px 28px; min-width: 200px; text-align: right;
  opacity: 0; animation: fadeLeft .9s ease forwards;
}
.hero-pill:nth-child(1) { animation-delay: .4s; }
.hero-pill:nth-child(2) { animation-delay: .55s; }
.hero-pill:nth-child(3) { animation-delay: .7s; }
.hero-pill:nth-child(4) { animation-delay: .85s; }
.hero-pill-num {
  font-family: var(--display); font-size: 36px; font-weight: 500;
  color: var(--warm-white); line-height: 1; letter-spacing: -0.02em;
}
.hero-pill-num span { color: var(--champagne); font-size: 0.6em; vertical-align: super; }
.hero-pill-label {
  font-size: 10px; font-weight: 400; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--stone); margin-top: 5px;
}

.hero-scroll-line {
  max-width: 1280px; margin: 0 auto; padding: 0 52px 40px;
  display: flex; align-items: center; gap: 20px;
  opacity: 0; animation: fadeUp .8s 1s ease forwards;
}
.hero-scroll-line::before { content:''; flex:1; height:1px; background: rgba(168,137,90,0.2); }
.hero-scroll-line::after { content:''; width:60px; height:1px; background: rgba(168,137,90,0.2); }
.hero-scroll-label {
  font-size: 9.5px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--stone);
}

@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeLeft { from { opacity:0; transform:translateX(20px); } to { opacity:1; transform:translateX(0); } }

/* ══════════════════════════════
   SHARED LAYOUT
══════════════════════════════ */
.section { max-width: 1280px; margin: 0 auto; padding: var(--s8) 52px; }
.section-full { padding: var(--s8) 0; }
.section-full .inner { max-width: 1280px; margin: 0 auto; padding: 0 52px; }

/* Section labels */
.eyebrow {
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
}
.eyebrow::before { content:''; display:block; width:28px; height:1px; background:var(--gold); }

/* Display headings */
h2.headline {
  font-family: var(--display);
  font-size: clamp(32px, 3.5vw, 54px);
  font-weight: 500; line-height: 1.15;
  color: var(--ink); letter-spacing: -0.02em;
  margin-bottom: 20px;
}
h2.headline em { font-style: italic; font-weight: 400; color: var(--warm-mid); }
h2.headline-light { color: var(--warm-white); }
h2.headline-light em { color: var(--champagne); }

/* Section intro text */
.intro-text {
  font-size: 17px; font-weight: 300; line-height: 1.75;
  color: var(--warm-mid); max-width: 560px;
}
.intro-text strong { font-weight: 500; color: var(--ink); }

/* Gold rule */
.gold-rule { width: 40px; height: 1px; background: var(--gold); margin: 20px 0 32px; }
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn-dark {
  font-family: var(--body); font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--warm-white); background: var(--ink);
  border: none; padding: 14px 36px; cursor: none;
  transition: background .3s ease; display: inline-block;
}
.btn-dark:hover { background: var(--gold); }
.btn-outline {
  font-family: var(--body); font-size: 11.5px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); background: transparent;
  border: 1px solid rgba(30,26,22,0.25);
  padding: 14px 32px; cursor: none;
  transition: border-color .3s ease, color .3s ease; display: inline-block;
}
.btn-outline:hover { border-color: var(--ink); }
.btn-gold {
  font-family: var(--body); font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); background: var(--champagne);
  border: none; padding: 14px 36px; cursor: none;
  transition: background .3s ease; display: inline-block;
}
.btn-gold:hover { background: var(--sand); }

/* Scroll reveal */
.reveal { opacity:0; transform:translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.d1 { transition-delay:.1s; } .d2 { transition-delay:.2s; } .d3 { transition-delay:.3s; } .d4 { transition-delay:.4s; }

/* ══════════════════════════════
   MANIFESTO (PHILOSOPHY)
══════════════════════════════ */
.manifesto { background: var(--warm-white); border-bottom: 1px solid var(--rule); }
.manifesto-grid {
  display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: start;
}
.manifesto-pull {
  font-family: var(--display);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400; line-height: 1.35;
  color: var(--ink); letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.manifesto-pull em { font-style: italic; color: var(--gold); }
.manifesto-body {
  font-size: 15px; font-weight: 300; line-height: 1.8;
  color: var(--warm-mid); margin-bottom: 16px;
}
.philosophy-quote {
  font-family: var(--display); font-size: 15px; font-style: italic;
  color: var(--gold); line-height: 1.6; margin-top: 28px;
  padding-left: 20px; border-left: 2px solid var(--gold);
}

/* Manifesto right — numbered list, scannable */
.manifesto-items { display: flex; flex-direction: column; gap: 0; }
.manifesto-item {
  display: grid; grid-template-columns: 40px 1fr;
  gap: 16px; padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.manifesto-item:first-child { border-top: 1px solid var(--rule); }
.m-num {
  font-family: var(--display); font-size: 13px; font-style: italic;
  color: var(--champagne); margin-top: 2px;
}
.m-title { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 4px; letter-spacing: 0.01em; }
.m-desc { font-size: 13.5px; font-weight: 300; color: var(--warm-mid); line-height: 1.65; }

/* ══════════════════════════════
   STATEMENT BAND
══════════════════════════════ */
.statement-band {
  background: var(--ink);
  padding: 72px 52px;
  text-align: center;
  position: relative; overflow: hidden;
}
.statement-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(168,137,90,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(168,137,90,0.06) 0%, transparent 60%);
}
.statement-text {
  font-family: var(--display);
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 400; line-height: 1.35;
  color: var(--warm-white);
  max-width: 780px; margin: 0 auto;
  position: relative; z-index: 1;
}
.statement-text em { font-style: italic; color: var(--champagne); }
.statement-sub {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--stone); margin-top: 20px; position: relative; z-index: 1;
}

/* ══════════════════════════════
   PAIN CARDS
══════════════════════════════ */
.pain-section { background: var(--cream); }
.pain-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; margin-top: 52px;
}
.pain-card {
  background: var(--warm-white);
  padding: 40px 36px;
  transition: background .3s;
}
.pain-card:hover { background: var(--ivory); }
.pain-persona {
  font-size: 10px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.pain-persona::before { content:''; display:block; width:16px; height:1px; background:var(--gold); }
.pain-card h3 {
  font-family: var(--display); font-size: 22px; font-weight: 500;
  line-height: 1.25; color: var(--ink); margin-bottom: 14px;
}
.pain-card h3 em { font-style: italic; font-weight: 400; color: var(--warm-mid); }
.pain-card p { font-size: 14px; font-weight: 300; line-height: 1.75; color: var(--warm-mid); }

/* ══════════════════════════════
   SOLUTIONS
══════════════════════════════ */
.solutions-section { background: var(--warm-white); }
.solutions-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 52px;
}
.solution-card {
  border: 1px solid var(--rule); padding: 40px 36px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color .3s, box-shadow .3s;
}
.solution-card:hover { border-color: var(--champagne); box-shadow: 0 8px 40px rgba(168,137,90,0.1); }
.solution-tag {
  font-size: 10px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
}
.solution-card h3 {
  font-family: var(--display); font-size: 22px; font-weight: 500;
  line-height: 1.25; color: var(--ink);
}
.solution-card h3 em { font-style: italic; font-weight: 400; color: var(--warm-mid); }
.solution-card p { font-size: 14px; font-weight: 300; line-height: 1.75; color: var(--warm-mid); flex:1; }
.solution-link {
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 10px;
  margin-top: auto; padding-top: 20px;
  border-top: 1px solid var(--rule); transition: gap .25s;
}
.solution-link:hover { gap: 18px; }
.solution-link::after { content: '→'; }

/* ══════════════════════════════
   FIVE PILLARS
══════════════════════════════ */
.pillars-section { background: var(--ivory); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.pillars-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0; margin-top: 60px;
  border-top: 1px solid var(--rule); border-left: 1px solid var(--rule);
}
.pillar {
  border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: 48px 40px;
}
.pillar-num {
  font-family: var(--display); font-size: 64px; font-weight: 400;
  line-height: 1; color: var(--sand); letter-spacing: -0.03em; margin-bottom: 20px;
}
.pillar h3 {
  font-family: var(--display); font-size: 24px; font-weight: 500;
  line-height: 1.2; color: var(--ink); margin-bottom: 14px;
}
.pillar h3 em { font-style: italic; font-weight: 400; color: var(--warm-mid); }
.pillar p { font-size: 14px; font-weight: 300; line-height: 1.75; color: var(--warm-mid); }

/* ══════════════════════════════
   MODULES GRID
══════════════════════════════ */
.modules-section { background: var(--warm-white); }
.modules-intro { display:flex; align-items:flex-end; justify-content:space-between; gap:40px; margin-bottom:48px; }
.modules-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px;
  background: var(--rule);
}
.module-card {
  background: var(--warm-white);
  padding: 36px 32px;
  transition: background .3s;
}
.module-card:hover { background: var(--ivory); }
.module-icon-wrap {
  width: 44px; height: 44px;
  background: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.module-icon { width: 22px; height: 22px; color: var(--gold); }
.module-card h4 {
  font-size: 15px; font-weight: 500; color: var(--ink);
  margin-bottom: 8px; line-height: 1.3;
}
.module-card p {
  font-size: 13px; font-weight: 300; line-height: 1.7;
  color: var(--warm-mid);
}
.module-tag {
  display: inline-block; margin-top: 14px;
  font-size: 9.5px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--champagne);
}

/* ══════════════════════════════
   AI SECTION
══════════════════════════════ */
.ai-section {
  background: var(--ink); position: relative; overflow: hidden;
}
.ai-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 80% 20%, rgba(168,137,90,0.07) 0%, transparent 50%),
              radial-gradient(ellipse at 20% 80%, rgba(168,137,90,0.05) 0%, transparent 50%);
}
.ai-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.ai-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(168,137,90,0.12); border: 1px solid rgba(168,137,90,0.25);
  padding: 8px 16px; margin-bottom: 24px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--champagne);
}
.ai-badge::before { content:''; width:6px; height:6px; background:var(--champagne); border-radius:50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.ai-pull {
  font-family: var(--display);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 500; line-height: 1.2;
  color: var(--warm-white); margin-bottom: 24px;
}
.ai-pull em { font-style: italic; color: var(--champagne); }
.ai-body {
  font-size: 15px; font-weight: 300; line-height: 1.8;
  color: rgba(253,252,250,0.55); margin-bottom: 16px;
}
.ai-items { margin-top: 8px; display: flex; flex-direction: column; gap: 0; }
.ai-item {
  display: grid; grid-template-columns: 36px 1fr;
  gap: 14px; padding: 18px 0;
  border-bottom: 1px solid rgba(168,137,90,0.15);
  align-items: start;
}
.ai-item:first-child { border-top: 1px solid rgba(168,137,90,0.15); }
.ai-n { font-family: var(--display); font-size: 12px; font-style: italic; color: var(--champagne); margin-top:2px; }
.ai-title { font-size: 13.5px; font-weight: 500; color: var(--warm-white); margin-bottom: 3px; }
.ai-desc { font-size: 13px; font-weight: 300; color: rgba(253,252,250,0.5); line-height: 1.65; }

/* ══════════════════════════════
   ARCHITECTURE / NO INTEGRATION
══════════════════════════════ */
.arch-section { background: var(--cream); }
.arch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.arch-items { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
.arch-item {
  display: grid; grid-template-columns: 36px 1fr;
  gap: 14px; padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.arch-item:first-child { border-top: 1px solid var(--rule); }
.arch-n { font-family: var(--display); font-size: 12px; font-style: italic; color: var(--champagne); margin-top:2px; }
.arch-title { font-size: 13.5px; font-weight: 500; color: var(--ink); margin-bottom: 3px; }
.arch-desc { font-size: 13px; font-weight: 300; color: var(--warm-mid); line-height: 1.65; }

/* ══════════════════════════════
   COMPARISON TABLE
══════════════════════════════ */
.comparison-section { background: var(--warm-white); }
.comparison-table { width:100%; border-collapse:collapse; margin-top:48px; }
.comparison-table th {
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 14px 20px;
  border-bottom: 1px solid var(--rule);
  text-align: left; color: var(--stone);
}
.comparison-table th.th-pc { color: var(--gold); }
.comparison-table td {
  padding: 16px 20px; font-size: 13.5px; font-weight: 300;
  border-bottom: 1px solid var(--rule); color: var(--warm-mid); vertical-align: middle;
}
.comparison-table td:first-child { color: var(--ink); font-weight: 400; font-size: 14px; }
.comparison-table .td-pc { color: var(--ink); font-weight: 500; }
.comparison-table .td-pc-hl { background: rgba(168,137,90,0.05); }
.comparison-table tr:hover td { background: var(--ivory); }
.comparison-table tr:last-child td { font-weight: 500; font-size: 15px; border-bottom: none; }
.comparison-table tr:last-child .td-pc { color: var(--gold); font-family: var(--display); font-size: 18px; }
.check { color: var(--gold); font-size: 16px; }

/* ══════════════════════════════
   ROI
══════════════════════════════ */
.roi-section { background: var(--ivory); border-top: 1px solid var(--rule); }
.roi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.roi-left {
  border-right: 1px solid var(--rule); padding-right: 72px;
  display: flex; flex-direction: column; justify-content: center;
}
.roi-right { padding-left: 72px; }
.roi-item {
  padding: 32px 0; border-bottom: 1px solid var(--rule);
  display: grid; grid-template-columns: 100px 1fr; gap: 20px; align-items: start;
}
.roi-item:first-child { padding-top: 0; }
.roi-item:last-child { border-bottom: none; padding-bottom: 0; }
.roi-num {
  font-family: var(--display); font-size: 44px; font-weight: 500;
  color: var(--ink); line-height: 1; letter-spacing: -0.02em;
}
.roi-num sup { font-size: 0.45em; color: var(--gold); vertical-align: super; }
.roi-text { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--warm-mid); padding-top: 6px; }
.roi-text strong { font-weight: 500; color: var(--ink); }

/* ══════════════════════════════
   TESTIMONIAL
══════════════════════════════ */
.testimonial-section { background: var(--warm-white); }
.testimonial-grid { display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: center; }
.t-quote {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400; font-style: italic;
  line-height: 1.5; color: var(--ink);
  position: relative; padding-left: 28px;
}
.t-quote::before {
  content: '\201C'; font-family: var(--display);
  font-size: 80px; font-weight: 400; color: var(--sand);
  position: absolute; left: 0; top: -16px; line-height: 1;
}
.t-source {
  margin-top: 24px; font-size: 11.5px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone);
  display: flex; align-items: center; gap: 14px;
}
.t-source::before { content:''; display:block; width:28px; height:1px; background:var(--gold); }
.t-stats { display: flex; flex-direction: column; gap: 0; }
.t-stat {
  padding: 24px 28px; border: 1px solid var(--rule); margin-top: -1px;
  transition: background .3s;
}
.t-stat:hover { background: var(--ivory); }
.t-stat-num {
  font-family: var(--display); font-size: 40px; font-weight: 500;
  color: var(--ink); line-height: 1; letter-spacing: -0.02em; margin-bottom: 4px;
}
.t-stat-num em { font-style: italic; color: var(--gold); font-size: 0.7em; }
.t-stat-label { font-size: 11px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); }

/* ══════════════════════════════
   PROCESS
══════════════════════════════ */
.process-section { background: var(--ink); }
.process-steps {
  display: grid; grid-template-columns: repeat(3,1fr);
  margin-top: 60px;
  border-top: 1px solid rgba(168,137,90,0.15);
  border-left: 1px solid rgba(168,137,90,0.15);
}
.process-step {
  padding: 48px 40px;
  border-right: 1px solid rgba(168,137,90,0.15);
  border-bottom: 1px solid rgba(168,137,90,0.15);
}
.step-num {
  font-family: var(--display); font-size: 56px; font-weight: 400;
  line-height: 1; color: rgba(168,137,90,0.2); margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.process-step h4 {
  font-family: var(--display); font-size: 20px; font-weight: 500;
  color: var(--warm-white); margin-bottom: 12px;
}
.process-step p {
  font-size: 14px; font-weight: 300; line-height: 1.75;
  color: rgba(253,252,250,0.45);
}
.step-when {
  margin-top: 20px; font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 10px;
}
.step-when::before { content:''; display:block; width:16px; height:1px; background:var(--gold); }

/* ══════════════════════════════
   RESOURCES
══════════════════════════════ */
.resources-section { background: var(--cream); }
.ebook-grid { display: grid; grid-template-columns: 1fr 400px; gap: 80px; align-items: start; margin-bottom: 72px; }
.ebook-points { margin-top: 24px; }
.ebook-point {
  display: grid; grid-template-columns: 28px 1fr;
  gap: 12px; padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 14px; font-weight: 300; line-height: 1.65; color: var(--warm-mid);
}
.ebook-point:first-child { border-top: 1px solid var(--rule); }
.ebook-n { font-family: var(--display); font-style: italic; color: var(--champagne); font-size: 12px; margin-top: 2px; }
.ebook-visual {
  background: var(--ink); padding: 52px 44px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative; overflow: hidden;
}
.ebook-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0, transparent 48px, rgba(168,137,90,0.05) 49px, transparent 50px);
}
.ebook-sup { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--champagne); position: relative; z-index: 1; }
.ebook-title { font-family: var(--display); font-size: 30px; font-weight: 500; color: var(--warm-white); line-height: 1.2; position: relative; z-index: 1; }
.ebook-sub { font-size: 13px; font-weight: 300; color: rgba(253,252,250,0.4); line-height: 1.6; position: relative; z-index: 1; }
.ebook-cta { position: relative; z-index: 1; align-self: flex-start; }
.articles-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2px;
  background: var(--rule);
}
.article-card {
  background: var(--warm-white); padding: 32px 28px;
  transition: background .3s;
}
.article-card:hover { background: var(--ivory); }
.article-tag { font-size: 9.5px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.article-card h4 { font-size: 15px; font-weight: 500; color: var(--ink); line-height: 1.35; margin-bottom: 10px; }
.article-card p { font-size: 13px; font-weight: 300; color: var(--warm-mid); line-height: 1.65; }

/* ══════════════════════════════
   CTA FINALE
══════════════════════════════ */
.cta-finale {
  background: var(--ink); text-align: center;
  position: relative; overflow: hidden;
}
.cta-finale::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(168,137,90,0.1) 0%, transparent 60%);
}
.cta-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.cta-supra { font-size: 10.5px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone); margin-bottom: 24px; }
.cta-title {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500; line-height: 1.1;
  color: var(--warm-white); margin-bottom: 20px; letter-spacing: -0.02em;
}
.cta-title em { font-style: italic; font-weight: 400; color: var(--champagne); }
.cta-sub { font-size: 16px; font-weight: 300; line-height: 1.75; color: rgba(253,252,250,0.55); margin-bottom: 44px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-promises {
  display: flex; justify-content: center; gap: 36px;
  margin-top: 32px; flex-wrap: wrap;
}
.cta-promise-item {
  font-size: 11px; font-weight: 300; color: var(--stone);
  display: flex; align-items: center; gap: 8px;
}
.cta-promise-item::before { content: '✓'; color: var(--gold); font-size: 11px; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: var(--ink-soft); padding: 72px 52px 40px;
  border-top: 1px solid rgba(168,137,90,0.12);
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 52px; padding-bottom: 52px;
  border-bottom: 1px solid rgba(168,137,90,0.12);
  margin-bottom: 32px;
}
.footer-logo { height: 26px; width: auto; margin-bottom: 14px; filter: brightness(0) invert(1) opacity(0.65); }
.footer-tagline { font-size: 11.5px; font-weight: 300; font-style: italic; font-family: var(--display); color: var(--stone); margin-bottom: 16px; }
.footer-brand p { font-size: 13px; font-weight: 300; line-height: 1.8; color: rgba(253,252,250,0.3); max-width: 260px; }
.footer-col h5 { font-size: 9.5px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 13px; font-weight: 300; color: rgba(253,252,250,0.4); margin-bottom: 10px; transition: color .25s; }
.footer-col a:hover { color: var(--champagne); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 10.5px; font-weight: 300; color: rgba(253,252,250,0.2); letter-spacing: 0.05em; }

/* ── STICKY BAR ── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 990;
  background: rgba(30,26,22,0.97); backdrop-filter: blur(20px);
  border-top: 1px solid rgba(168,137,90,0.2);
  padding: 14px 52px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  transform: translateY(100%); transition: transform .5s cubic-bezier(0.16,1,0.3,1);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar-text { font-size: 13px; font-weight: 300; color: rgba(253,252,250,0.6); }
.sticky-bar-text strong { color: var(--warm-white); font-weight: 500; }
.sticky-bar-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.sticky-close { background: none; border: none; color: var(--stone); font-size: 20px; cursor: none; padding: 2px 8px; transition: color .2s; line-height:1; }
.sticky-close:hover { color: var(--warm-white); }

/* ── ROI THREE CALCULATORS ── */
.roi3-section { background: var(--warm-white); border-top: 1px solid var(--rule); }
.roi3-intro {
  font-size: 15px; font-weight: 300; color: var(--warm-mid); max-width: 680px;
  line-height: 1.85; margin-top: 16px; margin-bottom: 48px;
}
.roi3-tabs {
  display: flex; gap: 0; border-bottom: 1px solid var(--rule);
  margin-bottom: 0; overflow-x: auto;
}
.roi3-tab {
  display: flex; flex-direction: column; gap: 3px; align-items: flex-start;
  padding: 18px 32px; background: none; border: none;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  cursor: none; transition: all .25s; text-align: left;
}
.roi3-tab:hover .roi3-tab-label { color: var(--ink); }
.roi3-tab.active { border-bottom-color: var(--gold); }
.roi3-tab.active .roi3-tab-num { color: var(--gold); }
.roi3-tab.active .roi3-tab-label { color: var(--ink); font-weight: 500; }
.roi3-tab-num { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; color: var(--stone); }
.roi3-tab-label { font-size: 13px; font-weight: 400; letter-spacing: 0.04em; color: var(--warm-mid); white-space: nowrap; }
.roi3-tab-sub { font-size: 10.5px; font-weight: 300; color: var(--stone); font-style: italic; }
.roi3-panel { display: none; padding-top: 56px; }
.roi3-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.roi3-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.roi3-tag::before { content: ''; display: block; width: 20px; height: 1px; background: currentColor; }
.roi3-headline {
  font-family: var(--display); font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 400; line-height: 1.25; color: var(--ink);
  margin-bottom: 20px; letter-spacing: -0.01em;
}
.roi3-headline em { font-style: italic; color: var(--gold); }
.roi3-body { font-size: 14.5px; font-weight: 300; line-height: 1.8; color: var(--warm-mid); margin-bottom: 14px; }
.roi3-body strong { font-weight: 500; color: var(--ink); }
.roi3-insight {
  margin-top: 24px; padding: 20px 24px;
  background: var(--ivory); border-left: 3px solid var(--gold);
  font-size: 13.5px; font-weight: 300; line-height: 1.7; color: var(--warm-mid);
}
.roi3-insight strong { font-weight: 500; color: var(--ink); }
.roi3-calc {
  background: var(--ivory); border: 1px solid var(--rule);
  padding: 40px; position: sticky; top: 88px;
}
.roi3-calc-title {
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--stone); margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.roi3-calc-title::before { content: ''; display: block; width: 20px; height: 1px; background: var(--stone); }
.roi3-fields { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.roi3-field { display: flex; flex-direction: column; gap: 6px; }
.roi3-subsection-label {
  font-size: 9.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); padding-bottom: 8px; border-bottom: 1px solid var(--rule);
}
.roi3-label { font-size: 10px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--stone); }
.roi3-input-wrap { position: relative; }
.roi3-pfx { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-family: var(--display); font-size: 15px; color: var(--warm-mid); pointer-events: none; }
.roi3-inp {
  width: 100%; background: var(--warm-white); border: 1px solid var(--rule);
  color: var(--ink); font-family: var(--body); font-size: 16px; font-weight: 400;
  padding: 12px 14px 12px 36px; outline: none; cursor: none; transition: border-color .25s;
}
.roi3-inp:focus { border-color: var(--gold); }
.roi3-hint { font-size: 10.5px; color: var(--stone); font-style: italic; }
.roi3-slider { -webkit-appearance: none; appearance: none; width: 100%; height: 2px; background: var(--sand); outline: none; cursor: none; }
.roi3-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; background: var(--gold); border-radius: 50%; cursor: none; }
.roi3-slider-row { display: flex; justify-content: space-between; font-size: 10px; color: var(--stone); margin-top: 5px; }
.roi3-slider-row strong { color: var(--gold); font-weight: 500; font-size: 11px; }
.roi3-result-box { background: var(--ink); padding: 28px 32px; margin-bottom: 20px; }
.roi3-result-label { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); margin-bottom: 6px; }
.roi3-result-num {
  font-family: var(--display); font-size: clamp(36px, 4vw, 54px);
  font-weight: 400; color: var(--warm-white); line-height: 1; letter-spacing: -0.02em;
}
.roi3-result-sub { font-size: 11.5px; font-weight: 300; color: var(--stone); margin-top: 6px; }
.roi3-breakdown { display: flex; flex-direction: column; margin-bottom: 20px; }
.roi3-brow { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--rule); font-size: 13px; gap: 16px; }
.roi3-brow:first-child { border-top: 1px solid var(--rule); }
.roi3-brow span:first-child { font-weight: 300; color: var(--warm-mid); }
.roi3-brow span:last-child, .roi3-brow .hi { font-weight: 500; color: var(--ink); font-family: var(--display); font-size: 14px; }
.roi3-brow .hi { color: var(--gold); }
.roi3-note { font-size: 11px; font-style: italic; color: var(--stone); line-height: 1.65; }
.roi3-cta {
  margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.roi3-cta p { font-size: 14px; font-weight: 300; color: var(--warm-mid); line-height: 1.7; max-width: 540px; }


/* ── AI URGENCY ── */
.urgency-section { background: var(--cream); border-top: 1px solid var(--rule); }
.urgency-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.urgency-timeline { display: flex; flex-direction: column; }
.urgency-item { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--rule); align-items: start; }
.urgency-item:first-child { border-top: 1px solid var(--rule); }
.urgency-date { font-family: var(--display); font-size: 13px; font-style: italic; color: var(--gold); line-height: 1.4; }
.urgency-title { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 3px; }
.urgency-desc { font-size: 13px; font-weight: 300; color: var(--warm-mid); line-height: 1.65; }
.urgency-box { background: var(--ink); padding: 40px; margin-top: 28px; }
.urgency-box p { font-size: 14px; font-weight: 300; color: rgba(253,252,250,0.6); line-height: 1.75; margin-bottom: 24px; }
.urgency-box strong { color: var(--warm-white); font-weight: 400; }

/* ── DEMO TRANSPARENCY ── */
.demo-section { background: var(--warm-white); border-top: 1px solid var(--rule); }
.demo-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 52px; border-top: 1px solid var(--rule); border-left: 1px solid var(--rule); }
.demo-step { padding: 36px 30px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.demo-step-num { font-family: var(--display); font-size: 11px; font-style: italic; color: var(--champagne); margin-bottom: 12px; letter-spacing: 0.05em; }
.demo-step h4 { font-size: 15px; font-weight: 500; color: var(--ink); margin-bottom: 10px; line-height: 1.3; }
.demo-step p { font-size: 13px; font-weight: 300; color: var(--warm-mid); line-height: 1.7; }
.demo-step-time { display: inline-block; margin-top: 14px; font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.demo-promises { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 40px; padding-top: 36px; border-top: 1px solid var(--rule); }
.demo-promise { display: flex; align-items: flex-start; gap: 12px; flex: 1; min-width: 200px; }
.demo-check { width: 20px; height: 20px; background: var(--gold-light); border: 1px solid var(--rule); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; font-size: 11px; color: var(--gold); }
.demo-promise p { font-size: 13.5px; font-weight: 300; color: var(--warm-mid); line-height: 1.65; }
.demo-promise p strong { font-weight: 500; color: var(--ink); }

/* ── PDF CAPTURE CARD ── */
.pdf-capture {
  max-height: 0; overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease;
  opacity: 0;
}
.pdf-capture.visible {
  max-height: 320px; opacity: 1;
}
.pdf-capture-inner {
  margin-top: 20px;
  background: var(--warm-white);
  border: 1px solid var(--champagne);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
}
.pdf-capture-inner.dark {
  background: rgba(253,252,250,0.06);
  border-color: rgba(168,137,90,0.5);
  border-left-color: var(--champagne);
}
.pdf-capture-title {
  font-family: var(--display); font-style: italic;
  font-size: 16px; color: var(--ink); margin-bottom: 4px; line-height: 1.3;
}
.pdf-capture-inner.dark .pdf-capture-title { color: var(--warm-white); }
.pdf-capture-sub {
  font-size: 12px; font-weight: 300; color: var(--warm-mid);
  line-height: 1.6; margin-bottom: 16px;
}
.pdf-capture-inner.dark .pdf-capture-sub { color: rgba(253,252,250,0.5); }
.pdf-capture-fields {
  display: grid; grid-template-columns: 1fr 1fr 1fr auto;
  gap: 10px; align-items: end;
}
.pdf-field { display: flex; flex-direction: column; gap: 5px; }
.pdf-field-label {
  font-size: 9.5px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--stone);
}
.pdf-inp {
  background: var(--ivory); border: 1px solid var(--rule);
  color: var(--ink); font-family: var(--body); font-size: 13px;
  font-weight: 300; padding: 10px 12px; outline: none;
  transition: border-color .2s; width: 100%;
}
.pdf-capture-inner.dark .pdf-inp {
  background: rgba(253,252,250,0.08);
  border-color: rgba(168,137,90,0.25); color: var(--warm-white);
}
.pdf-inp:focus { border-color: var(--gold); }
.pdf-inp::placeholder { color: var(--stone); }
.pdf-submit {
  background: var(--gold); border: none; color: var(--warm-white);
  font-family: var(--body); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 11px 20px; cursor: none; white-space: nowrap;
  transition: background .2s;
}
.pdf-submit:hover { background: var(--warm-mid); }
.pdf-thankyou {
  display: none; padding: 16px 0 4px;
  font-family: var(--display); font-style: italic;
  font-size: 15px; color: var(--gold);
}
.pdf-capture-inner.dark .pdf-thankyou { color: var(--champagne); }
.pdf-privacy {
  font-size: 10.5px; font-weight: 300; color: var(--stone);
  margin-top: 10px; font-style: italic;
}
.careers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
@media (max-width: 700px) {
  .pdf-capture-fields { grid-template-columns: 1fr; }
  .careers-grid { grid-template-columns: 1fr; }
}

/* ── BUSINESS CASES ── */
.cases-section { background: var(--warm-white); }
.cases-tabs {
  display: flex; gap: 0; margin-top: 52px; margin-bottom: 0;
  border-bottom: 1px solid var(--rule); overflow-x: auto;
}
.cases-tab {
  padding: 14px 28px; font-family: var(--body); font-size: 11.5px;
  font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--stone); background: none; border: none;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  cursor: none; transition: color .25s, border-color .25s;
  white-space: nowrap;
}
.cases-tab:hover { color: var(--ink); }
.cases-tab.active { color: var(--ink); border-bottom-color: var(--gold); font-weight: 500; }

.cases-panel { display: none; }
.cases-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; padding-top: 52px; }

.case-story { }
.case-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 16px;
}
.case-tag.cfo { color: #7A6A56; }
.case-tag.hrd { color: var(--gold); }
.case-tag.fin { color: #5A7A6A; }
.case-tag.both { color: var(--champagne); }
.case-tag::before { content: ''; display: block; width: 20px; height: 1px; background: currentColor; }

.case-headline {
  font-family: var(--display); font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 400; line-height: 1.25; color: var(--ink);
  margin-bottom: 20px; letter-spacing: -0.01em;
}
.case-headline em { font-style: italic; color: var(--gold); }
.case-body { font-size: 14.5px; font-weight: 300; line-height: 1.8; color: var(--warm-mid); margin-bottom: 14px; }
.case-body strong { font-weight: 500; color: var(--ink); }
.case-insight {
  margin-top: 24px; padding: 20px 24px;
  background: var(--ivory); border-left: 3px solid var(--gold);
  font-size: 13.5px; font-weight: 300; line-height: 1.7; color: var(--warm-mid);
}
.case-insight strong { font-weight: 500; color: var(--ink); }

/* Case calculator */
.case-calc {
  background: var(--ivory); border: 1px solid var(--rule);
  padding: 44px 40px; position: sticky; top: 88px;
}
.case-calc-title {
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--stone); margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.case-calc-title::before { content: ''; display: block; width: 20px; height: 1px; background: var(--stone); }
.case-fields { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.case-field { display: flex; flex-direction: column; gap: 6px; }
.case-label { font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone); }
.case-input-wrap { position: relative; }
.case-pfx { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-family: var(--display); font-size: 15px; color: var(--warm-mid); pointer-events: none; }
.case-inp {
  width: 100%; background: var(--warm-white); border: 1px solid var(--rule);
  color: var(--ink); font-family: var(--body); font-size: 16px; font-weight: 400;
  padding: 12px 14px 12px 36px; outline: none; cursor: none;
  transition: border-color .25s;
}
.case-inp:focus { border-color: var(--gold); }
.case-inp-plain { padding-left: 14px; }
.case-inp-hint { font-size: 10.5px; color: var(--stone); font-style: italic; margin-top: 3px; }
.case-slider { -webkit-appearance: none; appearance: none; width: 100%; height: 2px; background: var(--sand); outline: none; cursor: none; }
.case-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; background: var(--gold); border-radius: 50%; cursor: none; }
.case-result-box {
  background: var(--ink); padding: 28px 32px; margin-bottom: 20px;
}
.case-result-label { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); margin-bottom: 6px; }
.case-result-number {
  font-family: var(--display); font-size: clamp(36px, 4vw, 54px);
  font-weight: 400; color: var(--warm-white); line-height: 1;
  letter-spacing: -0.02em;
}
.case-result-number em { font-style: italic; color: var(--champagne); font-size: 0.7em; }
.case-result-sub { font-size: 11.5px; font-weight: 300; color: var(--stone); margin-top: 6px; }
.case-breakdown-rows { display: flex; flex-direction: column; gap: 0; margin-bottom: 24px; }
.case-brow { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--rule); font-size: 13px; }
.case-brow:first-child { border-top: 1px solid var(--rule); }
.case-brow-lbl { font-weight: 300; color: var(--warm-mid); }
.case-brow-val { font-weight: 500; color: var(--ink); font-family: var(--display); font-size: 14px; }
.case-brow-val.accent { color: var(--gold); }
.case-note { font-size: 11px; font-style: italic; color: var(--stone); line-height: 1.65; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 0 28px; }

  .section { padding: 72px 28px; }
  .section-full .inner { padding: 0 28px; }
  .hero-body { padding: 60px 28px 40px; flex-direction: column; gap: 48px; }
  .hero-right { flex-direction: row; flex-wrap: wrap; align-items: flex-start; width: 100%; }
  .hero-pill { min-width: 140px; text-align: left; }
  .hero-scroll-line { padding: 0 28px 32px; }
  .manifesto-grid, .ai-grid, .arch-grid, .roi-grid, .testimonial-grid, .ebook-grid, .careers-grid { grid-template-columns: 1fr; }
  .roi-left { border-right: none; padding-right: 0; border-bottom: 1px solid var(--rule); padding-bottom: 48px; }
  .roi-right { padding-left: 0; padding-top: 48px; }
  .pillars-grid, .process-steps { grid-template-columns: 1fr; }
  .pillar, .process-step { border-right: none; }
  .modules-grid, .articles-grid { grid-template-columns: repeat(2,1fr); }
  .pain-grid, .solutions-grid { grid-template-columns: 1fr; gap: 2px; }
  .comparison-table { font-size: 12px; }
  .comparison-table td, .comparison-table th { padding: 12px 14px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  footer { padding: 52px 28px 32px; }
  .roi3-panel.active { grid-template-columns: 1fr; }
  .roi3-calc { position: static; }
  .roi3-tab { padding: 12px 18px; }
  .roi3-cta { flex-direction: column; align-items: flex-start; }
  .sticky-bar { padding: 12px 20px; flex-wrap: wrap; gap: 10px; }
  .sticky-bar-text { font-size: 12px; }
  .status-grid { grid-template-columns: 1fr; gap: 40px; }
  .status-founder-box { grid-template-columns: 1fr; gap: 20px; }
  .lang-dropdown { right: auto; left: 0; }
  .demo-steps { grid-template-columns: 1fr 1fr; }
  .urgency-grid { grid-template-columns: 1fr; }
}

/* ── LANGUAGE SWITCHER ── */
.lang-switcher { position: relative; display: flex; align-items: center; margin-left: 12px; }
.lang-btn {
  display: flex; align-items: center; gap: 7px;
  background: none; border: 1px solid rgba(168,137,90,0.25);
  color: var(--stone); font-family: var(--body); font-size: 11px;
  font-weight: 400; letter-spacing: 0.06em; padding: 6px 12px;
  cursor: none; transition: border-color .2s, color .2s; white-space: nowrap;
}
.lang-btn:hover { border-color: var(--gold); color: var(--warm-white); }
.lang-flag { font-size: 14px; line-height: 1; }
.lang-chevron { opacity: 0.5; transition: transform .2s; }
.lang-btn.open .lang-chevron { transform: rotate(180deg); }
.lang-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: rgba(24,20,16,0.98); backdrop-filter: blur(24px);
  border: 1px solid rgba(168,137,90,0.2);
  min-width: 190px; z-index: 1000;
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease;
  box-shadow: 0 20px 52px rgba(0,0,0,0.45);
}
.lang-dropdown.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.lang-option {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; font-size: 12.5px; font-weight: 300;
  color: rgba(253,252,250,0.55); cursor: none;
  transition: background .15s, color .15s;
  border: none; background: none; font-family: var(--body);
  text-align: left; width: 100%;
}
.lang-option:hover { background: rgba(168,137,90,0.1); color: var(--warm-white); }
.lang-option.active { color: var(--champagne); }
.lang-option .lf { font-size: 15px; }
.lang-dev-note {
  padding: 8px 16px 10px;
  font-size: 10px; font-weight: 300; font-style: italic;
  color: rgba(253,252,250,0.2); border-top: 1px solid rgba(168,137,90,0.1);
  line-height: 1.5;
}

/* ── PLATFORM STATUS ── */
.status-section { background: var(--ink); position: relative; overflow: hidden; }
.status-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 80% 0%, rgba(168,137,90,0.07) 0%, transparent 55%);
}
.status-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.status-col-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 20px; border-bottom: 1px solid rgba(168,137,90,0.15); margin-bottom: 4px;
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.status-dot.live { background: #6BC98A; box-shadow: 0 0 8px rgba(107,201,138,0.5); }
.status-dot.building { background: var(--champagne); box-shadow: 0 0 8px rgba(196,170,136,0.4); }
.status-col-title { font-size: 10.5px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; }
.status-col-title.live { color: #6BC98A; }
.status-col-title.building { color: var(--champagne); }
.status-item {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; padding: 13px 0; border-bottom: 1px solid rgba(253,252,250,0.05);
}
.status-item:last-child { border-bottom: none; }
.status-item-name { font-size: 13.5px; font-weight: 300; color: rgba(253,252,250,0.7); line-height: 1.4; flex: 1; }
.status-item-name strong { font-weight: 500; color: var(--warm-white); }
.status-badge {
  font-size: 9.5px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 3px 9px; flex-shrink: 0; white-space: nowrap;
}
.status-badge.live { background: rgba(107,201,138,0.1); color: #6BC98A; border: 1px solid rgba(107,201,138,0.2); }
.status-badge.y26 { background: rgba(196,170,136,0.08); color: var(--champagne); border: 1px solid rgba(196,170,136,0.18); }
.status-badge.y27 { background: rgba(154,142,130,0.07); color: var(--stone); border: 1px solid rgba(154,142,130,0.15); }
.status-yr-divider {
  font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--stone); padding: 18px 0 8px; border-top: 1px solid rgba(253,252,250,0.05); margin-top: 8px;
}
.status-yr-divider:first-child { border-top: none; padding-top: 0; }
.status-countries { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(168,137,90,0.12); }
.status-country {
  display: flex; align-items: center; gap: 6px;
  padding: 5px 11px; font-size: 11px; font-weight: 300;
}
.status-country.live { background: rgba(107,201,138,0.07); color: rgba(253,252,250,0.7); border: 1px solid rgba(107,201,138,0.18); }
.status-country.y26 { background: rgba(196,170,136,0.06); color: rgba(253,252,250,0.45); border: 1px solid rgba(196,170,136,0.13); }
.status-country.y27 { background: rgba(154,142,130,0.05); color: rgba(253,252,250,0.3); border: 1px solid rgba(154,142,130,0.1); }
.status-lang-strip { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(168,137,90,0.12); }
.status-lang-label { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); margin-bottom: 12px; }
.status-lang-flags { display: flex; flex-wrap: wrap; gap: 7px; }
.status-lang-pill {
  display: flex; align-items: center; gap: 6px; padding: 5px 12px;
  font-size: 11px; font-weight: 300; color: rgba(253,252,250,0.55);
  background: rgba(253,252,250,0.03); border: 1px solid rgba(253,252,250,0.07);
}
.status-founder-box {
  grid-column: 1 / -1; margin-top: 52px;
  background: rgba(168,137,90,0.06); border: 1px solid rgba(168,137,90,0.18);
  padding: 36px 44px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
.status-founder-box h3 {
  font-family: var(--display); font-size: clamp(18px,1.8vw,24px);
  font-weight: 400; color: var(--warm-white); margin-bottom: 10px; line-height: 1.3;
}
.status-founder-box h3 em { font-style: italic; color: var(--champagne); }
.status-founder-box p {
  font-size: 13.5px; font-weight: 300; color: rgba(253,252,250,0.5);
  line-height: 1.8; max-width: 600px;
}

@media (max-width: 700px) {
  .demo-steps { grid-template-columns: 1fr; border-left: none; border-top: none; }
  .demo-step { border-left: 1px solid var(--rule); border-top: 1px solid var(--rule); border-bottom: none; }
  .demo-steps { border-bottom: 1px solid var(--rule); }
  .demo-promises { flex-direction: column; }
}