/* ════════════════════════════════════════════
   EAGLE EYE CREATIVE GROUP — styles.css v2
   ════════════════════════════════════════════ */

:root {
  --black:   #080808;
  --black2:  #0f0f0f;
  --black3:  #161616;
  --gold:    #C9A84C;
  --gold2:   #FACB37;
  --cream:   #FAF7F0;
  --cream60: rgba(250,247,240,0.60);
  --gold18:  rgba(201,168,76,0.18);
  --gold08:  rgba(201,168,76,0.08);
  --gray:    rgba(180,175,165,0.5);
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Barlow', system-ui, sans-serif;
  --cond:    'Barlow Condensed', 'Barlow', sans-serif;
  --ease:    cubic-bezier(0.16,1,0.3,1);
  --pad:     clamp(24px,5vw,80px);
  --max:     1160px;
  --navh:    72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--black); color: var(--cream); font-family: var(--sans); font-weight: 300; line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; color: inherit; }
img { display: block; max-width: 100%; }

/* ── NAV ──────────────────────────────────── */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--navh);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
  background: linear-gradient(180deg, rgba(8,8,8,.9) 0%, transparent 100%);
  transition: background .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
#main-nav.stuck {
  background: rgba(8,8,8,.97);
  border-bottom-color: var(--gold08);
  backdrop-filter: blur(14px);
}

.nav-logo { display: flex; align-items: center; gap: 10px; }

/* Logo in nav: small circle with dark bg to mask white PNG background */
.nav-logo-mark {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--black);
  overflow: hidden;
  border: 1px solid var(--gold18);
  flex-shrink: 0;
}
.nav-logo-img { width: 100%; height: 100%; object-fit: cover; }

.nav-logo-text { font-family: var(--cond); font-size: 14px; letter-spacing: .18em; text-transform: uppercase; color: var(--cream); }

.nav-links { display: flex; align-items: center; gap: clamp(18px,2.5vw,38px); }
.nav-link { font-family: var(--cond); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--cream60); transition: color .2s; }
.nav-link:hover { color: var(--cream); }
.nav-cta {
  font-family: var(--cond); font-size: 11px; font-weight: 400; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,168,76,.35); padding: 8px 18px; transition: all .25s;
}
.nav-cta:hover { background: var(--gold18); border-color: var(--gold); }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--cream); transition: all .3s; }

/* ── MOBILE MENU ──────────────────────────── */
.mobile-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 950;
  opacity: 0; transition: opacity .3s;
}
.mobile-overlay.show { display: block; opacity: 1; }

.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(300px, 85vw);
  background: var(--black3); border-left: 1px solid var(--gold08);
  z-index: 960; padding: 90px 36px 40px;
  transform: translateX(100%); transition: transform .4s var(--ease);
  display: flex; flex-direction: column; gap: 6px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-close { position: absolute; top: 24px; right: 22px; font-size: 18px; color: var(--gray); }
.mob-link {
  display: block; padding: 14px 0;
  font-family: var(--cond); font-size: 16px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--cream60); border-bottom: 1px solid var(--gold08); transition: color .2s;
}
.mob-link:hover { color: var(--gold); }
.mob-cta { color: var(--gold); border: 1px solid rgba(201,168,76,.25); text-align: center; padding: 14px; margin-top: 18px; }

/* ── HERO ─────────────────────────────────── */
#hero {
  position: relative; width: 100%; height: 100vh; min-height: 740px;
  overflow: hidden; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  /* CSS fallback bg in case Three.js doesn't load */
  background:
    radial-gradient(ellipse 72% 56% at 50% 47%, rgba(245,208,93,.16) 0%, rgba(201,168,76,.07) 34%, transparent 70%),
    radial-gradient(ellipse 42% 30% at 24% 34%, rgba(201,168,76,.07) 0%, transparent 58%),
    radial-gradient(ellipse 36% 24% at 78% 28%, rgba(95,125,255,.045) 0%, transparent 62%),
    #080808;
}

#star-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none;
}

/* ── LOGO SUN ─────────────────────────────── */
.hero-sun-wrap {
  position: relative; z-index: 4;
  width: 194px; height: 194px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-bottom: clamp(32px, 5vh, 56px);
  opacity: 0; transition: opacity .8s ease .4s;
}
.hero-sun-wrap.vis { opacity: 1; }

.sun-aura {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.18) 0%, transparent 68%);
}
.a1 { inset: -88px; animation: breathe 4s ease-in-out infinite; }
.a2 { inset: -48px; animation: breathe 4s ease-in-out infinite .6s; opacity: .82; }

.sun-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(201,168,76,.22);
  animation: ring-pulse 3.5s ease-out infinite;
}
.sr1 { inset: -20px; animation-delay: 0s; }
.sr2 { inset: -44px; animation-delay: 1.1s; }

@keyframes breathe {
  0%,100% { transform: scale(1); opacity: .7; }
  50%      { transform: scale(1.07); opacity: 1; }
}
@keyframes ring-pulse {
  0%   { transform: scale(1);   opacity: .35; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Logo shell: dark circle to mask white PNG background */
.sun-logo-shell {
  position: relative; z-index: 2;
  width: 172px; height: 172px;
  border-radius: 50%;
  background: #080808;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.18);
  display: flex; align-items: center; justify-content: center;
}
.sun-logo-img {
  width: 90%; height: 90%;
  object-fit: contain;
}

/* ── HERO COPY ────────────────────────────── */
#hero-copy {
  position: relative; z-index: 4;
  text-align: center;
  padding: 0 var(--pad);
  max-width: 980px;
}

.eyebrow {
  font-family: var(--cond); font-size: 11px; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
  opacity: 0; transform: translateY(14px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.eyebrow.vis { opacity: 1; transform: translateY(0); }

.hero-h1 {
  font-family: var(--serif); font-size: clamp(30px,5.2vw,66px);
  font-weight: 300; line-height: 1.14; letter-spacing: -.01em; color: var(--cream);
  margin-bottom: 18px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .9s var(--ease) .2s, transform .9s var(--ease) .2s;
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-h1.vis { opacity: 1; transform: translateY(0); }

.hero-sub {
  font-size: clamp(15px,1.45vw,17px); color: rgba(250,247,240,.78); line-height: 1.9;
  max-width: 860px; margin: 0 auto 32px;
  opacity: 0; transform: translateY(14px);
  transition: opacity .85s var(--ease) .4s, transform .85s var(--ease) .4s;
}
.hero-sub.vis { opacity: 1; transform: translateY(0); }

.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  opacity: 0; transform: translateY(12px);
  transition: opacity .85s var(--ease) .6s, transform .85s var(--ease) .6s;
}
.hero-btns.vis { opacity: 1; transform: translateY(0); }

.hero-proof {
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 920px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .9s var(--ease) .75s, transform .9s var(--ease) .75s;
}
.hero-proof.vis { opacity: 1; transform: translateY(0); }
.proof-card {
  background: linear-gradient(180deg, rgba(20,20,20,.84), rgba(8,8,8,.7));
  border: 1px solid rgba(201,168,76,.2);
  padding: 16px 18px;
  text-align: left;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 54px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.03);
}
.proof-k {
  display: block;
  font-family: var(--cond);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.proof-card strong {
  font-family: var(--serif);
  font-size: clamp(17px,1.9vw,24px);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.12;
}

/* ── BUTTONS ──────────────────────────────── */
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--cond); font-size: 11px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: var(--black); background: var(--gold); padding: 14px 30px;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(201,168,76,.28); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--cond); font-size: 11px; font-weight: 300; letter-spacing: .22em; text-transform: uppercase;
  color: var(--cream60); border: 1px solid rgba(250,247,240,.22); padding: 14px 30px;
  transition: color .2s, border-color .2s;
}
.btn-outline:hover { color: var(--cream); border-color: rgba(250,247,240,.5); }

.btn-xl { padding: 18px 44px; font-size: 12px; }

/* ── SCROLL HINT ──────────────────────────── */
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%); z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; transition: opacity .8s ease 2s;
}
.scroll-hint.vis { opacity: 1; }
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, transparent, var(--gold)); animation: scr-line 2s ease-in-out infinite; }
@keyframes scr-line { 0%,100% { transform: scaleY(1); opacity: .6; } 50% { transform: scaleY(.5); opacity: 1; } }
.scroll-hint span { font-family: var(--cond); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--gray); }

/* ── SECTIONS SHARED ──────────────────────── */
section { position: relative; padding: clamp(72px,10vw,130px) var(--pad); }

.sec-head { max-width: var(--max); margin: 0 auto clamp(52px,7vw,96px); text-align: center; }
.sec-label { display: block; font-family: var(--cond); font-size: 11px; font-weight: 400; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
section h2 { font-family: var(--serif); font-size: clamp(28px,4.2vw,58px); font-weight: 300; line-height: 1.15; color: var(--cream); margin-bottom: 22px; }
section h2 em { font-style: italic; color: var(--gold); }
.sec-desc { font-size: clamp(14px,1.4vw,16px); color: var(--cream60); max-width: 580px; margin: 0 auto; line-height: 1.85; }

/* Reveal classes */
.ri, .rc, .rs, .rp {
  opacity: 0; transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.ri.vis, .rc.vis, .rs.vis, .rp.vis { opacity: 1; transform: translateY(0); }

/* ── GALAXY SECTION ───────────────────────── */
#galaxy { background: var(--black); overflow: visible; }

#orbit-wrap {
  display: flex; justify-content: center; align-items: flex-start;
  margin: 0 auto 32px;
  filter: drop-shadow(0 0 28px rgba(245,208,93,.08));
  /* height calculated by JS */
}

#orbit-stage {
  position: relative;
  width: 760px; height: 760px;
  flex-shrink: 0;
  transform-origin: center top;
}

#orbit-rings {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* Center sun */
#sys-sun {
  position: absolute;
  width: 98px; height: 98px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
}
.sys-glow {
  position: absolute; inset: -54px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,226,132,.38) 0%, rgba(201,168,76,.16) 40%, transparent 72%);
  animation: breathe 4s ease-in-out infinite;
}
.sys-pulse {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(201,168,76,.2);
  animation: ring-pulse 3s ease-out infinite;
}
.p1 { inset: -24px; animation-delay: 0s; }
.p2 { inset: -48px; animation-delay: 1.2s; }

.sys-logo-shell {
  position: relative; z-index: 2;
  width: 92px; height: 92px; border-radius: 50%;
  background: #080808; overflow: hidden;
  border: 1px solid rgba(201,168,76,.22);
  display: flex; align-items: center; justify-content: center;
}
.sys-logo-img { width: 90%; height: 90%; object-fit: contain; }

/* Planets */
.planet {
  position: absolute;
  width: 96px; height: 96px;
  cursor: pointer;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; z-index: 6;
  /* left/top set by JS */
}

.p-sphere {
  width: 72px; height: 72px; border-radius: 50%;
  transition: transform .3s var(--ease), box-shadow .3s, filter .3s;
  flex-shrink: 0;
}
.s1 { background: radial-gradient(circle at 35% 30%, #f8df8a 0%, #8d6420 42%, #171006 100%); box-shadow: inset -6px -6px 13px rgba(0,0,0,.7), 0 0 28px rgba(201,168,76,.48), 3px 3px 16px rgba(201,168,76,.35); }
.s2 { background: radial-gradient(circle at 35% 30%, #b7ddff 0%, #3d6ea4 45%, #090d15 100%); box-shadow: inset -6px -6px 13px rgba(0,0,0,.72), 0 0 28px rgba(120,170,255,.34), 3px 3px 16px rgba(80,130,210,.28); }
.s3 { background: radial-gradient(circle at 35% 30%, #ffc3df 0%, #8e3568 45%, #120710 100%); box-shadow: inset -6px -6px 13px rgba(0,0,0,.72), 0 0 28px rgba(210,90,170,.28), 3px 3px 16px rgba(180,80,140,.25); }
.s4 { background: radial-gradient(circle at 35% 30%, #d7ffc9 0%, #4f9250 45%, #081208 100%); box-shadow: inset -6px -6px 13px rgba(0,0,0,.72), 0 0 28px rgba(120,220,120,.24), 3px 3px 16px rgba(80,180,80,.22); }
.s5 { background: radial-gradient(circle at 35% 30%, #d9c8ff 0%, #5f3c9d 45%, #0c0715 100%); box-shadow: inset -6px -6px 13px rgba(0,0,0,.72), 0 0 28px rgba(165,110,255,.28), 3px 3px 16px rgba(130,80,220,.25); }

.p-ring {
  position: absolute; width: 94px; height: 28px;
  border-radius: 50%; border: 1px solid rgba(201,168,76,.28);
  transform: rotateX(72deg); pointer-events: none;
  top: 50%; left: 50%; margin-top: -14px; margin-left: -47px;
}

.p-label {
  font-family: var(--cond); font-size: 11px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--cream60); text-align: center; line-height: 1.3;
  white-space: nowrap; pointer-events: none;
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%);
  background: rgba(8,8,8,.78); padding: 4px 8px; border: 1px solid rgba(201,168,76,.08); border-radius: 999px;
}

.planet:hover .p-sphere, .planet.active .p-sphere {
  transform: scale(1.26);
  filter: saturate(1.18);
  box-shadow: inset -5px -4px 10px rgba(0,0,0,.6), 0 0 32px rgba(201,168,76,.6), 0 0 10px rgba(201,168,76,.72);
}

/* Info Panel */
#info-panel {
  position: fixed; z-index: 800;
  background: linear-gradient(180deg, rgba(12,10,8,.98), rgba(9,9,9,.96)); backdrop-filter: blur(16px);
  border: 1px solid rgba(201,168,76,.22);
  padding: 30px 26px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  /* Desktop: right side */
  top: 50%; right: clamp(16px,4vw,56px);
  width: clamp(280px,30vw,380px);
  transform: translateY(-50%) translateX(16px);
}
#info-panel.open { opacity: 1; pointer-events: all; transform: translateY(-50%) translateX(0); }

.info-close {
  position: absolute; top: 12px; right: 14px;
  font-size: 14px; color: var(--gray); transition: color .2s;
}
.info-close:hover { color: var(--cream); }
.info-num { font-family: var(--cond); font-size: 11px; letter-spacing: .26em; color: var(--gold); margin-bottom: 8px; }
#info-panel h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--cream); line-height: 1.15; margin-bottom: 12px; }
#info-panel p { font-size: 14px; color: rgba(250,247,240,.76); line-height: 1.82; margin-bottom: 14px; }
#info-list { border-top: 1px solid rgba(201,168,76,.1); padding-top: 12px; display: flex; flex-direction: column; gap: 8px; }
#info-list li { font-family: var(--cond); font-size: 11px; letter-spacing: .08em; color: var(--gold); display: flex; align-items: center; gap: 8px; }
#info-list li::before { content: ''; width: 14px; height: 1px; background: var(--gold); flex-shrink: 0; }

.orbit-hint { text-align: center; font-family: var(--cond); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: rgba(201,168,76,.72); margin-top: 18px; }

/* ── VALUE INVESTMENT ───────────────────── */
#value-investment { background: linear-gradient(180deg, #090909 0%, #0c0c0c 100%); }
.value-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
}
.value-card {
  background: linear-gradient(180deg, rgba(19,19,19,.95), rgba(11,11,11,.96));
  border: 1px solid rgba(201,168,76,.08);
  padding: clamp(26px,3.2vw,42px);
}
.value-num {
  display: inline-block;
  font-family: var(--cond);
  font-size: 11px;
  letter-spacing: .24em;
  color: rgba(201,168,76,.58);
  margin-bottom: 18px;
}
.value-card h3 {
  font-family: var(--serif);
  font-size: clamp(22px,2.1vw,30px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--cream);
}
.value-card p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--cream60);
}

/* ── WHAT WE BUILD ────────────────────────── */
#what-we-build { background: var(--black2); }
.build-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px; max-width: var(--max); margin: 0 auto;
}
.b-card {
  background: var(--black3); padding: clamp(26px,3.5vw,42px);
  border: 1px solid transparent; transition: background .3s, border-color .3s;
}
.b-card:hover { background: #1c1c1c; border-color: var(--gold08); }
.bc-n { font-family: var(--cond); font-size: 11px; letter-spacing: .24em; color: rgba(201,168,76,.4); display: block; margin-bottom: 18px; }
.bc-ico { width: 44px; height: 44px; margin-bottom: 18px; }
.b-card h3 { font-family: var(--serif); font-size: clamp(17px,1.8vw,21px); font-weight: 400; color: var(--cream); line-height: 1.3; margin-bottom: 12px; }
.b-card p { font-size: 13.5px; color: var(--cream60); line-height: 1.8; }

/* ── PROCESS ──────────────────────────────── */
#process { background: var(--black); }
.process-list { max-width: 780px; margin: 0 auto; }
.p-step { display: grid; grid-template-columns: 58px 1fr; gap: 0 28px; padding: 38px 0; }
.ps-num { font-family: var(--cond); font-size: 12px; letter-spacing: .18em; color: var(--gold); padding-top: 5px; }
.ps-body h3 { font-family: var(--serif); font-size: clamp(20px,2.2vw,28px); font-weight: 400; color: var(--cream); margin-bottom: 12px; line-height: 1.2; }
.ps-body p { font-size: 14px; color: var(--cream60); line-height: 1.85; margin-bottom: 18px; max-width: 580px; }
.ps-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ps-tags span { font-family: var(--cond); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,168,76,.2); padding: 4px 12px; }
.p-div { height: 1px; background: linear-gradient(to right, transparent, rgba(201,168,76,.18), transparent); margin: 0 0 0 58px; }

/* ── STANDARD ─────────────────────────────── */
#standard { background: var(--black2); }
.pillars { display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(28px,4vw,56px) clamp(36px,5vw,72px); max-width: var(--max); margin: 0 auto clamp(56px,7vw,88px); }
.pillar { padding-top: 22px; }
.pillar-rule { width: 30px; height: 1px; background: var(--gold); margin-bottom: 16px; transition: width .6s var(--ease); }
.pillar.vis .pillar-rule { width: 44px; }
.pillar h4 { font-family: var(--serif); font-size: clamp(16px,1.7vw,21px); font-weight: 500; color: var(--cream); margin-bottom: 10px; }
.pillar p { font-size: 14px; color: var(--cream60); line-height: 1.85; }
.std-quote { max-width: 700px; margin: 0 auto; border-left: 2px solid var(--gold); padding: 24px 0 24px 36px; }
.sq { display: block; font-family: var(--serif); font-size: 56px; line-height: .5; color: var(--gold); opacity: .55; margin-bottom: 14px; }
.std-quote { font-family: var(--serif); font-size: clamp(16px,1.8vw,22px); font-weight: 300; font-style: italic; color: var(--cream); line-height: 1.6; }
.std-quote cite { display: block; margin-top: 16px; font-family: var(--cond); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; font-style: normal; color: var(--gold); }

/* ── VISION ZOOM ──────────────────────────── */
#vision-zoom { background: var(--black3); text-align: center; overflow: hidden; display: flex; align-items: center; justify-content: center; min-height: 80vh; }
#vz-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(201,168,76,.06) 0%, transparent 65%); pointer-events: none; }
.vz-inner { position: relative; z-index: 2; max-width: 640px; display: flex; flex-direction: column; align-items: center; gap: 26px; padding: 0 var(--pad); }
.vz-sub { font-size: clamp(14px,1.4vw,16px); color: var(--cream60); line-height: 1.85; max-width: 540px; }
.vz-stats { display: flex; align-items: stretch; border: 1px solid rgba(201,168,76,.15); }
.vz-stat { display: flex; flex-direction: column; align-items: center; padding: 18px 26px; gap: 5px; }
.vz-lbl { font-family: var(--cond); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--gray); }
.vz-val { font-family: var(--serif); font-size: 16px; font-weight: 400; color: var(--cream); }
.vz-sep { width: 1px; background: rgba(201,168,76,.15); }
.vz-note { font-size: 12px; color: var(--gray); line-height: 1.7; max-width: 440px; }

/* ── FOOTER ───────────────────────────────── */
#site-footer { background: var(--black); border-top: 1px solid var(--gold08); padding: 44px var(--pad); }
.ft-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.ft-brand { display: flex; align-items: center; gap: 12px; }
.ft-logo-wrap { width: 36px; height: 36px; border-radius: 50%; background: var(--black); border: 1px solid var(--gold18); overflow: hidden; flex-shrink: 0; }
.ft-logo-img { width: 100%; height: 100%; object-fit: cover; }
.ft-brand div { display: flex; flex-direction: column; gap: 2px; }
.ft-name { font-family: var(--cond); font-size: 13px; letter-spacing: .1em; color: var(--cream); }
.ft-sub { font-family: var(--cond); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--gray); }
.ft-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.ft-nav a { font-family: var(--cond); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gray); transition: color .2s; }
.ft-nav a:hover { color: var(--cream); }
.ft-copy p { font-family: var(--cond); font-size: 11px; letter-spacing: .05em; color: rgba(140,135,125,.45); line-height: 1.55; }
.ft-copy { text-align: right; }

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 960px) {
  .hero-proof { grid-template-columns: 1fr; max-width: 520px; }
  .value-grid { grid-template-columns: 1fr; }
  /* Info panel becomes bottom sheet on smaller screens */
  #info-panel {
    top: auto; right: 0; left: 0; bottom: 0;
    width: 100%; transform: translateY(12px) !important;
    border-bottom: none;
  }
  #info-panel.open { transform: translateY(0) !important; }

  .pillars { grid-template-columns: 1fr; gap: 32px; }

  .vz-stats { flex-direction: column; width: 100%; max-width: 280px; }
  .vz-sep { width: 100%; height: 1px; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

@media (max-width: 640px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-gold, .btn-outline { width: 100%; max-width: 300px; }
  .hero-proof { grid-template-columns: 1fr; max-width: 360px; }
  .value-grid { grid-template-columns: 1fr; }
  .p-step { grid-template-columns: 44px 1fr; gap: 0 16px; }
  .ft-inner { flex-direction: column; align-items: flex-start; }
  .ft-copy { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
