/* ============================================
   LITTLEBOOKA — STYLES v3
   Premium dark. Gold + Blue. Mobile-first.
   ============================================ */
 
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
:root {
  --bg:       #0B0B0F;
  --surface:  #111118;
  --surface2: #16161F;
  --text:     #F5F5F7;
  --muted:    rgba(245,245,247,0.52);
  --dim:      rgba(245,245,247,0.22);
  --gold:     #B8966E;
  --gold-l:   #D4AF87;
  --gold-dim: rgba(184,150,110,0.12);
  --blue:     #3B82F6;
  --blue-d:   #2563EB;
  --green:    #22C55E;
  --border:   rgba(245,245,247,0.07);
  --border-g: rgba(184,150,110,0.22);
}
 
html { scroll-behavior: smooth; }
 
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
 
/* Noise */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' 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");
  pointer-events: none; z-index: 1000; opacity: 0.35;
}
 
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
 
/* ============================================
   NAV
   ============================================ */
nav {
  position: fixed; top:0; left:0; right:0; z-index:100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(11,11,15,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
 
.nav-logo {
  font-family: 'Sora', sans-serif; font-weight: 800;
  font-size: 1.1rem; letter-spacing: -0.03em;
  text-decoration: none; color: var(--text);
}
.nav-logo span { color: var(--gold); }
 
.nav-links { display: none; gap: 2rem; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.8rem; letter-spacing: 0.05em; transition: color 0.15s; }
.nav-links a:hover { color: var(--text); }
 
.nav-right { display: flex; align-items: center; gap: 0.85rem; }
 
.nav-left {
  display: flex; flex-direction: column; gap: 0.15rem;
}
@media (min-width: 768px) {
  .nav-left { flex-direction: row; align-items: center; gap: 1rem; }
}
 
.lang-switch { display: flex; gap: 0.4rem; font-size: 0.7rem; letter-spacing: 0.1em; }
.lang-switch a { color: var(--dim); text-decoration: none; }
.lang-switch a.active { color: var(--gold); }
.lang-switch--mobile { display: flex; }
.lang-switch--desktop { display: none; }
 
/* Mobile menu toggle */
.nav-menu-toggle {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 28px; height: 28px;
  background: none; border: none; cursor: pointer; padding: 2px;
}
.nav-menu-toggle span {
  display: block; height: 1.5px; background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}
.nav-menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-menu-toggle.open span:nth-child(2) { opacity: 0; }
.nav-menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
 
/* Mobile dropdown */
.nav-mobile-menu {
  display: none;
  position: fixed; top: 62px; left: 0; right: 0;
  background: rgba(11,11,15,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 99; padding: 1.5rem;
  flex-direction: column; gap: 0;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-family: 'Inter', sans-serif; font-size: 0.9rem;
  color: var(--muted); text-decoration: none; padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.nav-mobile-menu a:hover { color: var(--text); }
.nav-mobile-menu .mobile-cta {
  background: var(--gold-l); color: #0B0B0F;
  padding: 0.85rem 1.5rem; text-align: center;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 4px; border-bottom: none; margin-top: 1rem;
  box-shadow: 0 0 14px rgba(212,175,135,0.4);
}
 
@media (min-width: 768px) {
  .nav-menu-toggle { display: none; }
  .nav-mobile-menu { display: none !important; }
}
 
.nav-cta {
  background: var(--gold-l); color: #0B0B0F;
  padding: 0.5rem 1rem;
  font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; border-radius: 4px; white-space: nowrap;
  box-shadow: 0 0 14px rgba(212,175,135,0.45), 0 0 30px rgba(212,175,135,0.2);
  transition: background 0.15s, box-shadow 0.2s;
}
.nav-cta:hover {
  background: #e8c99a;
  box-shadow: 0 0 24px rgba(212,175,135,0.7), 0 0 50px rgba(212,175,135,0.35);
}
 
/* ============================================
   BUTTONS
   ============================================ */
.btn-gold {
  display: inline-block; background: var(--gold-l); color: #0B0B0F;
  padding: 0.95rem 1.75rem; font-family: 'Inter', sans-serif;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; border-radius: 4px; white-space: nowrap;
  box-shadow: 0 0 18px rgba(212,175,135,0.45), 0 0 40px rgba(212,175,135,0.2);
  transition: background 0.15s, box-shadow 0.2s;
}
.btn-gold:hover {
  background: #e8c99a;
  box-shadow: 0 0 28px rgba(212,175,135,0.7), 0 0 60px rgba(212,175,135,0.35);
}
 
.btn-blue {
  display: inline-block; background: rgba(59,130,246,0.15); color: rgba(59,130,246,0.7);
  padding: 0.95rem 1.75rem; font-family: 'Inter', sans-serif;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; border-radius: 4px; white-space: nowrap;
  border: 1.5px solid rgba(59,130,246,0.3);
  transition: background 0.2s, color 0.2s;
}
.btn-blue:hover {
  background: rgba(59,130,246,0.25);
  color: rgba(59,130,246,0.9);
}
 
/* ============================================
   CONTAINER
   ============================================ */
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
 
/* ============================================
   HERO
   ============================================ */
.hero {
  padding-top: 62px;
  min-height: 100vh;
  display: flex; flex-direction: column;
}
 
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  flex: 1;
}
 
/* LEFT */
.hero-left {
  padding: 3rem 1.5rem 2.5rem 2.5rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  border-bottom: 1px solid var(--border);
  align-items: center;
  text-align: center;
}
 
.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 0.75rem;
  justify-content: center;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 1.5rem; height: 1px; background: var(--gold);
}
 
.hero-left h1 {
  font-size: clamp(3.2rem, 9vw, 6rem);
  font-weight: 600; color: var(--text);
}
.hero-left h1 em { font-style: italic; color: var(--gold); }
 
.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem; color: var(--muted); line-height: 1.9;
  max-width: 44ch;
}
 
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; position: relative; z-index: 2; justify-content: center; }
 
/* Chart */
.hero-chart {
  width: calc(100% - 5px);
  margin-top: -30px;
  margin-left: 20px;
  margin-right: 20px;
  position: relative;
  z-index: 0;
  opacity: 0.9;
  pointer-events: none;
}
.hero-chart svg { width: 100%; height: auto; overflow: visible; }
 
.hero-right {
  display: flex; flex-direction: column;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
 
/* Proof block */
.hero-proof {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--border-g);
  display: flex; flex-direction: column; gap: 0.85rem;
}
 
.proof-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
}
 
.proof-row { display: flex; align-items: baseline; gap: 0.75rem; }
 
.proof-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--dim); min-width: 40px;
}
.proof-tag.after { color: var(--green); }
 
.proof-num {
  font-family: 'Sora', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--text);
}
.proof-num.green { color: var(--green); }
.proof-unit { font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 400; color: var(--muted); }
 
.proof-delta {
  font-family: 'Sora', sans-serif; font-size: 1.6rem; font-weight: 800;
  color: var(--green); border-top: 1px solid var(--border); padding-top: 0.85rem;
}
 
/* Team photos */
.hero-team {
  display: grid; grid-template-columns: 1fr 1fr;
  flex: 1; min-height: 320px;
  position: relative;
}
 
.team-card {
  position: relative; overflow: hidden;
  border-right: 1px solid rgba(245,245,247,0.04);
  display: flex; flex-direction: column;
}
.team-card:last-child { border-right: none; }
 
.team-card img {
  width: 100%; flex: 1;
  object-fit: cover; object-position: top center;
  display: block;
  transform: scale(1.2) translateY(4%);
  filter: grayscale(10%) contrast(1.02) brightness(0.88);
  min-height: 220px;
  transition: transform 0.4s ease;
}
 
/* Fade to background on all edges */
.team-card::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, var(--surface) 0%, transparent 18%, transparent 60%, var(--surface) 100%),
    linear-gradient(to right, var(--surface) 0%, transparent 20%),
    linear-gradient(to left, var(--surface) 0%, transparent 20%);
  pointer-events: none; z-index: 2;
}
 
.team-card-info {
  padding: 0.75rem 1rem 1rem;
  position: relative; z-index: 3;
  background: linear-gradient(to bottom, transparent, var(--surface) 40%);
  margin-top: -2rem;
}
 
.team-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 400; color: var(--text);
  margin-bottom: 0.1rem;
}
 
.team-card-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
}
 
/* ============================================
   SECTION BASE
   ============================================ */
section { border-top: 1px solid var(--border); }
 
.fixes .container,
.proof-section .container,
.what-is .container,
.how .container,
.philosophy .container,
.report-section .container {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
 
section h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin-bottom: 0.75rem;
}
 
.section-sub {
  font-family: 'Inter', sans-serif;
  color: var(--muted); font-size: 0.95rem; margin-bottom: 2rem;
}
 
/* ============================================
   SECTION RHYTHM & DIVIDERS
   ============================================ */
.core-message,
.what-we-do,
.how,
.operators,
.final-cta {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
 
.mini-proof,
.expanded-value,
.product-entry,
.who-for {
  background: var(--surface);
  border-top: 1px solid var(--border);
}
 
/* Gold accent top line on alternating key sections */
.mini-proof::before,
.product-entry::before,
.final-cta::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
 
/* Section base padding */
.core-message .container,
.mini-proof .container,
.what-we-do .container,
.expanded-value .container,
.how .container,
.product-entry .container,
.operators .container,
.who-for .container,
.final-cta .container {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
 
/* ============================================
   CORE MESSAGE CONTENT
   ============================================ */
 
.core-body { max-width: 52ch; margin-top: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.core-body p { font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--muted); line-height: 1.85; }
 
.core-list {
  list-style: none; margin: 0.25rem 0;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.core-list li {
  font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--text);
  padding-left: 1.25rem; position: relative;
}
.core-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
 
.core-close { color: var(--text) !important; }
 
/* ============================================
   MINI PROOF CONTENT
   ============================================ */
 
.proof-split {
  display: flex; align-items: center; gap: 2rem;
  margin: 2rem 0 1.5rem; flex-wrap: wrap;
}
 
.proof-col { display: flex; flex-direction: column; gap: 0.75rem; }
 
.proof-col .proof-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
}
 
.proof-stat {
  font-family: 'Sora', sans-serif; font-size: 2rem; font-weight: 800; color: var(--dim);
  display: flex; flex-direction: column; line-height: 1.1;
}
.proof-stat span {
  font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 400;
  color: var(--dim); letter-spacing: 0.05em; margin-top: 0.15rem;
}
.proof-stat.gold { color: var(--gold); }
.proof-stat.gold span { color: var(--muted); }
 
.proof-arrow { font-size: 1.5rem; color: var(--border-g); align-self: center; }
 
.proof-note {
  font-family: 'Inter', sans-serif; font-size: 0.82rem;
  color: var(--dim); margin-bottom: 2rem; max-width: 48ch;
}
 
/* ============================================
   WHAT WE DO CONTENT
   ============================================ */
 
.what-list {
  list-style: none; margin: 1.5rem 0; max-width: 520px;
}
.what-list li {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.9rem 0; border-bottom: 1px solid var(--border);
  font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--text);
}
.what-list li:first-child { border-top: 1px solid var(--border); }
.what-list li::before { content: '→'; color: var(--gold); flex-shrink: 0; }
 
.what-close {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.1rem; color: var(--muted); margin: 0.5rem 0 2rem;
}
 
/* ============================================
   EXPANDED VALUE CONTENT
   ============================================ */
 
.expanded-body { max-width: 52ch; margin-top: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.expanded-body p { font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--muted); line-height: 1.85; }
 
.expanded-list {
  list-style: none; display: flex; flex-direction: column; gap: 0.4rem; margin: 0.25rem 0;
}
.expanded-list li {
  font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--text);
  padding-left: 1.25rem; position: relative;
}
.expanded-list li::before { content: '+'; position: absolute; left: 0; color: var(--gold); }
 
.expanded-focus { color: var(--text) !important; }
.expanded-close {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.15rem; color: var(--gold) !important;
}
 
/* ============================================
   HOW IT WORKS CONTENT
   ============================================ */
 
.how-steps {
  list-style: none; margin: 2rem 0 2.5rem; max-width: 620px;
}
.how-steps li {
  display: flex; align-items: flex-start; gap: 1.5rem;
  padding: 1.25rem 0; border-bottom: 1px solid var(--border);
}
.how-steps li:first-child { border-top: 1px solid var(--border); }
 
.how-step-num {
  font-family: 'Sora', sans-serif; font-size: 0.7rem; font-weight: 800;
  color: var(--blue); letter-spacing: 0.1em; min-width: 28px; padding-top: 0.15rem;
}
 
.how-step-body { display: flex; flex-direction: column; gap: 0.2rem; }
.how-step-body strong {
  font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; color: var(--text);
}
.how-step-body span {
  font-family: 'Inter', sans-serif; font-size: 0.85rem; color: var(--muted);
}
 
/* ============================================
   PRODUCT ENTRY CONTENT
   ============================================ */
 
.product-promise {
  font-family: 'Inter', sans-serif; font-size: 0.9rem;
  color: var(--muted); margin-bottom: 1.75rem; line-height: 1.7;
}
 
.price-anchor {
  display: flex; align-items: baseline; gap: 0.85rem; margin-bottom: 2rem;
}
.price-beta {
  font-family: 'Sora', sans-serif; font-size: 2rem; font-weight: 800; color: var(--gold);
}
.price-regular {
  font-family: 'Inter', sans-serif; font-size: 0.82rem;
  color: var(--dim); text-decoration: line-through;
}
 
/* ============================================
   OPERATORS CONTENT
   ============================================ */
 
.operators-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 0; margin-top: 2.5rem;
  border: 1px solid var(--border); border-radius: 6px; overflow: hidden;
}
 
.operator-card {
  display: flex; flex-direction: column;
  border-bottom: 1px solid var(--border);
}
.operator-card:last-child { border-bottom: none; }
 
.operator-photo {
  width: 100%;
  max-width: 280px;
  margin: 1.5rem auto 0;
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid var(--border-g);
  border-radius: 4px;
}
.operator-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  filter: grayscale(15%) contrast(1.02) brightness(0.85);
  display: block;
}
 
.operator-info {
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  background: var(--surface);
}
 
.operator-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 400; color: var(--text);
}
.operator-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold);
}
.operator-bio {
  font-family: 'Inter', sans-serif; font-size: 0.88rem;
  color: var(--muted); line-height: 1.75; margin-top: 0.25rem;
}
.operator-link {
  font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 600;
  color: var(--blue); text-decoration: none; margin-top: 0.5rem;
  transition: color 0.15s;
}
.operator-link:hover { color: var(--text); }
 
/* ============================================
   WHO THIS IS FOR CONTENT
   ============================================ */
 
.who-list {
  list-style: none; margin: 1.5rem 0; max-width: 480px;
}
.who-list li {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.9rem 0; border-bottom: 1px solid var(--border);
  font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--text);
}
.who-list li:first-child { border-top: 1px solid var(--border); }
.who-list li::before { content: '✓'; color: var(--green); flex-shrink: 0; }
 
.who-close {
  font-family: 'Inter', sans-serif; font-size: 0.95rem;
  color: var(--muted); line-height: 1.85; margin: 0.5rem 0 2rem;
}
 
/* ============================================
   FINAL CTA CONTENT
   ============================================ */
 
.final-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
 
/* ============================================
   FOOTER EMAIL
   ============================================ */
.footer-email a {
  color: var(--muted); font-family: 'Inter', sans-serif;
  font-size: 0.82rem; text-decoration: none; transition: color 0.15s;
}
.footer-email a:hover { color: var(--gold); }
 
/* ============================================
   FIXES
   ============================================ */
.fixes { background: var(--surface); }
 
.fixes-grid {
  display: grid; grid-template-columns: 1fr;
  margin-top: 2rem;
  border: 1px solid var(--border); border-radius: 6px; overflow: hidden;
}
 
.fix-card {
  background: var(--bg); padding: 1.6rem 1.5rem;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 0.6rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.fix-card:last-child { border-bottom: none; }
 
.fix-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 400; margin-top: 0.15rem;
}
.fix-card p { font-family: 'Inter', sans-serif; font-size: 0.85rem; color: var(--muted); }
 
.fix-live { background: #0a160b; border-left: 3px solid var(--green); }
.fix-live:hover { background: #0e1f0f; }
 
.fix-live-badge {
  display: inline-block; background: var(--green); color: #0B0B0F;
  font-family: 'Inter', sans-serif; font-size: 0.58rem; font-weight: 800;
  letter-spacing: 0.14em; padding: 0.2rem 0.6rem; border-radius: 3px; text-transform: uppercase;
  width: fit-content;
}
 
.fix-coming-badge {
  font-family: 'Inter', sans-serif; font-size: 0.62rem; letter-spacing: 0.08em; color: var(--gold);
}
 
.fix-card-cta {
  font-family: 'Inter', sans-serif; font-size: 0.82rem; font-weight: 700;
  color: var(--blue); margin-top: 0.4rem; letter-spacing: 0.02em;
}
 
/* ============================================
   PROOF SECTION
   ============================================ */
.proof-section { background: var(--bg); }
 
.proof-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem; color: var(--muted); line-height: 1.85;
  margin: 0.75rem 0 1.5rem; max-width: 50ch;
}
.proof-desc strong { color: var(--green); font-weight: 700; }
 
.proof-badge-inline {
  display: inline-block; font-family: 'Inter', sans-serif;
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--border-g); padding: 0.3rem 0.9rem; border-radius: 3px;
}
 
/* ============================================
   WHAT IS
   ============================================ */
.what-is { background: var(--surface); }
 
.what-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 300; font-style: italic;
  color: var(--text); line-height: 1.75; margin-bottom: 1rem; max-width: 50ch;
}
.what-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem; color: var(--muted); line-height: 1.85;
}
 
/* ============================================
   HOW
   ============================================ */
.how { background: var(--bg); }
 
.how-list { list-style: none; counter-reset: how; margin-top: 1.5rem; max-width: 600px; }
.how-list li {
  counter-increment: how;
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1.1rem 0; border-bottom: 1px solid var(--border);
  font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--text);
}
.how-list li:first-child { border-top: 1px solid var(--border); }
.how-list li::before {
  content: counter(how, decimal-leading-zero);
  font-family: 'Sora', sans-serif; font-size: 0.7rem; font-weight: 800;
  color: var(--blue); letter-spacing: 0.1em; min-width: 28px;
}
 
/* ============================================
   PHILOSOPHY
   ============================================ */
.philosophy { background: var(--surface); }
 
.philosophy h2 { max-width: 24ch; }
 
.phil-body { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.phil-body p { font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--muted); line-height: 1.85; }
 
/* ============================================
   REPORT / CTA
   ============================================ */
.report-section { background: var(--bg); }
 
.report-list { list-style: none; margin: 1.5rem 0 2.5rem; max-width: 500px; }
.report-list li {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.9rem 0; border-bottom: 1px solid var(--border);
  font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--muted);
}
.report-list li:first-child { border-top: 1px solid var(--border); }
.report-list li::before { content: '→'; color: var(--gold); }
 
.report-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }
 
/* ============================================
   FOOTER
   ============================================ */
footer {
  border-top: 1px solid var(--border); padding: 2.5rem 0; background: var(--surface);
}
 
.footer-inner { display: flex; flex-direction: column; gap: 1.5rem; }
 
.footer-logo {
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1rem; color: var(--text);
}
.footer-logo .gold { color: var(--gold); }
.footer-tagline { font-family: 'Inter', sans-serif; font-weight: 400; font-size: 0.82rem; color: var(--muted); }
 
.footer-links { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
.footer-links a { font-family: 'Inter', sans-serif; font-size: 0.8rem; color: var(--muted); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--gold); }
.footer-dim { font-family: 'Inter', sans-serif; font-size: 0.8rem; color: var(--dim); }
.footer-copy { font-family: 'Inter', sans-serif; font-size: 0.7rem; color: var(--dim); }
 
/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes arrowFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
 
/* ============================================
   DESKTOP 768+
   ============================================ */
@media (min-width: 768px) {
  nav { padding: 1rem 2.5rem; }
  .nav-links { display: flex; }
  .nav-left { flex-direction: row; align-items: center; gap: 0.75rem; }
  .lang-switch--mobile { display: none; }
  .lang-switch--desktop { display: flex; }
 
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: calc(100vh - 62px);
  }
 
  .hero-right { display: none; }
 
  .hero-left {
    padding: 5rem 2.5rem 4rem;
    border-bottom: none;
    border-right: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
  }
 
  .hero-left h1 { font-size: clamp(4rem, 7vw, 7rem); }
  .hero-chart { max-width: 1100px; margin: -110px auto 0; }
 
  .operators-grid { grid-template-columns: 1fr 1fr; }
  .operator-card { border-bottom: none; border-right: 1px solid var(--border); }
  .operator-card:last-child { border-right: none; }
  .operator-photo { max-width: 220px; aspect-ratio: 2/3; }
 
  .fixes-grid { grid-template-columns: 1fr 1fr; }
  .fix-card { border-bottom: none; border-right: 1px solid var(--border); }
  .fix-card:nth-child(2n) { border-right: none; }
  .fix-card:nth-child(n+3) { border-top: 1px solid var(--border); }
 
  .footer-inner {
    flex-direction: row; align-items: center;
    justify-content: space-between; flex-wrap: wrap;
  }
}
 
@media (min-width: 1024px) {
  nav { padding: 1rem 3rem; }
  .hero-left { padding: 5rem 4rem 5rem 5rem; }
  .hero-proof { padding: 2.5rem 2.5rem; }
  .hero-team { min-height: 380px; }
 
  .fixes-grid { grid-template-columns: repeat(4, 1fr); }
  .fix-card { border-top: none !important; border-right: 1px solid var(--border) !important; }
  .fix-card:last-child { border-right: none !important; }
 
  .container { padding: 0 2.5rem; }
 
  .fixes .container,
  .proof-section .container,
  .what-is .container,
  .how .container,
  .philosophy .container,
  .report-section .container,
  .core-message .container,
  .mini-proof .container,
  .what-we-do .container,
  .expanded-value .container,
  .product-entry .container,
  .operators .container,
  .who-for .container,
  .final-cta .container { padding-top: 5rem; padding-bottom: 5rem; }
}
 
/* ============================================
   MOBILE 767+
   ============================================ */
@media (max-width: 767px) {
  .footer-inner { text-align: center; align-items: center; }
  .footer-links { padding-left: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.5rem; }
}