/* =========================================================
   MOB Public — GenZ / GenAlpha experience layer
   Loaded AFTER classic index styles. Same content, new UX.
   Fonts: Bricolage Grotesque + Space Grotesk
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,700;12..96,800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root{
  /* sober professional business palette */
  --gz-bg:#0B1220;
  --gz-bg2:#111A2E;
  --gz-panel:rgba(16,26,44,.78);
  --gz-ink:#F2F4F8;
  --gz-mute:rgba(190,200,218,.68);
  --gz-lime:#C6A75E;          /* muted gold accent */
  --gz-lime-2:#D8C08A;
  --gz-orange:#A8894E;        /* bronze */
  --gz-cyan:#8FA3C1;          /* steel blue */
  --gz-line:rgba(198,167,94,.22);
  --gz-glass:rgba(255,255,255,.05);
  --gz-radius:22px;
  --gz-ease:cubic-bezier(.22,1,.36,1);
  --gz-dock:76px;
  --primary:#C6A75E;
  --gold:#C6A75E;
  --gold-soft:#D8C08A;
  --dark:#0B1220;
  --text:#F2F4F8;
}

html{scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
  }
}

body{
  font-family:'Space Grotesk',sans-serif !important;
  background:
    radial-gradient(900px 520px at 12% -8%,rgba(198,167,94,.10),transparent 58%),
    radial-gradient(760px 480px at 92% 0%,rgba(49,74,120,.22),transparent 55%),
    radial-gradient(820px 560px at 50% 110%,rgba(198,167,94,.06),transparent 58%),
    var(--gz-bg) !important;
  color:var(--gz-ink) !important;
  overflow-x:hidden;
  padding-bottom:calc(var(--gz-dock) + env(safe-area-inset-bottom,0px));
}

/* subtle ambient wash */
body::before{
  content:'';
  position:fixed;
  inset:-20%;
  z-index:0;
  pointer-events:none;
  background:
    radial-gradient(closest-side at 28% 22%,rgba(198,167,94,.08),transparent 70%),
    radial-gradient(closest-side at 78% 58%,rgba(49,74,120,.16),transparent 72%);
  animation:none;
  filter:blur(52px);
  opacity:.7;
}
@keyframes gzAurora{to{transform:rotate(360deg)}}

body::after{
  content:'';
  position:fixed;
  inset:0;
  z-index:1;
  pointer-events:none;
  opacity:.045;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='140' height='140' filter='url(%23n)' opacity='0.55'/></svg>");
}

#loader{
  background:#080E1A !important;
}
.loader-circle{
  border-color:rgba(198,167,94,.2) !important;
  border-top-color:var(--gz-lime) !important;
  box-shadow:0 0 16px rgba(198,167,94,.16);
}

h1,h2,h3,h4,h5,.logo-text h2,.section-title h2,.hero-content h1{
  font-family:'Bricolage Grotesque',sans-serif !important;
  letter-spacing:-.04em;
}

/* spotlight cursor follow */
.gz-spot{
  position:fixed;
  width:42vw;
  height:42vw;
  max-width:520px;
  max-height:520px;
  border-radius:50%;
  pointer-events:none;
  z-index:2;
  background:radial-gradient(circle,rgba(198,167,94,.12),transparent 68%);
  transform:translate(-50%,-50%);
  opacity:0;
  transition:opacity .35s ease;
  mix-blend-mode:screen;
}
body.gz-spot-on .gz-spot{opacity:1}
@media (max-width:900px),(pointer:coarse){
  .gz-spot{display:none !important}
}

/* =========================
   HEADER — floating glass pill
   ========================= */
header{
  position:fixed !important;
  top:14px !important;
  left:50% !important;
  right:auto !important;
  width:min(1120px,calc(100% - 24px)) !important;
  transform:translateX(-50%);
  z-index:1000 !important;
  background:rgba(10,16,30,.55) !important;
  border:1px solid rgba(198,167,94,.22) !important;
  border-bottom:1px solid rgba(198,167,94,.22) !important;
  border-radius:999px !important;
  backdrop-filter:blur(18px) saturate(1.3) !important;
  box-shadow:0 18px 50px rgba(0,0,0,.35);
  transition:width .35s var(--gz-ease), border-radius .35s var(--gz-ease), top .35s var(--gz-ease);
}
header.is-scrolled{
  top:8px !important;
  width:min(980px,calc(100% - 18px)) !important;
  background:rgba(11,18,32,.78) !important;
}
.navbar{
  max-width:none !important;
  margin:0 !important;
  padding:10px 14px 10px 22px !important;
  min-height:0 !important;
  gap:12px;
}
.logo-text h2{
  font-size:clamp(18px,2.4vw,24px) !important;
  font-weight:800 !important;
  color:#fff !important;
}
.logo-text h2 span{color:var(--gz-lime) !important}
.logo-text p{
  display:none !important;
}
nav ul{
  gap:4px !important;
  background:rgba(255,255,255,.04);
  border-radius:999px;
  padding:4px;
}
nav ul li a{
  color:var(--gz-mute) !important;
  font-size:15.5px !important;
  font-weight:650 !important;
  letter-spacing:.01em;
  padding:9px 14px !important;
  border-radius:999px;
  transition:background .25s var(--gz-ease), color .25s var(--gz-ease), transform .25s var(--gz-ease);
}
nav ul li a:hover,
nav ul li a.active{
  color:#0B1220 !important;
  background:var(--gz-lime) !important;
  transform:translateY(-1px);
}
.nav-buttons .btn,
.nav-login{
  border-radius:999px !important;
  border-color:rgba(198,167,94,.28) !important;
  color:var(--gz-lime) !important;
  padding:10px 16px !important;
  font-size:14.5px !important;
  font-weight:700 !important;
  background:rgba(198,167,94,.08) !important;
}
.nav-login:hover{
  background:var(--gz-lime) !important;
  color:#0B1220 !important;
}

@media (max-width:980px){
  header{
    top:10px !important;
    width:calc(100% - 16px) !important;
    border-radius:22px !important;
  }
  nav{display:none !important}
  .navbar{justify-content:space-between}
}

/* =========================
   MOBILE DOCK
   ========================= */
.gz-dock{
  position:fixed;
  left:50%;
  bottom:calc(10px + env(safe-area-inset-bottom,0px));
  transform:translateX(-50%);
  z-index:1200;
  width:min(520px,calc(100% - 16px));
  display:none;
  padding:8px;
  border-radius:24px;
  background:rgba(10,16,28,.88);
  border:1px solid rgba(198,167,94,.28);
  backdrop-filter:blur(20px);
  box-shadow:0 20px 50px rgba(0,0,0,.45);
}
.gz-dock-inner{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:2px;
}
.gz-dock a{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  min-height:56px;
  border-radius:16px;
  color:var(--gz-mute);
  font-size:11.5px;
  font-weight:650;
  letter-spacing:.02em;
  transition:background .2s var(--gz-ease), color .2s var(--gz-ease), transform .2s var(--gz-ease);
}
.gz-dock a i{font-size:17px}
.gz-dock a.active,
.gz-dock a:hover{
  color:#0B1220;
  background:var(--gz-lime);
  transform:translateY(-2px);
}
.gz-dock a.gz-login{
  color:var(--gz-orange);
}
.gz-dock a.gz-login.active,
.gz-dock a.gz-login:hover{
  background:var(--gz-orange);
  color:#111;
}
@media (max-width:980px){
  .gz-dock{display:block}
}

/* =========================
   SECTIONS
   ========================= */
section{
  position:relative;
  z-index:3;
  padding:clamp(64px,9vw,120px) clamp(16px,4vw,48px) !important;
  scroll-margin-top:100px;
}
.section-title{
  max-width:1100px;
  margin:0 auto 36px !important;
}
.section-title h2{
  font-size:clamp(34px,7vw,72px) !important;
  line-height:0.95 !important;
  font-weight:800 !important;
  max-width:16ch;
  background:linear-gradient(120deg,#fff 20%,var(--gz-lime) 70%,var(--gz-cyan));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent !important;
}
.section-title h2::after{display:none !important}
.section-title p{
  color:var(--gz-mute) !important;
  font-size:clamp(15px,2.2vw,19px) !important;
  margin-top:16px !important;
  max-width:42ch;
}

/* =========================
   HERO — full-bleed + how-it-works path
   ========================= */
.hero{
  min-height:100svh !important;
  padding:0 !important;
  display:grid !important;
  place-items:start stretch;
  overflow:hidden;
  border-radius:0 !important;
}
.hero-wrapper{
  position:relative;
  z-index:2;
  width:100%;
  max-width:none !important;
  margin:0 !important;
  padding:0 !important;
  display:block !important;
}
.hero-top{
  display:block !important;
  min-height:100svh;
  position:relative;
}
.hero-image{
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  margin:0 !important;
  border-radius:0 !important;
  overflow:hidden;
  z-index:0;
}
.hero-image img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  transform:scale(1.14) translate3d(0,0,0);
  animation:gzKenSlide 48s ease-in-out infinite alternate;
  filter:saturate(1.04) contrast(1.04);
  will-change:transform;
}
@keyframes gzKenSlide{
  from{ transform:scale(1.14) translate3d(0,0,0); }
  to{ transform:scale(1.18) translate3d(-4.5%, 1.5%, 0); }
}
.hero-top::before{
  content:'';
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(180deg,rgba(11,18,32,.32) 0%,rgba(11,18,32,.12) 34%,rgba(11,18,32,.82) 78%,rgba(11,18,32,.97) 100%),
    linear-gradient(90deg,rgba(11,18,32,.78),transparent 58%);
  pointer-events:none;
}
/* Hero left copy — polished */
.hero-content{
  position:relative;
  z-index:2;
  max-width:min(980px, 66vw);
  padding:
    calc(88px + env(safe-area-inset-top))
    clamp(18px,5vw,64px)
    56px !important;
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:100svh;
  box-sizing:border-box;
}
.hero-brand-block{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:12px;
  margin-bottom:18px;
}
.hero-content .gz-brand{
  font-family:'Bricolage Grotesque',sans-serif;
  font-weight:800;
  font-size:clamp(34px,6.2vw,64px);
  line-height:.88;
  margin:0;
  color:#fff;
  letter-spacing:-.02em;
}
.hero-content .gz-brand span{color:var(--gz-lime)}
.hero-brand-rule{
  display:block;
  width:72px;
  height:3px;
  border-radius:99px;
  background:linear-gradient(90deg, var(--gz-lime), transparent);
}
.hero-content .gz-tag{
  margin:0 0 18px;
  display:inline-flex;
  align-items:center;
  width:fit-content;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid rgba(198,167,94,.28);
  background:rgba(198,167,94,.1);
  color:var(--gz-lime-2);
  font-size:clamp(11px,1.4vw,13px);
  font-weight:650;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.hero-content h1,
.hero-content .hero-title{
  font-size:clamp(40px,8.6vw,84px) !important;
  line-height:.95 !important;
  font-weight:800 !important;
  margin:0 0 20px !important;
  color:#fff !important;
  letter-spacing:-.025em;
  max-width:none;
}
.hero-line{
  display:block;
  white-space:nowrap;
}
.hero-word{
  display:inline-block;
  margin-right:.22em;
  opacity:0;
  transform:scale(.35);
  transform-origin:center bottom;
  will-change:transform, opacity;
}
.hero-word:last-child{ margin-right:0; }
.hero-word.is-gold{
  color:transparent !important;
  background:linear-gradient(120deg, var(--gz-lime) 10%, #F1E2B0 45%, var(--gz-lime-2) 80%);
  background-size:200% auto;
  -webkit-background-clip:text;
  background-clip:text;
}
.hero.is-ready .hero-word{
  animation:
    heroWordZoom 1.15s cubic-bezier(.18,.9,.22,1.15) forwards,
    heroGoldShift 7s ease-in-out infinite;
  animation-delay:
    calc(.4s + var(--i) * .38s),
    calc(3.2s + var(--i) * .38s);
}
.hero.is-ready .hero-word:not(.is-gold){
  animation:heroWordZoom 1.15s cubic-bezier(.18,.9,.22,1.15) forwards;
  animation-delay:calc(.4s + var(--i) * .38s);
}
@keyframes heroWordZoom{
  0%{
    opacity:0;
    transform:scale(.28) translateY(18px);
    filter:blur(4px);
  }
  58%{
    opacity:1;
    transform:scale(1.14) translateY(0);
    filter:blur(0);
  }
  78%{
    transform:scale(.96);
  }
  100%{
    opacity:1;
    transform:scale(1);
    filter:blur(0);
  }
}
@keyframes heroGoldShift{
  0%,100%{ background-position:0% center; }
  50%{ background-position:100% center; }
}
.hero-live{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px 12px;
  margin:0 0 18px;
  padding:12px 14px;
  width:fit-content;
  max-width:100%;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.04);
  backdrop-filter:blur(10px);
}
.hero-live-label{
  font-size:10px;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(242,244,248,.45);
}
.hero-live-word{
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:clamp(18px,2.4vw,24px);
  font-weight:800;
  letter-spacing:.08em;
  color:var(--gz-lime-2);
  min-width:7ch;
  display:inline-block;
  transition:opacity .28s ease, transform .28s var(--gz-ease);
}
.hero-live-word.is-swap{
  opacity:0;
  transform:translateY(8px);
}
.hero-live-sep{
  width:1px;
  height:18px;
  background:rgba(255,255,255,.16);
}
.hero-live-cap{
  font-size:13px;
  color:rgba(242,244,248,.7);
}
.hero-lead{
  max-width:46ch !important;
  color:rgba(242,244,248,.84) !important;
  font-size:clamp(15px,1.9vw,18px) !important;
  line-height:1.6 !important;
  margin:0 0 18px !important;
}
.hero-proof{
  list-style:none;
  margin:0 0 26px;
  padding:0;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.hero-proof li{
  font-size:12px;
  font-weight:600;
  letter-spacing:.02em;
  color:rgba(242,244,248,.78);
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(0,0,0,.18);
}
.hero-proof li::before{
  content:'';
  display:inline-block;
  width:6px;
  height:6px;
  border-radius:50%;
  margin-right:8px;
  background:var(--gz-lime);
  box-shadow:0 0 0 3px rgba(198,167,94,.15);
  vertical-align:middle;
}
.hero-cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}
.hero-cta-row .btn-primary{
  min-width:168px;
  justify-content:center;
  padding-inline:22px !important;
}
.hero-enter{
  opacity:0;
  transform:translate3d(0,22px,0);
  transition:opacity .75s var(--gz-ease), transform .75s var(--gz-ease);
  transition-delay:var(--d,0s);
}
.hero.is-ready .hero-enter{
  opacity:1;
  transform:none;
}

/* Glass node orbit — How it works (reference network style) */
.hero-orbit{
  position:absolute;
  right:clamp(96px, 16vw, 150px);
  top:calc(50% + 18px);
  transform:translateY(-50%);
  z-index:2;
  width:min(400px, 38vw);
  pointer-events:none;
}
.hero-orbit-link{ pointer-events:auto; }
.hero-orbit-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:8px;
  padding:0 6px;
}
.hero-orbit-kicker{
  font-size:11px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gz-lime);
}
.hero-orbit-link{
  font-size:12px;
  font-weight:600;
  color:rgba(242,244,248,.7);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:6px;
  transition:color .2s ease;
}
.hero-orbit-link:hover{ color:#fff; }
.hero-orbit-canvas{
  position:relative;
  width:100%;
  aspect-ratio:1;
  border-radius:28px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.1);
  background:
    radial-gradient(circle at 50% 48%, rgba(198,167,94,.12), transparent 42%),
    rgba(8,14,28,.28);
  backdrop-filter:blur(10px);
  box-shadow:0 24px 60px rgba(0,0,0,.3);
}
.hero-orbit-svg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:1;
}
.hero-orbit-links path{
  fill:none;
  stroke:url(#heroOrbitStroke);
  stroke-width:1.25;
  stroke-linecap:round;
  opacity:.85;
}
.hero-orbit-flows circle{
  fill:#E8B84A;
  filter:url(#heroOrbitGlow);
}
.hero-orbit-hub{
  position:absolute;
  left:50%;
  top:50%;
  z-index:2;
  width:108px;
  height:108px;
  margin:-54px 0 0 -54px;
  border-radius:50%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  border:1px solid rgba(198,167,94,.45);
  background:rgba(10,16,30,.72);
  backdrop-filter:blur(14px);
  box-shadow:0 0 0 10px rgba(198,167,94,.06), 0 14px 34px rgba(0,0,0,.32);
  color:#fff;
  text-align:center;
  padding:10px;
}
.hero-orbit-hub span{
  font-family:'Bricolage Grotesque',sans-serif;
  font-weight:800;
  font-size:clamp(15px, 2.1vw, 20px);
  letter-spacing:.08em;
  line-height:1;
  color:var(--gz-lime-2);
  transition:opacity .25s ease, transform .25s var(--gz-ease);
}
.hero-orbit-hub span.is-swap{
  opacity:0;
  transform:scale(.86);
}
.hero-orbit-hub small{
  font-size:10px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(242,244,248,.55);
  font-weight:600;
}
.hero-orbit-nodes{
  position:absolute;
  inset:0;
  z-index:3;
}
.hero-node{
  position:absolute;
  width:86px;
  height:86px;
  margin:-43px 0 0 -43px;
  left:var(--x);
  top:var(--y);
  border-radius:50%;
  border:2px solid rgba(255,255,255,.28);
  background:rgba(12,18,32,.55);
  box-shadow:0 10px 28px rgba(0,0,0,.32);
  overflow:hidden;
  color:#fff;
  text-align:center;
  transition:transform .35s var(--gz-ease), border-color .35s ease, box-shadow .35s ease;
  pointer-events:none;
}
.hero-node-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(.85) brightness(.72);
  transform:scale(1.05);
  transition:filter .35s ease, transform .45s var(--gz-ease);
}
.hero-node-shade{
  position:absolute;
  inset:0;
  background:radial-gradient(circle at center, rgba(8,14,28,.35) 0%, rgba(8,14,28,.72) 70%, rgba(8,14,28,.82) 100%);
  z-index:1;
}
.hero-node-copy{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:0;
  height:100%;
  padding:0 6px;
}
.hero-node strong{
  font-family:'Space Grotesk',sans-serif;
  font-size:10px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  line-height:1;
  text-shadow:0 2px 8px rgba(0,0,0,.55);
  transition:font-size .35s ease, letter-spacing .35s ease, color .35s ease;
}
.hero-node.is-active{
  border-color:rgba(198,167,94,.9);
  box-shadow:0 0 0 5px rgba(198,167,94,.16), 0 16px 36px rgba(0,0,0,.4);
  transform:scale(1.22);
  z-index:4;
}
.hero-node.is-active .hero-node-img{
  filter:saturate(1.05) brightness(.95);
  transform:scale(1.12);
}
.hero-node.is-active .hero-node-shade{
  background:radial-gradient(circle at center, rgba(8,14,28,.2) 0%, rgba(8,14,28,.55) 65%, rgba(8,14,28,.78) 100%);
}
.hero-node.is-active strong{
  color:var(--gz-lime-2);
  font-size:14px;
  letter-spacing:.12em;
}
.hero-node.is-done{
  border-color:rgba(198,167,94,.4);
}
.hero-node.is-done .hero-node-img{
  filter:saturate(.9) brightness(.8);
}
.hero-orbit-caption{
  margin:10px 6px 0;
  min-height:1.3em;
  font-size:13px;
  color:rgba(242,244,248,.7);
  text-align:center;
}


.btn{
  border-radius:999px !important;
  font-weight:700 !important;
  letter-spacing:.01em;
  transition:transform .25s var(--gz-ease), box-shadow .25s var(--gz-ease), background .25s var(--gz-ease), color .25s var(--gz-ease) !important;
}
.btn-primary{
  background:var(--gz-lime) !important;
  color:#0B1220 !important;
  border:none !important;
  box-shadow:0 12px 40px rgba(198,167,94,.28);
}
.btn-primary:hover{
  transform:translateY(-3px) scale(1.02);
  box-shadow:0 14px 32px rgba(0,0,0,.28);
  background:var(--gz-lime-2) !important;
}
.btn-outline,.btn-ghost{
  background:rgba(255,255,255,.06) !important;
  border:1px solid rgba(255,255,255,.2) !important;
  color:#fff !important;
  backdrop-filter:blur(10px);
}
.btn-outline:hover,.btn-ghost:hover{
  border-color:var(--gz-lime) !important;
  color:var(--gz-lime) !important;
  transform:translateY(-2px);
}

/* legacy feature chips (if used elsewhere) */
.hero-features{
  display:none !important;
}
.feature-mini{
  background:rgba(14,22,38,.78) !important;
  border:1px solid var(--gz-line) !important;
  border-radius:20px !important;
  padding:16px 14px !important;
}
.feature-mini i{color:var(--gz-lime) !important}
.feature-mini h4{color:#fff !important;margin:0 !important}

@media (max-width:980px){
  .hero-orbit{
    left:12px;
    right:12px;
    width:auto;
    max-width:380px;
    margin:0 auto;
    top:auto;
    bottom:12px;
    transform:none;
    pointer-events:auto;
  }
}
@media (max-width:800px){
  .hero-content{
    max-width:920px;
    padding-bottom:min(52vh, 420px) !important;
    min-height:100svh;
    justify-content:flex-start;
  }
  .hero-line{ white-space:normal; }
  .hero-content h1{font-size:clamp(40px,12vw,58px) !important}
  .hero-cta-row .btn{flex:1 1 auto; text-align:center; justify-content:center}
  .hero-node{ width:78px; height:78px; margin:-39px 0 0 -39px; }
  .hero-node.is-active strong{ font-size:12px; }
  .hero-orbit-hub{ width:92px; height:92px; margin:-46px 0 0 -46px; }
  .hero-orbit-hub span{ font-size:15px; }
}
@media (prefers-reduced-motion:reduce){
  .hero-image img{ animation:none !important; }
  .hero-enter{
    opacity:1;
    transform:none;
    transition:none;
  }
  .hero-word,
  .hero.is-ready .hero-word,
  .hero.is-ready .hero-word:not(.is-gold){
    animation:none !important;
    opacity:1 !important;
    transform:none !important;
    filter:none !important;
  }
  .hero-orbit-flows{ display:none; }
}

/* =========================
   MARQUEE strip
   ========================= */
.gz-marquee{
  position:relative;
  z-index:3;
  overflow:hidden;
  border-block:1px solid var(--gz-line);
  background:rgba(198,167,94,.05);
  padding:14px 0;
  margin-top:8px;
}
.gz-marquee-track{
  display:flex;
  gap:28px;
  width:max-content;
  animation:gzMarquee 28s linear infinite;
  font-family:'Bricolage Grotesque',sans-serif;
  font-weight:700;
  font-size:clamp(14px,2.4vw,18px);
  letter-spacing:.04em;
  text-transform:uppercase;
  color:var(--gz-lime);
}
.gz-marquee-track span{white-space:nowrap;opacity:.9}
.gz-marquee-track span::before{
  content:'◆';
  margin-right:28px;
  color:var(--gz-orange);
}
@keyframes gzMarquee{to{transform:translateX(-50%)}}

/* =========================
   WHY — 3D advantage stage
   ========================= */
#why{
  padding-top:clamp(28px,4vw,52px) !important;
  padding-bottom:clamp(40px,5vw,72px) !important;
  overflow:hidden;
}
.why-stage{
  max-width:1180px;
  margin:0 auto;
}
.why-stage-head{
  text-align:center;
  margin-bottom:clamp(18px,3vw,28px);
  position:relative;
  z-index:2;
}
.why-eyebrow{
  display:inline-block;
  margin:0 0 12px;
  padding:7px 14px;
  border-radius:999px;
  border:1px solid rgba(198,167,94,.35);
  background:rgba(198,167,94,.1);
  color:var(--gz-lime);
  font-size:11px;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.why-stage-head h2{
  font-family:'Bricolage Grotesque',sans-serif !important;
  font-size:clamp(30px,5.4vw,56px) !important;
  line-height:.95 !important;
  font-weight:800 !important;
  letter-spacing:-.04em;
  max-width:16ch;
  margin:0 auto !important;
  background:linear-gradient(120deg,#fff 10%,var(--gz-lime) 68%,var(--gz-cyan));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent !important;
}

.why-3d{
  position:relative;
  perspective:none;
  margin:0 auto 8px;
  padding:clamp(8px,2vw,18px) 4px clamp(16px,3vw,28px);
}
.why-orbit{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;
  opacity:.55;
}
.why-orb{
  position:absolute;
  border-radius:50%;
  filter:blur(2px);
  opacity:.55;
}
.why-orb-a{
  width:160px;height:160px;
  left:2%; top:4%;
  background:radial-gradient(circle at 35% 35%,rgba(198,167,94,.28),rgba(198,167,94,.04) 60%,transparent 72%);
  animation:whyFloatA 7s ease-in-out infinite;
}
.why-orb-b{
  width:110px;height:110px;
  right:4%; top:10%;
  background:radial-gradient(circle at 40% 40%,rgba(143,163,193,.28),transparent 70%);
  animation:whyFloatB 9s ease-in-out infinite;
}
.why-orb-c{
  width:80px;height:80px;
  right:14%; bottom:8%;
  background:radial-gradient(circle at 40% 40%,rgba(168,137,78,.22),transparent 70%);
  animation:whyFloatC 6.5s ease-in-out infinite;
}
@keyframes whyFloatA{
  0%,100%{transform:translate3d(0,0,0) scale(1)}
  50%{transform:translate3d(12px,-14px,0) scale(1.04)}
}
@keyframes whyFloatB{
  0%,100%{transform:translate3d(0,0,0)}
  50%{transform:translate3d(-14px,10px,0)}
}
@keyframes whyFloatC{
  0%,100%{transform:translate3d(0,0,0) scale(1)}
  50%{transform:translate3d(8px,-10px,0) scale(1.06)}
}

.why-scene{
  position:relative;
  z-index:1;
  width:min(980px,100%);
  margin:0 auto;
  transform:none !important;
  transform-style:flat;
}
.why-3d.is-tilting .why-scene{
  transition:none;
}

.why-floor,
.why-stack,
.why-ghost{
  display:none !important;
}

.why-plate{
  position:relative;
  z-index:3;
  min-height:0;
  padding:14px;
  border-radius:clamp(20px,2.5vw,28px);
  transform:none;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(145deg,rgba(255,255,255,.10),rgba(255,255,255,.03) 38%,rgba(14,22,40,.94)),
    radial-gradient(700px 340px at 12% 0%,rgba(198,167,94,.12),transparent 55%);
  backdrop-filter:blur(16px) saturate(1.08);
  box-shadow:
    0 16px 40px rgba(0,0,0,.30),
    0 1px 0 rgba(255,255,255,.08) inset;
  display:block;
  transition:box-shadow .35s var(--gz-ease);
  will-change:transform, opacity;
}
.why-plate.why-card-leave-next{
  animation:whyCardLeaveNext .3s var(--gz-ease) forwards;
}
.why-plate.why-card-leave-prev{
  animation:whyCardLeavePrev .3s var(--gz-ease) forwards;
}
.why-plate.why-card-enter-next{
  animation:whyCardEnterNext .48s var(--gz-ease) both;
}
.why-plate.why-card-enter-prev{
  animation:whyCardEnterPrev .48s var(--gz-ease) both;
}
@keyframes whyCardLeaveNext{
  to{opacity:.2; transform:translateX(-24px) scale(.988)}
}
@keyframes whyCardLeavePrev{
  to{opacity:.2; transform:translateX(24px) scale(.988)}
}
@keyframes whyCardEnterNext{
  from{opacity:0; transform:translateX(32px) scale(.985)}
  to{opacity:1; transform:translateX(0) scale(1)}
}
@keyframes whyCardEnterPrev{
  from{opacity:0; transform:translateX(-32px) scale(.985)}
  to{opacity:1; transform:translateX(0) scale(1)}
}
.why-plate-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
  gap:14px;
  align-items:stretch;
  min-height:clamp(210px,28vw,260px);
}
.why-plate-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:clamp(12px,2vw,22px) clamp(12px,2vw,20px);
  transition:opacity .38s var(--gz-ease), transform .45s var(--gz-ease);
}
.why-plate-media{
  position:relative;
  overflow:hidden;
  border-radius:clamp(18px,2.5vw,24px);
  min-height:100%;
  box-shadow:
    0 12px 28px rgba(0,0,0,.28),
    inset 0 0 0 1px rgba(255,255,255,.10);
}
.why-plate-media img{
  width:100%;
  height:100%;
  min-height:210px;
  object-fit:cover;
  display:block;
  transform:scale(1.04);
  transition:opacity .45s var(--gz-ease), transform .55s var(--gz-ease), filter .45s ease;
}
.why-plate-media::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(11,18,32,.28),transparent 40%);
  pointer-events:none;
  z-index:1;
}

/* directional swap animations */
.why-spot-num,
.why-spot-title,
.why-spot-copy,
.why-orb-icon{
  transition:opacity .38s var(--gz-ease), transform .45s var(--gz-ease), filter .38s ease;
}
.why-plate.why-leave-next .why-plate-copy{
  opacity:0;
  transform:translateX(-28px) translateZ(28px);
}
.why-plate.why-leave-prev .why-plate-copy{
  opacity:0;
  transform:translateX(28px) translateZ(28px);
}
.why-plate.why-leave-next .why-plate-media img,
.why-plate.why-leave-prev .why-plate-media img{
  opacity:0;
  filter:blur(6px);
}
.why-plate.why-leave-next .why-plate-media img{
  transform:scale(1.08) translateX(36px);
}
.why-plate.why-leave-prev .why-plate-media img{
  transform:scale(1.08) translateX(-36px);
}
.why-plate.why-leave-next .why-orb-icon,
.why-plate.why-leave-prev .why-orb-icon{
  opacity:0;
  transform:scale(.7) rotate(-12deg);
}
.why-plate.why-enter-next .why-plate-copy{
  animation:whyCopyInNext .55s var(--gz-ease) both;
}
.why-plate.why-enter-prev .why-plate-copy{
  animation:whyCopyInPrev .55s var(--gz-ease) both;
}
.why-plate.why-enter-next .why-plate-media img{
  animation:whyImgInNext .6s var(--gz-ease) both;
}
.why-plate.why-enter-prev .why-plate-media img{
  animation:whyImgInPrev .6s var(--gz-ease) both;
}
.why-plate.why-enter-next .why-orb-icon,
.why-plate.why-enter-prev .why-orb-icon{
  animation:whyOrbIn .55s var(--gz-ease) both;
}
.why-plate.why-enter-next .why-spot-num,
.why-plate.why-enter-prev .why-spot-num{
  animation:whyNumPop .55s var(--gz-ease) both;
}
@keyframes whyCopyInNext{
  from{opacity:0;transform:translateX(32px)}
  to{opacity:1;transform:translateX(0)}
}
@keyframes whyCopyInPrev{
  from{opacity:0;transform:translateX(-32px)}
  to{opacity:1;transform:translateX(0)}
}
@keyframes whyImgInNext{
  from{opacity:0;transform:scale(1.1) translateX(-40px);filter:blur(8px)}
  to{opacity:1;transform:scale(1.04) translateX(0);filter:blur(0)}
}
@keyframes whyImgInPrev{
  from{opacity:0;transform:scale(1.1) translateX(40px);filter:blur(8px)}
  to{opacity:1;transform:scale(1.04) translateX(0);filter:blur(0)}
}
@keyframes whyOrbIn{
  from{opacity:0;transform:scale(.5) rotate(20deg)}
  to{opacity:1;transform:scale(1) rotate(0)}
}
@keyframes whyNumPop{
  0%{opacity:0;transform:translateY(18px) scale(.86)}
  70%{opacity:1;transform:translateY(-4px) scale(1.04)}
  100%{opacity:1;transform:translateY(0) scale(1)}
}
.why-chip{
  transition:transform .25s var(--gz-ease), background .25s var(--gz-ease), border-color .25s var(--gz-ease), color .25s var(--gz-ease), box-shadow .25s var(--gz-ease);
}
.why-chip.why-chip-pulse{
  animation:whyChipPulse .45s var(--gz-ease);
}
@keyframes whyChipPulse{
  0%{transform:translateY(-4px) scale(1)}
  40%{transform:translateY(-10px) scale(1.05)}
  100%{transform:translateY(-8px) scale(1.02)}
}
.why-plate::before{
  content:'';
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:linear-gradient(125deg,rgba(255,255,255,.22),transparent 28%,transparent 62%,rgba(198,167,94,.08));
  pointer-events:none;
  mix-blend-mode:screen;
  opacity:.7;
}
.why-plate-shine{
  position:absolute;
  inset:-40% -60%;
  background:linear-gradient(115deg,transparent 35%,rgba(255,255,255,.28) 48%,transparent 62%);
  transform:translateX(-40%) rotate(8deg);
  animation:whyShine 5.5s ease-in-out infinite;
  pointer-events:none;
  z-index:4;
}
@keyframes whyShine{
  0%,55%{transform:translateX(-55%) rotate(8deg);opacity:0}
  70%{opacity:.55}
  100%{transform:translateX(55%) rotate(8deg);opacity:0}
}
.why-plate-edge{
  position:absolute;
  inset:0;
  border-radius:inherit;
  box-shadow:inset 0 0 0 1px rgba(198,167,94,.18);
  pointer-events:none;
  z-index:5;
}

.why-spot-meta{
  position:relative;
  z-index:2;
  display:flex;
  align-items:baseline;
  gap:6px;
  margin-bottom:6px;
}
.why-spot-num{
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:clamp(48px,7vw,84px);
  font-weight:800;
  line-height:.78;
  letter-spacing:-.08em;
  color:var(--gz-lime);
  text-shadow:
    0 1px 0 rgba(255,255,255,.25),
    0 10px 22px rgba(0,0,0,.28);
  transition:transform .45s var(--gz-ease), opacity .35s ease;
}
.why-spot-of{
  font-size:clamp(16px,2vw,22px);
  font-weight:700;
  color:rgba(242,244,248,.45);
}

.why-orb-icon{
  position:absolute;
  z-index:3;
  left:14px;
  bottom:14px;
  width:58px;
  height:58px;
  transform-style:preserve-3d;
  transition:transform .5s var(--gz-ease), opacity .35s ease;
}
.why-orb-ring{
  position:absolute;
  inset:-8px;
  border-radius:50%;
  border:1px dashed rgba(198,167,94,.28);
  animation:whySpin 14s linear infinite;
}
.why-orb-core{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:
    radial-gradient(circle at 32% 28%,rgba(255,255,255,.55),transparent 28%),
    radial-gradient(circle at 50% 55%,rgba(198,167,94,.95),rgba(140,110,50,.85) 55%,rgba(20,28,45,.9));
  color:#0B1220;
  font-size:20px;
  box-shadow:
    0 14px 28px rgba(0,0,0,.4),
    0 8px 20px rgba(0,0,0,.28),
    inset 0 2px 6px rgba(255,255,255,.45);
  animation:whyBob 3.8s ease-in-out infinite;
}
@keyframes whySpin{to{transform:rotate(360deg)}}
@keyframes whyBob{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
}

.why-spot-title{
  position:relative;
  z-index:2;
  margin:0 0 8px !important;
  font-family:'Bricolage Grotesque',sans-serif !important;
  font-size:clamp(26px,4.2vw,42px) !important;
  line-height:.95 !important;
  font-weight:800 !important;
  letter-spacing:-.045em;
  color:#fff !important;
  max-width:14ch;
  text-shadow:0 10px 24px rgba(0,0,0,.35);
  transition:transform .45s var(--gz-ease), opacity .3s ease;
}
.why-spot-copy{
  position:relative;
  z-index:2;
  margin:0 !important;
  max-width:34ch;
  color:rgba(242,244,248,.82) !important;
  font-size:clamp(14px,1.7vw,17px) !important;
  line-height:1.45 !important;
  transition:transform .45s var(--gz-ease), opacity .3s ease;
}
.why-spot-bar{
  position:relative;
  z-index:2;
  margin-top:16px;
  height:4px;
  width:min(200px,70%);
  border-radius:99px;
  background:rgba(255,255,255,.12);
  overflow:hidden;
  box-shadow:inset 0 1px 2px rgba(0,0,0,.35);
}
.why-spot-bar i{
  display:block;
  height:100%;
  width:0%;
  border-radius:inherit;
  background:linear-gradient(90deg,var(--gz-lime),var(--gz-cyan));
  box-shadow:0 0 10px rgba(198,167,94,.22);
}

.why-rails{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:10px;
  margin-top:8px;
  position:relative;
  z-index:2;
}
.why-dots{
  display:none;
  position:relative;
  z-index:2;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin-top:16px;
  padding:4px 0 2px;
}
.why-dot{
  appearance:none;
  width:11px;
  height:11px;
  padding:0;
  border-radius:999px;
  border:1px solid rgba(198,167,94,.45);
  background:rgba(255,255,255,.14);
  cursor:pointer;
  transition:transform .25s var(--gz-ease), background .25s var(--gz-ease), width .25s var(--gz-ease), border-color .25s var(--gz-ease);
}
.why-dot.active{
  width:28px;
  background:var(--gz-lime);
  border-color:transparent;
  transform:scale(1.05);
}
.why-dot:focus-visible{
  outline:2px solid var(--gz-lime-2);
  outline-offset:3px;
}
.why-chip{
  appearance:none;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:var(--gz-mute);
  border-radius:18px;
  padding:14px 12px;
  text-align:left;
  cursor:pointer;
  min-height:76px;
  display:flex;
  flex-direction:column;
  gap:6px;
  transform:translateY(0);
  transition:transform .25s var(--gz-ease), background .25s var(--gz-ease), border-color .25s var(--gz-ease), color .25s var(--gz-ease), box-shadow .25s var(--gz-ease);
}
.why-chip:hover{
  transform:translateY(-6px);
  border-color:rgba(198,167,94,.35);
  color:#fff;
  box-shadow:0 16px 30px rgba(0,0,0,.28);
}
.why-chip.active{
  background:var(--gz-lime);
  border-color:transparent;
  color:#0B1220;
  box-shadow:
    0 12px 28px rgba(0,0,0,.28),
    0 0 0 1px rgba(255,255,255,.2) inset;
  transform:translateY(-8px) scale(1.02);
}
.why-chip-n{
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  opacity:.7;
}
.why-chip.active .why-chip-n{opacity:1}
.why-chip-t{
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:clamp(13px,1.2vw,15px);
  font-weight:800;
  line-height:1.15;
  letter-spacing:-.02em;
}

@media (max-width:900px){
  .why-3d{padding:8px 0 20px; perspective:none}
  .why-scene{transform:none !important}
  .why-ghost{display:none}
  .why-plate{padding:10px}
  .why-plate-grid{
    grid-template-columns:1fr;
    min-height:0;
    gap:10px;
  }
  .why-plate-copy{padding:10px 10px 4px}
  .why-plate-media{min-height:160px}
  .why-plate-media img{min-height:160px}
  .why-orb-a,.why-orb-b,.why-orb-c{opacity:.55}
  .why-rails{display:none !important}
  .why-dots{display:flex}
  .why-dot{
    width:12px;
    height:12px;
    /* larger tap target without changing visual size much */
    box-shadow:0 0 0 10px transparent;
  }
  .why-dot.active{width:30px}
}

@media (prefers-reduced-motion:reduce){
  .why-orb,.why-orb-ring,.why-orb-core,.why-plate-shine{animation:none !important}
  .why-scene{transform:none !important}
  .why-plate.why-leave-next,
  .why-plate.why-leave-prev,
  .why-plate.why-enter-next,
  .why-plate.why-enter-prev,
  .why-plate.why-card-leave-next,
  .why-plate.why-card-leave-prev,
  .why-plate.why-card-enter-next,
  .why-plate.why-card-enter-prev,
  .why-chip.why-chip-pulse{
    animation:none !important;
  }
  .why-plate.why-leave-next .why-plate-copy,
  .why-plate.why-leave-prev .why-plate-copy,
  .why-plate.why-leave-next .why-plate-media img,
  .why-plate.why-leave-prev .why-plate-media img{
    opacity:1 !important;
    transform:none !important;
    filter:none !important;
  }
}

/* =========================
   HOW IT WORKS — cinematic filmstrip (not Why-style spotlight)
   ========================= */
#works{
  overflow:hidden;
  padding-left:0 !important;
  padding-right:0 !important;
}
#works .works-shell{
  max-width:none;
  margin:0 auto;
  padding:0 0 8px;
}
#works .section-title{
  text-align:center;
  max-width:1100px;
  margin:0 auto 22px !important;
  padding:0 clamp(16px,4vw,48px);
}
#works .section-title h2{
  font-family:'Bricolage Grotesque',sans-serif !important;
  letter-spacing:-.04em;
  margin-left:auto;
  margin-right:auto;
}
#works .section-title p{
  margin-left:auto;
  margin-right:auto;
}
#works .arrow,
#works .steps-container{
  display:none !important;
}

.works-film{
  position:relative;
  margin:0 auto 40px;
  max-width:100%;
}
.works-film-toolbar{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  max-width:1200px;
  margin:0 auto 18px;
  padding:0 clamp(16px,4vw,48px);
}
.works-film-status{
  display:flex;
  align-items:baseline;
  gap:8px;
  min-width:0;
}
.works-film-idx{
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:clamp(36px,5vw,52px);
  font-weight:800;
  line-height:.8;
  letter-spacing:-.06em;
  color:var(--gz-lime);
}
.works-film-sep,
.works-film-total{
  font-weight:700;
  color:rgba(242,244,248,.4);
  font-size:18px;
}
.works-film-name{
  margin-left:8px;
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:clamp(16px,2vw,20px);
  font-weight:700;
  color:#fff;
  letter-spacing:-.02em;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:min(42vw,280px);
}
.works-film-actions{
  display:flex;
  align-items:center;
  gap:8px;
}
.works-film-btn{
  appearance:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-width:46px;
  height:46px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.05);
  color:#fff;
  font-family:'Space Grotesk',sans-serif;
  font-weight:700;
  font-size:13px;
  cursor:pointer;
  transition:transform .25s var(--gz-ease), background .25s var(--gz-ease), border-color .25s var(--gz-ease);
}
.works-film-btn:hover{
  transform:translateY(-2px);
  border-color:rgba(198,167,94,.4);
  background:rgba(198,167,94,.12);
}
.works-film-btn-primary{
  background:var(--gz-lime);
  color:#0B1220;
  border-color:transparent;
  padding:0 18px;
}
.works-film-btn-primary:hover{
  background:var(--gz-lime-2);
  border-color:transparent;
}
.works-film-btn:focus-visible{
  outline:2px solid var(--gz-lime-2);
  outline-offset:3px;
}
.works-film-btn.is-playing{
  background:rgba(198,167,94,.18);
  color:var(--gz-lime-2);
  border-color:rgba(198,167,94,.4);
}

/* route scrubber */
.works-route{
  position:relative;
  max-width:1200px;
  margin:0 auto 10px;
  padding:56px clamp(16px,4vw,48px) 8px;
  height:auto;
  min-height:78px;
}
.works-route-track{
  position:absolute;
  left:clamp(16px,4vw,48px);
  right:clamp(16px,4vw,48px);
  bottom:18px;
  height:3px;
  border-radius:99px;
  background:rgba(255,255,255,.1);
  overflow:hidden;
  transform:none;
  top:auto;
}
.works-route-fill{
  display:block;
  height:100%;
  width:0%;
  border-radius:inherit;
  background:linear-gradient(90deg,var(--gz-lime),var(--gz-cyan));
  box-shadow:0 0 12px rgba(198,167,94,.28);
  transition:width .7s var(--gz-ease);
}
.works-walker{
  position:absolute;
  bottom:14px;
  left:clamp(16px,4vw,48px);
  width:72px;
  height:84px;
  margin-left:-36px;
  z-index:4;
  pointer-events:none;
  transition:left .7s var(--gz-ease);
  transform-origin:50% 100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-end;
}
.works-walker.is-back{
  transform:scaleX(-1);
}
.works-walker > i{
  font-size:clamp(42px,5.5vw,58px);
  line-height:1;
  color:var(--gz-lime);
  filter:drop-shadow(0 10px 18px rgba(0,0,0,.5));
  background:linear-gradient(180deg,var(--gz-lime-2),var(--gz-lime) 55%,#A8894E);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  position:relative;
  z-index:1;
  margin-bottom:2px;
}
.works-walker-shadow{
  width:46px;
  height:12px;
  border-radius:50%;
  background:radial-gradient(ellipse at center,rgba(198,167,94,.55),transparent 70%);
  opacity:.9;
  flex:0 0 auto;
}

/* keep a light bob while paused on a stop */
.works-walker:not(.is-running) > i{
  animation:worksIdleBob 2.2s ease-in-out infinite;
}
@keyframes worksIdleBob{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-4px)}
}

/* continuous running look during auto walk-through + step moves */
.works-walker.is-running > i{
  animation:worksRunBob .32s ease-in-out infinite;
}
.works-walker.is-running .works-walker-shadow{
  animation:worksShadowPulse .32s ease-in-out infinite;
}
@keyframes worksRunBob{
  0%,100%{transform:translateY(0) rotate(-4deg)}
  50%{transform:translateY(-7px) rotate(4deg)}
}
@keyframes worksShadowPulse{
  0%,100%{transform:scaleX(1); opacity:.95}
  50%{transform:scaleX(.7); opacity:.5}
}

.works-route-bead{
  position:absolute;
  bottom:18px;
  left:clamp(16px,4vw,48px);
  width:12px;
  height:12px;
  margin-left:-6px;
  margin-bottom:-5px;
  border-radius:50%;
  background:var(--gz-lime);
  box-shadow:
    0 0 0 4px rgba(198,167,94,.14),
    0 6px 14px rgba(0,0,0,.3);
  transform:none;
  top:auto;
  transition:left .7s var(--gz-ease);
  z-index:2;
  pointer-events:none;
  opacity:.85;
}
.works-route-stops{
  position:absolute;
  left:clamp(16px,4vw,48px);
  right:clamp(16px,4vw,48px);
  bottom:18px;
  height:0;
  top:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:1;
  transform:none;
}
.works-stop{
  appearance:none;
  width:11px;
  height:11px;
  padding:0;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(11,18,32,.9);
  cursor:pointer;
  transition:transform .25s var(--gz-ease), background .25s var(--gz-ease), border-color .25s var(--gz-ease);
}
.works-stop.is-done{
  background:rgba(198,167,94,.45);
  border-color:rgba(198,167,94,.55);
}
.works-stop.active{
  background:var(--gz-lime);
  border-color:transparent;
  transform:scale(1.35);
}
.works-stop:focus-visible{
  outline:2px solid var(--gz-lime-2);
  outline-offset:4px;
}

/* horizontal film track */
.works-track{
  display:flex;
  gap:18px;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-snap-type:x mandatory;
  scroll-padding-inline:max(16px, calc(50vw - 340px));
  padding:18px max(16px, calc(50vw - 340px)) 28px;
  perspective:1200px;
  cursor:grab;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  overscroll-behavior-x:contain;
}
.works-track::-webkit-scrollbar{display:none}
.works-track.is-dragging{
  cursor:grabbing;
  scroll-snap-type:none;
  user-select:none;
}
.works-panel{
  position:relative;
  flex:0 0 min(78vw,640px);
  scroll-snap-align:center;
  min-height:clamp(250px,36vw,310px);
  border-radius:clamp(22px,3vw,32px);
  border:1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(160deg,rgba(255,255,255,.11) 0%,rgba(18,28,48,.55) 28%,rgba(10,16,30,.96) 72%),
    radial-gradient(520px 260px at 88% 8%,rgba(198,167,94,.22),transparent 58%),
    radial-gradient(420px 240px at 8% 90%,rgba(49,74,120,.28),transparent 62%);
  overflow:hidden;
  transform-origin:center center;
  transform:scale(.92) rotateY(12deg);
  opacity:.55;
  filter:saturate(.75);
  transition:
    transform .45s var(--gz-ease),
    opacity .35s ease,
    filter .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;
  box-shadow:0 16px 40px rgba(0,0,0,.28);
}
.works-panel::before{
  content:'';
  position:absolute;
  left:0; top:18px; bottom:18px;
  width:3px;
  border-radius:0 99px 99px 0;
  background:linear-gradient(180deg,transparent,var(--gz-lime),transparent);
  opacity:.35;
  z-index:3;
}
.works-panel.is-active{
  transform:scale(1) rotateY(0deg);
  opacity:1;
  filter:none;
  border-color:rgba(198,167,94,.42);
  box-shadow:
    0 32px 70px rgba(0,0,0,.45),
    0 0 0 1px rgba(198,167,94,.16) inset,
    0 0 60px rgba(198,167,94,.08);
}
.works-panel.is-active::before{opacity:1}
.works-panel.is-left{
  transform:scale(.9) rotateY(16deg) translateX(8px);
}
.works-panel.is-right{
  transform:scale(.9) rotateY(-16deg) translateX(-8px);
}
.works-panel-aura{
  position:absolute;
  inset:-20%;
  background:
    radial-gradient(circle at 70% 20%,rgba(198,167,94,.18),transparent 42%),
    radial-gradient(circle at 20% 80%,rgba(143,163,193,.14),transparent 46%);
  opacity:.55;
  pointer-events:none;
  z-index:0;
}
.works-panel.is-active .works-panel-aura{
  opacity:1;
  animation:worksAuraPulse 4.8s ease-in-out infinite;
}
@keyframes worksAuraPulse{
  0%,100%{transform:scale(1); opacity:.85}
  50%{transform:scale(1.06); opacity:1}
}
.works-panel-shine{
  position:absolute;
  inset:-40% -60%;
  background:linear-gradient(115deg,transparent 36%,rgba(255,255,255,.2) 48%,transparent 60%);
  transform:translateX(-55%) rotate(8deg);
  pointer-events:none;
  z-index:4;
  opacity:0;
}
.works-panel.is-active .works-panel-shine{
  animation:worksPanelShine 5.5s ease-in-out infinite;
}
@keyframes worksPanelShine{
  0%,50%{transform:translateX(-55%) rotate(8deg); opacity:0}
  65%{opacity:.55}
  100%{transform:translateX(55%) rotate(8deg); opacity:0}
}
.works-panel-mesh{
  position:absolute;
  inset:0;
  opacity:.07;
  pointer-events:none;
  z-index:1;
  background-image:
    linear-gradient(rgba(255,255,255,.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.55) 1px, transparent 1px);
  background-size:28px 28px;
  mask-image:radial-gradient(circle at 70% 30%,#000 20%,transparent 72%);
}
.works-panel-slab{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:clamp(140px,26vw,260px);
  font-weight:800;
  line-height:.78;
  letter-spacing:-.1em;
  color:transparent;
  -webkit-text-stroke:1px rgba(198,167,94,.12);
  pointer-events:none;
  user-select:none;
  z-index:1;
  opacity:.55;
}
.works-panel.is-active .works-panel-slab{
  -webkit-text-stroke:1px rgba(198,167,94,.2);
  color:rgba(198,167,94,.05);
  opacity:.7;
}
.works-panel-hook{
  position:absolute;
  left:0;
  right:0;
  top:0;
  z-index:2;
  pointer-events:none;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding:clamp(16px,2.8vw,26px) clamp(18px,3vw,28px) 0;
}
.works-panel-hook span{
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:clamp(26px,5vw,48px);
  font-weight:800;
  line-height:.9;
  letter-spacing:.04em;
  text-transform:uppercase;
  text-align:center;
  background:linear-gradient(120deg,#fff 8%,var(--gz-lime) 42%,var(--gz-lime-2) 78%,var(--gz-cyan));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  filter:drop-shadow(0 12px 28px rgba(0,0,0,.45));
  opacity:.42;
  transform:scale(.94) translateY(-6px);
  transition:opacity .4s var(--gz-ease), transform .45s var(--gz-ease);
}
.works-panel.is-active .works-panel-hook span{
  opacity:1;
  transform:scale(1) translateY(0);
  animation:worksHookPop .55s var(--gz-ease) both;
}
@keyframes worksHookPop{
  0%{opacity:0; transform:scale(.86) translateY(-14px)}
  70%{opacity:1; transform:scale(1.03) translateY(2px)}
  100%{opacity:1; transform:scale(1) translateY(0)}
}
.works-panel-body{
  position:relative;
  z-index:3;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  height:100%;
  min-height:inherit;
  padding:clamp(22px,3vw,36px);
  padding-top:clamp(72px,12vw,104px);
}
.works-panel-kicker{
  margin:0 0 8px !important;
  font-size:12px !important;
  font-weight:700 !important;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(216,192,138,.75) !important;
}
.works-panel h3{
  margin:0 0 10px !important;
  font-family:'Bricolage Grotesque',sans-serif !important;
  font-size:clamp(28px,4.5vw,44px) !important;
  line-height:.95 !important;
  font-weight:800 !important;
  letter-spacing:-.045em;
  color:#fff !important;
  max-width:14ch;
  text-shadow:0 10px 28px rgba(0,0,0,.35);
}
.works-panel-body > p:not(.works-panel-kicker){
  margin:0 !important;
  max-width:34ch;
  color:rgba(242,244,248,.82) !important;
  font-size:clamp(15px,1.8vw,18px) !important;
  line-height:1.45 !important;
}
.works-panel-foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-top:22px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.08);
}
.works-panel-progress{
  display:block;
  flex:1;
  height:4px;
  border-radius:99px;
  background:rgba(255,255,255,.1);
  overflow:hidden;
}
.works-panel-progress i{
  display:block;
  height:100%;
  width:0%;
  border-radius:inherit;
  background:linear-gradient(90deg,var(--gz-lime),var(--gz-cyan));
}
.works-panel.is-active .works-panel-progress i{
  animation:worksDwellBar 3.2s linear forwards;
}
@keyframes worksDwellBar{
  from{width:0%}
  to{width:100%}
}
.works-panel-cta{
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(242,244,248,.45);
  white-space:nowrap;
}
.works-panel.is-active .works-panel-cta{
  color:var(--gz-lime-2);
}

@media (max-width:720px){
  .works-film-name{display:none}
  .works-film-btn-primary span{display:none}
  .works-panel{
    flex-basis:min(86vw,420px);
    min-height:230px;
    transform:scale(.96);
  }
  .works-panel.is-left,
  .works-panel.is-right{
    transform:scale(.94) rotateY(0);
  }
  .works-panel.is-active{
    transform:scale(1) rotateY(0);
  }
  .works-track{
    scroll-padding-inline:16px;
    padding-left:16px;
    padding-right:16px;
    gap:12px;
  }
  .works-panel-hook span{font-size:clamp(22px,8vw,34px)}
  .works-panel-body{padding-top:68px}
}

@media (prefers-reduced-motion:reduce){
  .works-panel,
  .works-panel.is-left,
  .works-panel.is-right,
  .works-panel.is-active{
    transform:none !important;
    transition:none !important;
  }
  .works-route-fill,
  .works-route-bead,
  .works-walker{transition:none !important}
  .works-panel-aura,
  .works-panel-shine,
  .works-panel-ring,
  .works-panel.is-active .works-panel-progress i,
  .works-panel.is-active .works-panel-hook span,
  .works-walker.is-running > i,
  .works-walker:not(.is-running) > i,
  .works-walker.is-running .works-walker-shadow{
    animation:none !important;
  }
  .works-panel.is-active .works-panel-progress i{width:100%}
}

.learn-panel.glass-card,
.glass-card{
  background:rgba(14,22,38,.7) !important;
  border:1px solid rgba(198,167,94,.16) !important;
  border-radius:28px !important;
  backdrop-filter:blur(16px);
  box-shadow:none !important;
}

/* =========================
   LEARN CINEMA — full-bleed reel + dual deck
   ========================= */
#works .learn-tabs,
#works .learn-split,
#works .learn-studio{
  display:none !important;
}
#works .learn-block{
  max-width:1120px;
  width:100%;
  margin:44px auto 12px !important;
  padding:0 clamp(16px,4vw,48px);
  box-sizing:border-box;
}
#works .learn-cinema{
  display:grid;
  grid-template-columns:minmax(0,1fr);
  gap:16px;
  width:100%;
  max-width:100%;
  min-width:0;
  box-sizing:border-box;
}
#works .learn-reel,
#works .learn-deck{
  width:100%;
  max-width:100%;
  min-width:0;
  box-sizing:border-box;
  justify-self:stretch;
}
#works .learn-reel .media-stage{
  position:relative;
  width:100% !important;
  max-width:100% !important;
  min-width:0;
  height:auto !important;
  aspect-ratio:21 / 9;
  min-height:240px;
  max-height:360px;
  margin:0 !important;
  border-radius:28px !important;
  overflow:hidden;
  border:1px solid rgba(198,167,94,.18);
  background:#070b14;
  box-shadow:0 18px 40px rgba(0,0,0,.28);
  box-sizing:border-box !important;
}
#works .learn-reel .media-stage video{
  width:100% !important;
  max-width:100% !important;
  height:100% !important;
  object-fit:cover;
  display:block;
}
#works .learn-reel-caption{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:2;
  padding:clamp(18px,3vw,28px);
  background:linear-gradient(180deg,transparent,rgba(7,11,20,.88) 55%);
  pointer-events:none;
}
#works .learn-reel-caption h3{
  margin:8px 0 0 !important;
  font-family:'Bricolage Grotesque',sans-serif !important;
  font-size:clamp(26px,4vw,42px) !important;
  line-height:.95 !important;
  letter-spacing:-.04em;
  color:#fff !important;
  max-width:16ch;
  text-shadow:0 10px 28px rgba(0,0,0,.45);
}
#works .learn-reel .media-drop-hint{
  position:absolute;
  top:14px;
  right:14px;
  left:auto;
  bottom:auto;
  z-index:3;
  display:flex;
  align-items:center;
  gap:8px;
  max-width:min(280px,70%);
  padding:8px 12px;
  border-radius:999px;
  background:rgba(8,12,22,.72);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(10px);
}
#works .learn-reel .media-drop-hint i{color:var(--gz-lime);font-size:14px}
#works .learn-reel .media-drop-hint h4{
  margin:0 !important;
  font-size:12px !important;
  color:#fff !important;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
#works .learn-reel .media-drop-hint p,
#works .learn-reel .media-drop-hint code{display:none}

#works .learn-kicker{
  margin:0 !important;
  display:inline-flex;
  padding:6px 12px;
  border-radius:999px;
  border:1px solid rgba(198,167,94,.35);
  background:rgba(198,167,94,.12);
  color:var(--gz-lime) !important;
  font-size:11px !important;
  font-weight:700 !important;
  letter-spacing:.14em;
  text-transform:uppercase;
}

#works .learn-deck{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(0,1fr);
  gap:14px;
  align-items:stretch;
  width:100%;
}
#works .learn-deck-card{
  padding:clamp(16px,2vw,22px);
  border-radius:24px;
  border:1px solid rgba(198,167,94,.14);
  background:rgba(14,22,38,.62);
  backdrop-filter:blur(14px);
  display:flex;
  flex-direction:column;
  gap:10px;
  min-height:100%;
}
#works .learn-deck-own h4,
#works .learn-risk-head h4{
  margin:0 !important;
  font-family:'Bricolage Grotesque',sans-serif !important;
  font-size:clamp(20px,2.4vw,26px) !important;
  line-height:1.1 !important;
  letter-spacing:-.03em;
  color:#fff !important;
}
#works .learn-deck-own > p,
#works .learn-risk-head > p{
  margin:0 !important;
  color:rgba(210,218,232,.82) !important;
  font-size:14px !important;
  line-height:1.5 !important;
}
#works .learn-points{
  list-style:none;
  margin:6px 0 0 !important;
  padding:0 !important;
  display:flex;
  flex-direction:column;
  gap:8px;
}
#works .learn-points li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:rgba(242,244,248,.9);
  font-size:14px;
  line-height:1.35;
}
#works .learn-points i{
  color:var(--gz-lime);
  margin-top:2px;
  flex:0 0 auto;
}

#works .learn-risk-head{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:4px;
}
#works .risk-tiles{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:8px;
  margin-top:auto;
}
#works .risk-tile{
  appearance:none;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
  width:100%;
  min-height:132px;
  padding:14px 12px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  color:inherit;
  font:inherit;
  text-align:left;
  cursor:pointer;
  transition:transform .25s var(--gz-ease), border-color .25s var(--gz-ease), background .25s var(--gz-ease);
}
#works .risk-tile:hover{
  transform:translateY(-3px);
  border-color:rgba(198,167,94,.35);
  background:rgba(198,167,94,.08);
}
#works .risk-tile:focus-visible{
  outline:2px solid var(--gz-lime-2);
  outline-offset:2px;
}
#works .risk-tile-icon{
  width:40px;
  height:40px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:rgba(198,167,94,.14);
  border:1px solid rgba(198,167,94,.25);
  color:var(--gz-lime);
  font-size:16px;
}
#works .risk-tile-type{
  font-size:10px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(216,192,138,.85);
}
#works .risk-tile strong{
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:14px;
  font-weight:700;
  letter-spacing:-.02em;
  color:#fff;
  line-height:1.2;
  margin-top:auto;
}
#works .risk-tile-go{
  font-size:12px;
  font-weight:700;
  color:var(--gz-lime);
  display:inline-flex;
  align-items:center;
  gap:6px;
}

@media (max-width:900px){
  #works .learn-reel .media-stage{
    aspect-ratio:16 / 9;
    max-height:none;
    min-height:200px;
  }
  #works .learn-deck{
    grid-template-columns:1fr;
  }
  #works .risk-tiles{
    grid-template-columns:1fr;
  }
  #works .risk-tile{
    min-height:0;
    flex-direction:row;
    flex-wrap:wrap;
    align-items:center;
    gap:10px 12px;
  }
  #works .risk-tile strong{
    flex:1 1 140px;
    margin-top:0;
  }
  #works .risk-tile-go{margin-left:auto}
}

/* =========================
   ABOUT
   ========================= */
.about-box,
.about-grid{
  max-width:1200px;
  margin:0 auto;
}
.about-box{
  border-radius:32px !important;
  border:1px solid rgba(198,167,94,.18) !important;
  background:linear-gradient(145deg,rgba(198,167,94,.08),rgba(255,255,255,.03)) !important;
  overflow:hidden;
}
.about-points .point{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.18);
  padding:14px;
}
.about-video{
  border-radius:24px !important;
  overflow:hidden;
  border:1px solid rgba(198,167,94,.2);
}

/* =========================
   PROJECTS — story cards + mobile snap
   ========================= */
#projects .project-tabs{
  display:flex !important;
  gap:8px;
  overflow-x:auto;
  padding-bottom:6px;
  max-width:1360px;
  margin:0 auto 20px !important;
  -webkit-overflow-scrolling:touch;
}
.tab-btn{
  border-radius:999px !important;
  white-space:nowrap;
  flex:0 0 auto;
}
.tab-btn.active{
  background:var(--gz-lime) !important;
  color:#0B1220 !important;
  border-color:transparent !important;
}
.project-list{
  display:flex !important;
  flex-direction:column;
  gap:18px !important;
  max-width:1360px;
  width:min(1360px, calc(100% - 48px));
  margin:0 auto !important;
}
.project-card{
  display:grid !important;
  grid-template-columns:1.05fr 1.3fr .8fr !important;
  gap:0 !important;
  overflow:hidden !important;
  border-radius:28px !important;
  border:1px solid rgba(255,255,255,.1) !important;
  background:rgba(10,22,18,.85) !important;
  box-shadow:0 24px 60px rgba(0,0,0,.28) !important;
  transition:transform .4s var(--gz-ease), border-color .4s var(--gz-ease) !important;
}
.project-card.hidden{
  display:none !important;
}
.project-card:hover{
  transform:translateY(-8px);
  border-color:rgba(198,167,94,.22) !important;
}
.project-media{
  min-height:280px;
  border-radius:0 !important;
}
.project-copy,.project-side{padding:22px !important}
.project-copy .blurb{
  max-width:none !important;
}
.project-copy h3{
  font-size:clamp(24px,3vw,34px) !important;
  color:#fff !important;
}
.growth-pill{
  background:rgba(198,167,94,.12) !important;
  color:var(--gz-lime) !important;
  border:1px solid rgba(198,167,94,.25);
  border-radius:999px !important;
}
.stat-block .value{
  color:var(--gz-lime) !important;
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:clamp(28px,4vw,40px) !important;
}
.tag.live,.project-status-flag{
  background:var(--gz-orange) !important;
  color:#111 !important;
}

@media (max-width:980px){
  .project-list{
    display:flex !important;
    flex-direction:row !important;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    gap:14px !important;
    padding-bottom:10px;
    -webkit-overflow-scrolling:touch;
  }
  .project-card{
    flex:0 0 min(88vw,420px);
    grid-template-columns:1fr !important;
    scroll-snap-align:center;
    min-height:100%;
  }
  .project-media{min-height:220px}
  .project-side{border-top:1px solid rgba(255,255,255,.08)}
}

/* =========================
   LIVE TILES
   ========================= */
.live-projects{
  display:grid !important;
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  gap:12px !important;
  max-width:1200px;
  margin:0 auto !important;
}
.live-card{
  border-radius:22px !important;
  border:1px solid rgba(255,255,255,.1) !important;
  background:rgba(255,255,255,.04) !important;
  text-align:center;
  transition:transform .3s var(--gz-ease), background .3s var(--gz-ease), border-color .3s var(--gz-ease);
}
.live-card:hover{
  transform:translateY(-6px) scale(1.02);
  background:rgba(198,167,94,.1) !important;
  border-color:rgba(198,167,94,.22) !important;
}
.live-card i{color:var(--gz-lime) !important}
@media (max-width:800px){
  .live-projects{grid-template-columns:repeat(2,minmax(0,1fr)) !important}
}

/* =========================
   FAQ — split hub + slim answer chrome
   (structure/CSS live mainly in index-genz.html; light GenZ polish here)
   ========================= */
#faq .faq-shell{
  max-width:1200px;
  margin:0 auto;
}
#faq .faq-theater-head{
  padding-top:16px !important;
  padding-bottom:12px !important;
}
#faq .faq-stage-q{
  font-family:'Bricolage Grotesque',sans-serif !important;
}
#faq .faq-listen-rail{
  border-color:rgba(198,167,94,.22) !important;
}
#faq .faq-stage-answer p{
  font-size:15px;
  line-height:1.7;
}
.faq-console{ display:none !important; }

/* =========================
   CONTACT + FOOTER
   ========================= */
.contact-grid{
  max-width:1200px;
  margin:0 auto;
  gap:18px !important;
}
.contact-form{
  border-radius:28px !important;
  border:1px solid rgba(198,167,94,.18) !important;
  background:rgba(10,22,18,.85) !important;
}
.contact-form input,
.contact-form textarea,
.contact-form select{
  border-radius:14px !important;
  border:1px solid rgba(255,255,255,.12) !important;
  background:rgba(0,0,0,.25) !important;
  color:#fff !important;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{
  outline:none;
  border-color:var(--gz-lime) !important;
  box-shadow:0 0 0 3px rgba(198,167,94,.18);
}
footer{
  position:relative;
  z-index:3;
  border-top:1px solid var(--gz-line);
  background:rgba(0,0,0,.25);
  padding-bottom:calc(28px + var(--gz-dock)) !important;
}
.footer-grid a:hover{color:var(--gz-lime)}

/* =========================
   REVEAL + MOTION
   ========================= */
.reveal{
  opacity:0;
  transform:translateY(28px) scale(.985);
  filter:blur(6px);
  transition:opacity .7s var(--gz-ease), transform .7s var(--gz-ease), filter .7s var(--gz-ease);
}
.reveal.in-view,
.reveal.active,
.reveal.show,
.reveal.visible{
  opacity:1;
  transform:none;
  filter:none;
}

/* classic script may toggle .active on reveal — also support .in-view from our script */
section .reveal{will-change:transform,opacity}

/* Modals stay usable */
.modal,.popup,.gallery-modal,.risk-viewer,.privacy-modal,
#projectGalleryModal,#riskViewerModal,#privacyModal,#popupModal{
  z-index:2000;
}

/* Progress blob */
.gz-progress{
  position:fixed;
  top:0;left:0;
  height:3px;
  width:0%;
  z-index:1300;
  background:linear-gradient(90deg,var(--gz-lime),var(--gz-cyan));
  box-shadow:0 0 16px rgba(198,167,94,.28);
  transition:width .1s linear;
}
