/* ============================================================
   KALPANA AI · v4 styles
   Navy + gold. Red is alarm only. Bronze for depth.
   ============================================================ */

:root{
  --navy:#060818; --navy-2:#0A0E26; --panel:#0D1230; --panel-2:#11173A;
  --gold:#F5B83A; --gold-bright:#FFD37A; --gold-deep:#C68E1F; --bronze:#7A5520;
  --white:#F3F5FB; --ink:#E9ECF6; --muted:#A6ABC4; --muted-2:#71768F; --muted-3:#4B4F66;
  --red:#E13E47; --red-soft:rgba(225,62,71,.18);

  --hair:rgba(255,255,255,.08);
  --hair-2:rgba(255,255,255,.16);
  --hair-3:rgba(255,255,255,.22);

  --font:"PT Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-dev:"Tiro Devanagari Hindi", serif;
  --mono:"PT Mono", ui-monospace, monospace;

  --pad: clamp(22px, 5vw, 96px);
  --maxw: 1240px;

  --t-hero:    clamp(48px, 7.2vw, 100px);
  --t-h2:      clamp(36px, 4.6vw, 64px);
  --t-h3:      clamp(22px, 2.2vw, 30px);
  --t-lede:    clamp(18px, 1.5vw, 22px);
  --t-body:    17px;
  --t-eyebrow: 11px;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  background: var(--navy); color: var(--white);
  font-family: var(--font); font-size: var(--t-body); line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}
::selection{ background: var(--gold); color: var(--navy); }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
svg{ display:block; }
img{ display:block; max-width:100%; }
h1,h2,h3,h4,h5{ font-weight:700; line-height:1.06; letter-spacing:-.02em; }

.wrap{ max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
section{ position:relative; z-index:1; }

/* ambient bg */
.amb{ position:fixed; inset:0; z-index:0; pointer-events:none; overflow:hidden; }
.amb .dots{
  position:absolute; inset:-10%;
  background-image: radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask: radial-gradient(ellipse 80% 60% at 50% 20%, #000, transparent 78%);
  -webkit-mask: radial-gradient(ellipse 80% 60% at 50% 20%, #000, transparent 78%);
}
.amb .glow{ position:absolute; border-radius:50%; filter:blur(140px); opacity:.18; }
.amb .g1{ width:55vw; height:55vw; background:radial-gradient(circle, #20307a, transparent 70%); top:-14vw; left:-12vw; }
.amb .g2{ width:48vw; height:48vw; background:radial-gradient(circle, #3a2a14, transparent 70%); top:55vh; right:-14vw; }

.progress{
  position:fixed; top:0; left:0; height:2px; width:100%;
  background: var(--gold);
  transform: scaleX(0); transform-origin: 0;
  z-index:120;
}

/* nav */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:110;
  height:64px; display:flex; align-items:center;
  background: rgba(6,8,24,.7);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hair);
  transform: translateY(-100%);
}
.nav.show{ transform: translateY(0); }
.nav .wrap{ display:flex; align-items:center; justify-content:space-between; width:100%; }
.brand{ font-weight:700; font-size:18px; letter-spacing:-.01em; display:flex; align-items:baseline; gap:8px; }
.brand .b-ai{ color: var(--gold); }
.brand .b-dev{
  font-family: var(--font-dev); font-weight:400;
  font-size:14px; color: var(--muted-2); margin-left:4px;
}
.nav .email{
  color: var(--muted); font-size:14px; letter-spacing:.02em;
  display:inline-flex; align-items:center; gap:10px;
}
.nav .email:hover{ color: var(--gold); }
.nav .email::before{
  content:""; width:6px; height:6px; border-radius:50%;
  background: var(--gold); box-shadow: 0 0 12px var(--gold);
}

/* eyebrow */
.eyebrow{
  font-family: var(--mono);
  font-weight:700; font-size: var(--t-eyebrow); letter-spacing:.24em;
  text-transform:uppercase; color: var(--gold);
  display:inline-flex; align-items:center; gap:14px;
  margin-bottom: 24px;
}
.eyebrow::before{
  content:""; width:32px; height:1px; background: var(--gold);
}
.sec{ padding: clamp(96px, 14vh, 180px) 0; }
.sec-h{
  font-size: var(--t-h2);
  margin-bottom: 28px;
  max-width: 24ch;
  text-wrap: balance;
}
.sec-h .gold{ color: var(--gold); }
.sec-h em{ font-style:italic; color: var(--gold); font-weight:700; }
.sec-lead{
  font-size: var(--t-lede);
  color: var(--muted);
  max-width: 60ch; line-height: 1.5;
}

/* reveal — iframe-safe snap */
.reveal{ opacity:0; transform: translateY(28px); will-change: opacity, transform; }
.reveal.in{ opacity:1 !important; transform:none !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  min-height: 100vh; min-height: 100dvh;
  display:flex; align-items:center;
  position:relative; overflow:hidden;
  padding-top: 88px;
}
#herostage{ position:absolute; inset:0; width:100%; height:100%; z-index:0; }
.hero-grad{
  position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(180deg, rgba(6,8,24,.55) 0%, transparent 25%, transparent 75%, rgba(6,8,24,.85) 100%),
    linear-gradient(90deg, var(--navy) 0%, rgba(6,8,24,.78) 32%, rgba(6,8,24,.32) 50%, transparent 64%);
  pointer-events:none;
}
.hero-inner{
  position:relative; z-index:3;
  max-width: var(--maxw); margin:0 auto; padding: 0 var(--pad);
  width:100%;
}
.hero-inner .box{ max-width: 600px; }
.hero h1{
  font-size: var(--t-hero); font-weight:700;
  line-height: 1.02; letter-spacing: -.028em;
  margin: 10px 0 28px;
  text-wrap: balance;
}
.hero h1 .gold{ color: var(--gold); }
.hero h1 .dev{
  font-family: var(--font-dev); font-weight:400;
  font-size: .54em; color: var(--gold);
  display:block; margin-bottom: 6px;
  letter-spacing:.01em; line-height:1.2;
}
.hero .sub{
  font-size: clamp(17px, 1.45vw, 21px);
  color: var(--muted); max-width: 50ch;
  margin-bottom: 40px; line-height: 1.55;
}
.hero-btns{ display:flex; gap:14px; flex-wrap:wrap; }
.btn{
  font-family: var(--font); font-weight:700; font-size:15px;
  padding: 16px 30px; border-radius: 8px;
  border: 1.5px solid transparent;
  display:inline-flex; align-items:center; gap:10px;
}
.btn-gold{ background: var(--gold); color: var(--navy); }
.btn-gold:hover{ filter:brightness(1.07); }
.btn-ghost{ background: transparent; color: var(--white); border-color: var(--hair-2); }
.btn-ghost:hover{ border-color: var(--gold); color: var(--gold); }

.hero-caption{
  position:absolute; left: var(--pad); bottom: 36px; z-index:4;
  color: var(--muted); font-size: 13px; letter-spacing:.02em;
  max-width: 360px; pointer-events:none;
}
.hero-caption b{ color: var(--gold); font-weight:700; }
.hero-caption .dim{ color: var(--muted-2); }
.hero-hint{
  position: absolute; right: var(--pad); bottom: 36px; z-index: 4;
  color: var(--muted-2); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; font-family: var(--mono);
  display: inline-flex; align-items: center; gap: 10px;
  pointer-events: none;
}
.hero-hint::before{
  content:""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 12px var(--gold);
}

/* ============================================================
   PROBLEM — typographic story
   ============================================================ */
.problem{ padding-top: clamp(110px, 14vh, 180px); }
.ts-loop{
  display:grid; grid-template-columns: 1fr auto 1fr;
  gap: 28px; align-items:stretch;
  margin: 40px 0 56px;
}
.ts-side{
  padding: 28px 26px;
  border: 1px solid var(--hair-2); border-radius:12px;
  display:flex; flex-direction:column; gap:8px; justify-content:center;
  position: relative;
}
.ts-side.gold{
  border-color: rgba(245,184,58,.4);
  background: linear-gradient(180deg, rgba(245,184,58,.06), transparent);
}
.ts-side.red{
  border-color: rgba(225,62,71,.3);
  background: linear-gradient(180deg, rgba(225,62,71,.05), transparent);
}
.ts-side .nm{
  font-family:var(--mono); font-weight:700;
  letter-spacing:.22em; text-transform:uppercase;
  font-size:11px; margin-bottom: 6px;
}
.ts-side.gold .nm{ color:var(--gold); }
.ts-side.red .nm{ color:var(--red); }
.ts-side .big{
  font-size: clamp(48px, 5.8vw, 80px);
  font-weight:700; line-height:.95;
  letter-spacing:-.03em;
  font-feature-settings:"lnum","tnum";
  margin-bottom: 6px;
}
.ts-side.gold .big{ color:var(--gold); }
.ts-side.red .big{ color:var(--red); }
.ts-side .big small{ font-size:.42em; font-weight:700; }
.ts-side .desc{ color:var(--muted); font-size:14px; line-height:1.5; }
.ts-side .desc b{ color: var(--ink); }
.ts-side .micro{
  margin-top: 12px; display:flex; gap: 6px; flex-wrap: wrap;
}
.ts-side .micro span{
  font-family: var(--mono); font-size: 10px;
  padding: 3px 8px; border:1px solid var(--hair-2); border-radius: 4px;
  color: var(--muted); letter-spacing: .1em;
}
.ts-side.gold .micro span{ color: var(--gold); border-color: rgba(245,184,58,.3); }
.ts-side.red .micro span{ color: var(--red); border-color: rgba(225,62,71,.3); }

.ts-mid{
  display:flex; flex-direction:column; justify-content:center; gap:28px;
  min-width:200px; padding: 0 4px;
}
.ts-arrow{ position:relative; height:18px; }
.ts-arrow .ln{
  position:absolute; left:0; right:0; top:50%; height:1.5px;
  transform:translateY(-50%);
}
.ts-arrow .hd{ position:absolute; top:50%; transform:translateY(-50%); width:0; height:0; }
.ts-arrow.out .ln{ background:var(--gold); }
.ts-arrow.out .hd{ right:0; border-left:7px solid var(--gold); border-top:5px solid transparent; border-bottom:5px solid transparent; }
.ts-arrow.back .ln{ background:var(--red); }
.ts-arrow.back .hd{ left:0; border-right:7px solid var(--red); border-top:5px solid transparent; border-bottom:5px solid transparent; }
.ts-arrow .lab{
  position:absolute; left:50%; top:-14px; transform:translateX(-50%);
  font-family:var(--mono); font-size:10px;
  font-weight:700; letter-spacing:.2em; text-transform:uppercase;
  white-space:nowrap;
}
.ts-arrow.out .lab{ color:var(--gold); }
.ts-arrow.back .lab{ color:var(--red); }
.ts-arrow .pt{
  position:absolute; top:50%; width:5px; height:5px; border-radius:50%;
  transform:translate(-50%,-50%);
}
.ts-arrow.out .pt{ background:var(--gold-bright); box-shadow:0 0 8px var(--gold); }
.ts-arrow.back .pt{
  background:transparent; box-shadow:none;
  width:auto; height:auto; border-radius:0;
  color:var(--red); font-weight:700; font-size:12px;
}

/* consequences */
.ts-cons-grid{
  display:grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px;
  margin-bottom: 48px;
}
.ts-cons{
  padding: 22px 22px;
  border-left: 2px solid var(--red);
  background: linear-gradient(90deg, rgba(225,62,71,.07), transparent 70%);
  border-radius: 0 8px 8px 0;
}
.ts-cons .ix{
  font-family: var(--mono); font-size: 10px;
  color: var(--red); letter-spacing: .22em; text-transform: uppercase;
  margin-bottom: 10px; font-weight:700;
}
.ts-cons .ix b{ color: var(--white); }
.ts-cons h5{
  font-size: clamp(17px, 1.7vw, 22px);
  margin-bottom: 8px; line-height: 1.2; letter-spacing:-.01em;
}
.ts-cons h5 em{ color: var(--red); font-style: italic; font-weight: 700; }
.ts-cons p{ color: var(--muted); font-size: 13px; line-height: 1.5; }

.ts-foot{
  padding: 22px 28px;
  border: 1px solid var(--hair-2); border-radius:10px;
  background:
    radial-gradient(ellipse 60% 100% at 100% 50%, rgba(245,184,58,.07), transparent 70%),
    rgba(255,255,255,.012);
  display:grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center;
  margin-bottom: 64px;
}
.ts-foot .lab{
  font-family: var(--mono); font-size: 11px;
  color: var(--gold); letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700; white-space: nowrap;
  padding-right: 24px;
  border-right: 1px solid var(--hair);
  line-height: 1.3;
}
.ts-foot .body{
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--ink); line-height: 1.55;
  max-width: 70ch;
}
.ts-foot .body em{ color: var(--gold); font-style: normal; font-weight: 700; }

/* ============================================================
   CHART — GW capacity
   ============================================================ */
.chart-box{
  margin-top: 48px;
  padding: clamp(36px, 4.5vw, 56px) clamp(24px, 4vw, 56px);
  border: 1px solid var(--hair); border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,.004));
  position: relative;
}
.chart-head{
  display:flex; justify-content:space-between; align-items:flex-end;
  flex-wrap:wrap; gap:20px; margin-bottom: 36px;
}
.chart-head h3{
  font-size: clamp(20px, 2vw, 28px);
  max-width: 28ch; line-height:1.18; letter-spacing:-.015em;
}
.chart-head h3 .gold{ color: var(--gold); }
.legend{ display:flex; gap:22px; font-size:13px; color: var(--muted); flex-wrap:wrap; }
.legend .sw{
  display:inline-block; width:14px; height:14px; border-radius:3px;
  margin-right:9px; vertical-align:middle;
}
.legend .sw.now-gold{ background: var(--gold); }
.legend .sw.plan-gold{ background: transparent; border: 1.5px dashed var(--gold); }

.plot{ --lw: 92px; position:relative; }
.grid{ position:absolute; top:0; bottom: 36px; left: var(--lw); right:0; pointer-events:none; }
.grid span{ position:absolute; top:0; bottom:0; border-left:1px solid rgba(255,255,255,.04); }

.crow{ display:flex; align-items:center; height: 72px; margin-bottom: 14px; position:relative; z-index:1; }
.clabel{
  width: var(--lw); flex: 0 0 var(--lw);
  font-weight:700; font-size:15px; color: var(--white);
  letter-spacing:.02em;
}
.crow.giant .clabel{ color: var(--gold); }
.track{ flex:1; display:flex; height: 38px; position:relative; }
.seg{
  height:100%; width:0; flex: 0 0 auto; overflow: hidden;
  display:flex; align-items:center; justify-content:flex-end;
  padding-right: 14px;
  font-weight:700; font-size:13px;
  white-space:nowrap;
  transition: width 1.2s cubic-bezier(.22,1,.36,1);
}
.seg.now{
  background: var(--gold); color: var(--navy);
  border-radius: 4px 0 0 4px;
  box-shadow: 0 0 24px rgba(245,184,58,.16);
}
.seg.plan{
  background: transparent; border: 1.5px dashed var(--gold); border-left: 0;
  color: var(--gold-bright);
  border-radius: 0 4px 4px 0;
}
.crow.india{ height: 92px; }
.crow.india .clabel{ color: var(--red); font-size: 16px; position: relative; }
.crow.india .clabel::after{
  content:""; display:block; width:24px; height:2px;
  background: var(--red); margin-top:6px;
}
.crow.india .seg.now{ background: var(--red); color: #fff; box-shadow: 0 0 24px var(--red-soft); }
.crow.india .seg.plan{ border-color: var(--red); color: var(--red); }

/* pulse on India bar tip */
.india-pulse{
  position: absolute; top: 50%; left: 0;
  transform: translate(-50%,-50%);
  width: 32px; height: 32px;
  pointer-events: none; opacity: 0;
}
.india-pulse.show{ opacity: 1; }
.india-pulse .core{
  position: absolute; top: 50%; left: 50%;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--red); transform: translate(-50%,-50%);
  box-shadow: 0 0 16px var(--red), 0 0 32px rgba(225,62,71,.6);
}
.india-pulse .ring{
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--red);
  opacity: 0;
}
.india-pulse.show .ring{ animation: pulseRing 2.4s cubic-bezier(.4,0,.2,1) infinite; }
.india-pulse.show .ring.r2{ animation-delay: 1.2s; }
@keyframes pulseRing{
  0%{ transform: scale(0.4); opacity: 1; }
  100%{ transform: scale(2.6); opacity: 0; }
}

.crow.india .india-tag{
  position: absolute; top: 50%; transform: translateY(-50%);
  white-space: nowrap; padding-left: 28px;
  opacity: 0; transition: opacity .25s, left .8s cubic-bezier(.22,1,.36,1);
  display: flex; flex-direction: column; gap: 2px;
}
.crow.india .india-tag.show{ opacity: 1; }
.india-tag .it-1{
  font-family: var(--mono); font-size:11px; font-weight:700;
  color: var(--red); letter-spacing:.16em; text-transform:uppercase;
}
.india-tag .it-1::before{ content:"← "; }
.india-tag .it-2{
  font-size: 12px; color: var(--muted-2); letter-spacing: .02em;
}
.india-tag .it-2 b{ color: var(--white); }

.axis{ position:relative; margin-left: var(--lw); height: 22px; margin-top: 4px; }
.axis span{ position:absolute; transform: translateX(-50%); font-size: 11px; color: var(--muted-2); letter-spacing:.04em; }
.axis-cap{ margin-top: 22px; text-align:center; font-size: 12px; color: var(--muted-2); letter-spacing:.18em; text-transform:uppercase; font-family: var(--mono); }

.india-callout{
  margin-top: 24px;
  padding: 18px 22px;
  border: 1px solid rgba(225,62,71,.35);
  border-left: 3px solid var(--red);
  border-radius: 0 8px 8px 0;
  background: linear-gradient(90deg, rgba(225,62,71,.10), rgba(225,62,71,.02) 80%);
  max-width: 64ch; margin-left: 92px; position: relative;
}
.india-callout::before{
  content:""; position:absolute; top:-7px; left: 18px;
  width: 12px; height: 12px; transform: rotate(45deg);
  background: rgba(225,62,71,.16);
  border-top: 1px solid rgba(225,62,71,.35);
  border-left: 1px solid rgba(225,62,71,.35);
}
.india-callout .ic-1{
  font-size: clamp(17px, 1.5vw, 21px); font-weight:700;
  color: var(--white); margin-bottom: 6px; letter-spacing: -.01em;
}
.india-callout .ic-1 .r{ color: var(--red); }
.india-callout .ic-2{
  font-size: 13px; color: var(--muted); line-height: 1.55;
}
.india-callout .ic-2 em{ color: var(--red); font-style:normal; font-weight:700; }

/* ============================================================
   EK KALPANA · collective vision
   ============================================================ */
.mission{
  text-align: center;
  padding: clamp(96px, 12vh, 160px) 0 0;
}
.mission .eyebrow{ justify-content:center; }
.mission .eyebrow::before{ display:none; }
.mission .ek-h{
  font-size: clamp(52px, 7.5vw, 108px);
  font-weight:700; font-style:italic;
  line-height: .98; letter-spacing: -.04em;
  margin-bottom: 12px; color: var(--white);
}
.mission .ek-h .gold{ color: var(--gold); font-style:normal; }
.mission .ek-dev{
  font-family: var(--font-dev); font-weight:400;
  font-size: clamp(22px, 2.6vw, 34px);
  color: var(--gold);
  margin-bottom: 26px;
}
.mission .ek-line{
  max-width: 60ch; margin: 0 auto;
  font-size: clamp(17px, 1.4vw, 21px); color: var(--muted);
  line-height: 1.55;
}
.mission .ek-line em{ color: var(--white); font-style: italic; }
.mission .ek-line b{ color: var(--gold); font-weight:700; }

.ek-future{
  margin-top: 72px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  text-align: left;
}
.ek-future .col{ padding: 40px 40px 44px; }
.ek-future .col.with{ border-left: 1px solid var(--hair); }
.ek-future .col .eb{
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .22em; text-transform: uppercase; font-weight:700;
  margin-bottom: 16px;
}
.ek-future .col.without .eb{ color: var(--red); }
.ek-future .col.with .eb{ color: var(--gold); }
.ek-future .col h5{
  font-size: clamp(20px, 2.2vw, 28px); font-weight: 700;
  letter-spacing: -.02em; line-height: 1.2;
  margin-bottom: 20px; max-width: 26ch;
}
.ek-future .col.without h5 em{ color: var(--red); font-style: italic; font-weight: 700; }
.ek-future .col.with h5 em{ color: var(--gold); font-style: italic; font-weight: 700; }
.ek-future .col ul{ list-style: none; }
.ek-future .col ul li{
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid var(--hair);
  color: var(--ink); font-size: 14px; line-height: 1.45;
  position: relative;
}
.ek-future .col ul li:last-child{ border-bottom: 0; }
.ek-future .col ul li::before{
  content:""; position: absolute; left: 0; top: 18px;
  width: 10px; height: 1.5px;
}
.ek-future .col.without ul li::before{ background: var(--red); }
.ek-future .col.with ul li::before{ background: var(--gold); }
.ek-future .col.with ul li em{ color: var(--gold); font-style: normal; font-weight: 700; }
.ek-future .col.without ul li em{ color: var(--red); font-style: normal; font-weight: 700; }

.ek-collective{
  padding: 56px var(--pad) 64px;
  text-align: center;
  border-bottom: 1px solid var(--hair);
}
.ek-collective .eb{
  font-family: var(--mono); font-size: 11px; color: var(--gold);
  letter-spacing: .22em; text-transform: uppercase; font-weight: 700;
  margin-bottom: 18px;
}
.ek-collective h4{
  font-size: clamp(24px, 2.6vw, 36px); font-weight: 700;
  letter-spacing: -.02em; line-height: 1.2;
  max-width: 30ch; margin: 0 auto 16px;
  text-wrap: balance;
}
.ek-collective h4 .gold{ color: var(--gold); }
.ek-collective .ec-lead{
  color: var(--muted); max-width: 58ch; margin: 0 auto;
  font-size: 16px; line-height: 1.55;
}
.ek-collective .ec-lead em{ color: var(--white); font-style: italic; }

.ek-segue{
  background: linear-gradient(180deg, var(--navy-2), #06081a);
  padding: 26px 24px 36px;
  display:flex; flex-direction:column; align-items:center; gap:12px;
}
.ek-segue .ar{
  width:1px; height: 32px;
  background: linear-gradient(180deg, rgba(245,184,58,0), var(--gold));
}
.ek-segue .seg-eb{
  font-family: var(--mono); font-size:11px; color: var(--gold);
  letter-spacing:.24em; text-transform:uppercase; font-weight:700;
}

/* ============================================================
   WHAT WE BUILD — iso cutaway
   ============================================================ */
.build{
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245,184,58,.05), transparent 70%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: clamp(100px, 14vh, 180px) 0;
}
.build-head{ max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.build-grid{
  margin-top: 48px;
  max-width: 1400px; margin-left:auto; margin-right:auto;
  padding: 0 var(--pad);
  display:flex; flex-direction:column; gap: 0;
}
.stage{
  position: relative;
  border: 1px solid var(--hair-2);
  border-radius: 14px 14px 0 0;
  overflow:hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(245,184,58,.06), transparent 70%),
    linear-gradient(180deg, #07091c 0%, #050714 100%);
}
.scene{
  position: relative; aspect-ratio: 16 / 9;
  width: 100%; overflow: hidden;
  background: #04060f;
}
.scene svg{ width:100%; height:100%; display:block; }
.layers{
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; padding: 6px;
  background: rgba(6,8,24,.7);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--hair-2);
  border-radius: 12px;
  z-index: 5; flex-wrap: wrap; justify-content: center;
}
.layer{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; background: transparent; border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--font); color: var(--muted);
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
}
.layer:hover{ color: var(--white); background: rgba(255,255,255,.05); }
.layer.active{ color: var(--navy); background: var(--gold); border-color: var(--gold); }
.layer .num{
  font-family: var(--mono);
  font-weight: 700; font-size: 10px; letter-spacing: .14em;
  color: var(--gold); opacity: .85;
}
.layer.active .num{ color: var(--navy); opacity: 1; }
.layer .nm{ font-weight: 700; font-size: 13px; letter-spacing: -.005em; }
.scene-hud{
  position:absolute; right:18px; bottom:18px;
  display:flex; flex-direction: column; align-items:flex-end; gap: 2px;
  pointer-events:none;
  font-family: var(--mono); color: var(--muted);
  font-size: 10px; letter-spacing:.18em; text-transform:uppercase;
  z-index: 4; text-align: right;
  text-shadow: 0 0 12px rgba(0,0,0,.5);
}
.scene-hud b{ color: var(--gold); font-weight:700; }

.spec{
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(32px, 4vw, 56px);
  border: 1px solid var(--hair-2); border-top: 0;
  border-radius: 0 0 14px 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,.004));
  align-items: start;
}
.spec .num{
  font-family: var(--mono);
  font-size: 12px; font-weight:700; letter-spacing:.22em;
  color: var(--gold); text-transform:uppercase;
  display:block; margin-bottom: 14px;
}
.spec h3{ font-size: clamp(26px, 3vw, 38px); margin-bottom: 18px; letter-spacing:-.02em; }
.spec p{ color: var(--muted); font-size: 17px; line-height: 1.6; max-width: 60ch; }
.spec .specs{
  display:grid; grid-template-columns: 1fr 1fr;
  gap: 20px 24px; padding-top: 8px;
}
.spec .specs .sp{
  display:flex; flex-direction:column; gap:4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hair);
}
.spec .specs .sp .k{
  font-family: var(--mono);
  font-size: 11px; letter-spacing:.18em; text-transform:uppercase;
  color: var(--muted-2); font-weight:700;
}
.spec .specs .sp .v{ font-size: 16px; font-weight:700; color: var(--white); letter-spacing: -.01em; }
.spec .specs .sp .v.gold{ color: var(--gold); }

/* dim other layers when one is active */
.iso-layer[data-on="false"]{ opacity: .14; }
.iso-layer[data-on="true"] .accent{ stroke: var(--gold); }
.iso-layer[data-on="true"] .accent-fill{ fill: rgba(245,184,58,.15); }

/* ============================================================
   INDUSTRY VIEW — quotes + GPU dot strip
   ============================================================ */
.industry{ padding-top: clamp(96px, 12vh, 160px); padding-bottom: clamp(96px, 12vh, 160px); }
.iv-head{
  display:grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end;
  margin-bottom: 56px;
}
.iv-head .lead{ color: var(--muted); font-size: clamp(17px, 1.4vw, 21px); line-height: 1.55; max-width: 38ch; }
.iv-row-giants{ display:grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 22px; }

.iv{
  position:relative;
  padding: 32px 30px 28px;
  border: 1px solid var(--hair);
  border-radius: 14px;
  display:flex; flex-direction:column;
}
.iv .corner-tag{
  position:absolute; top:0; right:0;
  padding: 7px 14px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase;
  font-weight: 700;
  border-radius: 0 14px 0 12px;
}
.iv.giant{
  border-color: rgba(245,184,58,.40);
  background:
    radial-gradient(ellipse 120% 100% at 0% 0%, rgba(245,184,58,.08), transparent 60%),
    linear-gradient(180deg, rgba(245,184,58,.02), rgba(245,184,58,.005));
  box-shadow: 0 30px 60px -40px rgba(245,184,58,.45);
}
.iv.giant .corner-tag{ color: var(--navy); background: var(--gold); }
.iv .wordmark{
  font-weight:700; font-size: 22px;
  color: var(--white); letter-spacing:-.02em;
  display:flex; align-items:center; gap: 10px;
  margin-bottom: 22px;
}
.iv .wordmark .dot{ width: 8px; height: 8px; border-radius:50%; background: var(--gold); }
.iv.giant .wordmark{ color: var(--gold); }
.iv blockquote{
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.4; letter-spacing: -.01em;
  color: var(--white); font-style: italic; font-weight: 400;
  margin-bottom: 22px;
}
.iv blockquote::before{
  content: "\201C"; font-size: 48px; color: var(--gold);
  line-height: 0; position: relative; top: 20px;
  font-style: normal; font-weight: 700;
  display: block;
}
.iv .person{
  padding-top: 18px; border-top: 1px solid var(--hair);
  font-size: 14px; font-weight: 700; color: var(--white);
}
.iv .person span{
  display: block; font-weight: 400; color: var(--muted-2);
  font-size: 12px; margin-top: 4px; letter-spacing: .01em;
}
.iv .stat{
  margin-top: 18px;
  font-family: var(--mono);
  font-weight: 700; font-size: 13px;
  color: var(--muted-2); letter-spacing: .06em; line-height: 1.4;
}
.iv .stat b{ color: var(--white); }
.iv.giant .stat b{ color: var(--gold); }

/* GPU dot strip — compressed */
.gpu-strip{
  margin-top: 28px;
  padding: 28px 32px;
  border: 1px solid var(--hair-2);
  border-radius: 14px;
  background: rgba(255,255,255,.012);
}
.gpu-strip .gs-head{
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 22px;
  flex-wrap: wrap; gap: 14px;
}
.gpu-strip .gs-head .ttl{
  font-family: var(--mono); font-size: 11px;
  color: var(--gold); letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700;
}
.gpu-strip .gs-head .scale{
  font-family: var(--mono); font-size: 11px; color: var(--muted-2);
  letter-spacing: .12em; text-transform: uppercase;
}
.gpu-strip .gs-head .scale b{ color: var(--gold); }

.gpu-bars{ display: grid; gap: 12px; }
.gpu-bar{
  display: grid;
  grid-template-columns: 110px 1fr 80px;
  gap: 18px; align-items: center;
}
.gpu-bar .who-col .who{
  font-weight: 700; font-size: 14px;
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 2px;
}
.gpu-bar .who-col .who .px{
  width: 6px; height: 6px; border-radius: 50%;
}
.gpu-bar .who-col .sub{
  font-family: var(--mono); font-size: 9px;
  color: var(--muted-2); letter-spacing: .1em; text-transform: uppercase;
}
.gpu-bar.gold .who{ color: var(--gold); }
.gpu-bar.gold .who .px{ background: var(--gold); }
.gpu-bar.red .who{ color: var(--red); }
.gpu-bar.red .who .px{ background: var(--red); }

.gpu-bar .dots-canvas{
  position: relative; height: 44px;
  border-bottom: 1px solid var(--hair);
  overflow: hidden;
}
.gpu-bar .dots-canvas canvas{ width: 100%; height: 100%; display: block; }
.gpu-bar .indicator{
  position: absolute; top: 50%; left: 6px;
  transform: translateY(-50%);
  width: 16px; height: 16px; border-radius: 50%;
  border: 1.5px solid var(--red);
  pointer-events: none;
}
.gpu-bar .indicator::after{
  content:""; position: absolute; inset: -8px;
  border: 1.5px dashed rgba(225,62,71,.4); border-radius: 50%;
}

.gpu-bar .count{
  font-family: var(--mono); font-size: 13px; font-weight: 700;
  white-space: nowrap; text-align: right;
}
.gpu-bar.gold .count{ color: var(--gold); }
.gpu-bar.red .count{ color: var(--red); }

.gpu-strip .gs-foot{
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--hair);
  color: var(--ink); font-size: 14px; line-height: 1.55;
  max-width: 70ch;
}
.gpu-strip .gs-foot em{ color: var(--gold); font-style: normal; font-weight: 700; }
.gpu-strip .gs-foot .r{ color: var(--red); font-weight: 700; }

.iv-closer{
  margin-top: 56px;
  text-align:center;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700; line-height: 1.25; letter-spacing: -.015em;
  max-width: 38ch; margin-left:auto; margin-right:auto;
  text-wrap: balance;
}
.iv-closer .gold{ color: var(--gold); }
.iv-closer .muted{ color: var(--muted); font-weight:400; font-style:italic; }

/* ============================================================
   TEAM
   ============================================================ */
.team{ padding-top: clamp(96px, 12vh, 160px); padding-bottom: clamp(96px, 12vh, 160px); }
.team-block{
  display:grid; grid-template-columns: 320px 1fr; gap: 56px;
  align-items:flex-start; margin-top: 56px;
}
.fphoto{
  position:relative; aspect-ratio: 3/4;
  border-radius: 14px; overflow:hidden;
  background: var(--panel-2);
  border: 1px solid var(--hair-2);
}
.fphoto image-slot{ width:100%; height:100%; }
.tphoto-tag{
  position:absolute; top:14px; left:14px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing:.18em; text-transform:uppercase;
  color: var(--gold); font-weight:700;
  background: rgba(6,8,24,.7); padding: 4px 10px; border-radius:4px;
  z-index: 3;
}
.tbio h3{ font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 8px; letter-spacing:-.02em; }
.tbio .trole{
  font-family: var(--mono);
  font-weight:700; color: var(--gold); font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 22px;
}
.tbio p{
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink); line-height: 1.55;
  max-width: 54ch; margin-bottom: 14px;
}
.tbio p.quiet{ color: var(--muted); }

.advisors{
  margin-top: 80px;
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.adv{
  border: 1px solid var(--hair); border-radius: 14px;
  padding: 28px 26px;
  background: rgba(255,255,255,.012);
}
.adv .role-k{
  font-family: var(--mono);
  font-size: 11px; font-weight:700; letter-spacing:.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.adv h4{ font-size: 21px; margin-bottom: 14px; letter-spacing:-.015em; line-height: 1.2; }
.adv .placeholder-name{
  color: var(--muted-2); font-size: 13px; font-style:italic;
  padding: 8px 14px; border: 1px dashed var(--hair-2);
  border-radius: 8px; display:inline-block;
}

.creds{ margin-top: clamp(72px, 10vh, 120px); }
.creds .lab{
  font-family: var(--mono);
  font-size: 11px; font-weight:700; letter-spacing:.22em;
  text-transform: uppercase; color: var(--muted-2);
  margin-bottom: 22px;
}
.creds .lab b{ color: var(--white); }

.marquee{
  position: relative; overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  mask: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee-track{ display: flex; gap: 0; width: max-content; }
.crest{
  flex: 0 0 auto;
  height: 56px; min-width: 140px;
  padding: 0 28px; margin: 0 8px;
  border: 1px solid var(--hair); border-radius: 10px;
  font-weight:700; font-size:15px; color: var(--ink);
  background: rgba(255,255,255,.012);
  display:inline-flex; align-items:center; justify-content:center;
  letter-spacing: .02em; white-space: nowrap;
}

/* ============================================================
   JOIN
   ============================================================ */
.join{
  position:relative;
  padding: clamp(72px, 11vh, 130px) 0 clamp(56px, 9vh, 96px);
  overflow:hidden;
}
.join::before{
  content:""; position:absolute; inset:0;
  background: radial-gradient(ellipse 50% 65% at 50% 40%, rgba(245,184,58,.18), transparent 70%);
  z-index:1; pointer-events:none;
}
.join .wrap{ position:relative; z-index:2; text-align:center; }
.join .eyebrow{ justify-content:center; }
.join .eyebrow::before{ display:none; }
.join h2{
  font-size: clamp(36px, 5.4vw, 68px);
  margin-bottom: 36px;
  letter-spacing: -.03em; line-height: 1.05;
  max-width: 22ch; margin-left:auto; margin-right:auto;
  text-wrap: balance;
}
.join h2 .gold{ color: var(--gold); }
.mail-pill{
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--gold); color: var(--navy);
  font-weight:700; font-size: clamp(16px, 1.5vw, 19px);
  padding: 20px 40px; border-radius: 12px;
  box-shadow: 0 30px 60px -25px rgba(245,184,58,.45);
}
.mail-pill:hover{ filter: brightness(1.05); }
.tagline{
  margin-top: 36px;
  font-weight:700; font-size: clamp(16px, 1.4vw, 19px);
  color: var(--white); letter-spacing:-.01em;
}
.tagline .gold{ color: var(--gold); font-style:italic; }
.tagline-dev{
  margin-top: 8px;
  font-family: var(--font-dev); font-weight:400;
  font-size: 14px; color: var(--muted);
}

footer{
  border-top: 1px solid var(--hair);
  padding: 32px 0;
  color: var(--muted-2);
  font-size: 13px; text-align:center;
}
footer .row{
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap: 14px;
}
footer a{ color: var(--muted); }
footer a:hover{ color: var(--gold); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1020px){
  .iv-head{ grid-template-columns: 1fr; gap: 24px; }
  .iv-row-giants{ grid-template-columns: 1fr; }
  .team-block{ grid-template-columns: 1fr; }
  .advisors{ grid-template-columns: 1fr; }
  .ek-future{ grid-template-columns: 1fr; }
  .ek-future .col.with{ border-left: 0; border-top: 1px solid var(--hair); }
  .spec{ grid-template-columns: 1fr; }
}
@media (max-width: 820px){
  .ts-loop{ grid-template-columns: 1fr; }
  .ts-mid{ flex-direction: row; min-width: 0; gap: 16px; }
  .ts-cons-grid{ grid-template-columns: 1fr; }
  .ts-foot{ grid-template-columns: 1fr; gap: 16px; }
  .ts-foot .lab{ border-right: 0; padding-right: 0; padding-bottom: 14px; border-bottom: 1px solid var(--hair); }
  .gpu-bar{ grid-template-columns: 1fr; gap: 8px; }
  .india-callout{ margin-left: 0; }
}
@media (max-width: 600px){
  .hero h1{ font-size: clamp(40px, 11vw, 64px); }
}

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; }
  .reveal{ opacity:1; transform:none; }
}
