:root{
  --bg:#020713;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.085);
  --stroke: rgba(255,255,255,.10);
  --stroke2: rgba(255,255,255,.16);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);

  --blue: 40 150 255;
  --orange: 255 132 32;

  --l1x: 20%;
  --l1y: 20%;
  --l1o: .006;
  --l2x: 80%;
  --l2y: 25%;
  --l2o: .004;

  --vp1x: 30%;
  --vp1y: 35%;
  --vp1o: .0;
  --vp2x: 70%;
  --vp2y: 35%;
  --vp2o: .0;

  --navH: 72px;
  --r: 22px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x:hidden;
}

#bgFX{
  position:fixed;
  inset:0;
  z-index:-3;
  background: var(--bg);
}
#bgFX::before{
  content:"";
  position:absolute;
  inset:-18%;
  background:
    radial-gradient(820px circle at var(--l1x) var(--l1y), rgba(var(--blue) / var(--l1o)), transparent 62%),
    radial-gradient(920px circle at var(--l2x) var(--l2y), rgba(var(--orange) / var(--l2o)), transparent 64%);
  filter: blur(14px);
  transform: translateZ(0);
}
#bgFX::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px circle at 50% 110%, rgba(0,0,0,.62), transparent 55%),
    radial-gradient(1200px circle at 50% -20%, rgba(0,0,0,.55), transparent 58%);
  pointer-events:none;
}

.container{
  width:min(1120px, calc(100% - 44px));
  margin:0 auto;
}

.nav{
  position:fixed;
  top:0; left:0; right:0;
  height: var(--navH);
  z-index:50;
  display:flex;
  align-items:center;
  background: rgba(2,7,19,.55);
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity .25s ease, transform .25s ease;
}
.nav-inner{
  width: min(1200px, calc(100% - 32px));
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color: var(--text);
  font-weight: 650;
  letter-spacing:.2px;
}
.brand-dot{
  width:10px; height:10px;
  border-radius:999px;
  background: rgba(var(--blue) / .85);
  box-shadow: 0 0 0 3px rgba(40,150,255,.15);
}
.nav-links{
  display:flex;
  gap:18px;
  padding:10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}
.nav-links a{
  color: rgba(255,255,255,.78);
  text-decoration:none;
  font-weight:560;
  font-size:14px;
}
.nav-links a:hover{ color: rgba(255,255,255,.95); }

.nav-right{
  display:flex;
  align-items:center;
  gap:10px;
}
.lang{
  display:flex;
  gap:8px;
  padding:6px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}
.lang-btn{
  border:0;
  background: transparent;
  color: rgba(255,255,255,.72);
  font-weight:650;
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  cursor:pointer;
}
.lang-btn.active{
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.95);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.92);
  text-decoration:none;
  font-weight:650;
  font-size:14px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
}
.btn:active{ transform: translateY(0px) scale(.99); }

.btn.primary{
  border-color: rgba(var(--orange) / .35);
  background: radial-gradient(120% 180% at 50% 0%, rgba(var(--orange) / .24), rgba(255,255,255,.04) 60%);
  box-shadow: 0 14px 50px rgba(255,132,32,.08);
}
.btn.primary:hover{
  border-color: rgba(var(--orange) / .55);
  box-shadow: 0 16px 70px rgba(255,132,32,.12);
}
.btn.ghost{
  background: transparent;
  border-color: rgba(255,255,255,.10);
}
.btn.ghost:hover{
  background: rgba(255,255,255,.04);
}

.hero{
  padding-top: calc(var(--navH) + 34px);
  padding-bottom: 64px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items:start;
}
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .nav-links{ display:none; }
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  font-weight:650;
  font-size:13px;
}
.badge-dot{
  width:8px; height:8px;
  border-radius:999px;
  background: rgba(var(--orange) / .85);
  box-shadow: 0 0 0 3px rgba(255,132,32,.14);
}

.hero-title{
  margin: 18px 0 12px;
  font-size: 62px;
  line-height: 1.02;
  letter-spacing: -.8px;
}
@media (max-width: 980px){
  .hero-title{ font-size: 46px; }
}
.hero-sub{
  margin:0 0 18px;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.55;
  max-width: 58ch;
}
.hero-cta{ display:flex; gap:10px; flex-wrap:wrap; }

.card.glass{
  border-radius: var(--r);
  padding: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.card-title{
  font-weight:750;
  margin-bottom: 12px;
  color: rgba(255,255,255,.92);
}
.steps{ display:flex; flex-direction:column; gap:10px; }
.step{
  display:flex; gap:10px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}
.step-num{
  width:28px; height:28px;
  border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  font-weight:800;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.step-h{ font-weight:760; }
.step-p{ color: rgba(255,255,255,.68); font-size: 13px; margin-top:2px; }
.hero-note{
  margin-top: 12px;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height:1.5;
}

/* Sections */
.section{
  padding: 74px 0;
}
.section h2{
  margin:0 0 10px;
  font-size: 34px;
  letter-spacing: -.3px;
}
.section-sub{
  margin:0 0 20px;
  color: rgba(255,255,255,.68);
  line-height: 1.5;
}

/* Scrolly */
.scrolly{
  position:relative;
  margin-top: 10px;
}
.scrolly .track{
  height: 560vh; /* enough scroll for the movie */
}
.scrolly .sticky{
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.scrolly-title{
  position:absolute;
  top: calc(var(--navH) + 12px);
  left:0; right:0;
  z-index: 12;
  pointer-events:none;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .2s ease, transform .2s ease;
}
.scrolly-title h2{
  margin:0;
  font-size: 34px;
  letter-spacing: -.4px;
}

.scene{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transform: scale(1.02);
  transition: none;
  pointer-events:none;
}
.scene-frame{
  position:relative;
  width: min(1280px, calc(100% - 34px));
  height: min(720px, calc(100% - 34px));
  border-radius: 26px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 40px 120px rgba(0,0,0,.55);
  overflow:hidden;
}
@media (max-width: 980px){
  .scene-frame{ height: min(640px, calc(100% - 34px)); }
}
@media (prefers-reduced-motion: reduce){
  .scrolly .track{ height: 160vh; }
}

/* Chat UI */
.chat-ui{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  background:
    radial-gradient(900px circle at 35% 25%, rgba(40,150,255,.08), transparent 60%),
    radial-gradient(900px circle at 75% 30%, rgba(255,132,32,.06), transparent 62%),
    rgba(2,7,19,.55);
}
.chat-topbar{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.chat-dot{
  width:10px;height:10px;border-radius:999px;
  background: rgba(var(--blue) / .85);
  box-shadow: 0 0 0 3px rgba(40,150,255,.12);
}
.chat-name{ font-weight:760; color: rgba(255,255,255,.90); }

.chat-body{
  flex:1;
  padding: 18px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.msg-row{ display:flex; }
.msg-ai{ justify-content:flex-start; }
.msg-user{ justify-content:flex-end; }
.bubble{
  max-width: min(680px, 88%);
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.90);
  line-height: 1.45;
}
.bubble-user{
  background: radial-gradient(140% 200% at 50% 0%, rgba(var(--orange) / .20), rgba(255,255,255,.04) 58%);
  border-color: rgba(var(--orange) / .22);
}
.bubble-ai{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
}
.bubble-thinking{ padding: 14px 16px; }
.dots{ display:inline-flex; gap:6px; align-items:center; }
.dots i{
  width:6px;height:6px;border-radius:999px;
  background: rgba(255,255,255,.55);
  opacity:.35;
  animation: dot 1.2s infinite ease-in-out;
}
.dots i:nth-child(2){ animation-delay:.15s; }
.dots i:nth-child(3){ animation-delay:.30s; }
@keyframes dot{
  0%,100%{ transform: translateY(0); opacity:.35; }
  50%{ transform: translateY(-2px); opacity:.9; }
}

.bubble-code{
  padding: 0;
  overflow:hidden;
}
.code{
  margin:0;
  padding: 14px 14px 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,.88);
  background: rgba(0,0,0,.18);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.code-actions{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  position:relative;
}
.run-btn{
  border: 1px solid rgba(var(--orange) / .35);
  background: radial-gradient(140% 200% at 50% 0%, rgba(var(--orange) / .22), rgba(255,255,255,.04) 58%);
  color: rgba(255,255,255,.92);
  font-weight:760;
  padding: 10px 16px;
  border-radius: 14px;
  cursor: default;
  transform: translateZ(0);
}
.anchor{
  position:absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  opacity:0;
}

.chat-input{
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,.06);
  display:flex;
  gap: 10px;
  align-items:center;
}
.input{
  flex:1;
  height: 44px;
  padding: 0 14px;
  display:flex;
  align-items:center;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.88);
  overflow:hidden;
  white-space:nowrap;
}
.caret{
  margin-left:2px;
  opacity:.9;
  animation: caret 1.05s infinite steps(1,end);
}
@keyframes caret{
  0%,49%{ opacity: .9; }
  50%,100%{ opacity: 0; }
}
.send-btn{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.90);
  font-weight:900;
  cursor: default;
}

/* Bridge */
.bridge-ui{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(900px circle at 50% 40%, rgba(255,255,255,.05), transparent 60%),
    rgba(2,7,19,.62);
}
.bridge-mark{
  position:absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  color: rgba(255,255,255,.88);
}
.bridge-title{
  font-weight:850;
  letter-spacing: -.2px;
}
.bridge-sub{
  color: rgba(255,255,255,.66);
  font-weight:650;
  font-size: 13px;
}
.bridge-line{
  width: min(980px, calc(100% - 80px));
  height: 220px;
  position:relative;
}
.bridge-pylons{
  position:absolute; inset:0;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  padding: 0 80px;
  opacity:.85;
}
.bridge-pylons span{
  width: 10px;
  height: 170px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.bridge-path{
  position:absolute;
  left: 70px; right: 70px; bottom: 44px;
  height: 8px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(var(--blue) / .0), rgba(var(--blue) / .35), rgba(var(--orange) / .35), rgba(var(--orange) / 0));
  filter: blur(.2px);
  box-shadow: 0 0 40px rgba(40,150,255,.10), 0 0 40px rgba(255,132,32,.10);
}

/* Blender UI */
.blender-ui{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  background: rgba(2,7,19,.55);
}
.bl-top{
  height: 56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.bl-pill{
  display:inline-flex;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  font-weight:760;
  font-size: 12px;
}
.bl-crumb{
  margin-left: 10px;
  color: rgba(255,255,255,.64);
  font-weight:650;
  font-size: 12px;
}
.bl-main{
  flex:1;
  display:grid;
  grid-template-columns: 260px 1fr 260px;
  gap: 12px;
  padding: 12px;
}
@media (max-width: 980px){
  .bl-main{ grid-template-columns: 1fr; }
  .bl-outliner, .bl-props{ display:none; }
}
.bl-panel{
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  overflow:hidden;
}
.bl-panel-title{
  padding: 12px 12px;
  font-weight:800;
  color: rgba(255,255,255,.86);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.bl-list{ padding: 10px 12px; display:flex; flex-direction:column; gap:8px; }
.bl-item{
  padding: 10px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.78);
  font-weight:650;
}
.bl-kv{
  padding: 10px 12px;
  display:flex;
  justify-content:space-between;
  color: rgba(255,255,255,.76);
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 13px;
}
.bl-kv:last-child{ border-bottom:0; }

.bl-viewport{
  position:relative;
  border-radius: 18px;
  background:
    radial-gradient(780px circle at var(--vp1x) var(--vp1y), rgba(var(--blue) / var(--vp1o)), transparent 60%),
    radial-gradient(820px circle at var(--vp2x) var(--vp2y), rgba(var(--orange) / var(--vp2o)), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
  border: 1px solid rgba(255,255,255,.06);
  overflow:hidden;
}
.vp-hint{
  position:absolute;
  top: 12px; left: 12px;
  color: rgba(255,255,255,.55);
  font-weight:760;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.03);
}
.vp-grid{
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity:.08;
  transform: perspective(800px) rotateX(62deg) translateY(140px) scale(1.2);
  transform-origin: 50% 70%;
}
.vp-lights{
  position:absolute;
  inset:-10%;
  background:
    radial-gradient(520px circle at 30% 30%, rgba(40,150,255,.00), transparent 60%),
    radial-gradient(520px circle at 70% 30%, rgba(255,132,32,.00), transparent 62%);
  filter: blur(14px);
  opacity: 1;
  pointer-events:none;
}

.bl-timeline{
  height: 88px;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 12px;
}
.tl-bar{
  position:relative;
  height: 28px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  overflow:hidden;
}
.tl-ticks{
  position:absolute; inset:0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.10) 0 1px, transparent 1px 24px);
  opacity:.12;
}
.tl-playhead{
  position:absolute;
  top: -6px;
  width: 2px;
  height: 40px;
  left: 0%;
  background: rgba(var(--orange) / .92);
  box-shadow: 0 0 20px rgba(255,132,32,.20);
}
.tl-labels{
  display:flex;
  justify-content:space-between;
  margin-top: 10px;
  color: rgba(255,255,255,.52);
  font-weight:650;
  font-size: 12px;
}

/* Cube (global) */
.story-cube{
  position: fixed;
  left: 0;
  top: 0;
  width: 64px;
  height: 64px;
  z-index: 30;
  opacity: 0;
  transform: translate3d(-9999px,-9999px,0);
  pointer-events:none;
}
.cube{
  width: 64px;
  height: 64px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-18deg) rotateY(32deg);
}
.face{
  position:absolute;
  inset:0;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.12);
}
.f1{ transform: translateZ(32px); background: linear-gradient(135deg, rgba(40,150,255,.20), rgba(255,132,32,.16)); }
.f2{ transform: rotateY(180deg) translateZ(32px); background: rgba(255,255,255,.06); }
.f3{ transform: rotateY(90deg) translateZ(32px); background: linear-gradient(180deg, rgba(40,150,255,.18), rgba(255,255,255,.04)); }
.f4{ transform: rotateY(-90deg) translateZ(32px); background: linear-gradient(180deg, rgba(255,132,32,.18), rgba(255,255,255,.04)); }
.f5{ transform: rotateX(90deg) translateZ(32px); background: rgba(255,255,255,.06); }
.f6{ transform: rotateX(-90deg) translateZ(32px); background: rgba(0,0,0,.16); }

/* Cursor */
.cursor{
  position: fixed;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  z-index: 35;
  opacity: 0;
  transform: translate3d(-9999px,-9999px,0);
  pointer-events:none;
}
.cursor-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 0 0 6px rgba(255,255,255,.08);
  transform: translate(6px,6px);
}

/* Morph rect */
.morph-rect{
  position: fixed;
  left:0; top:0;
  width: 10px; height: 10px;
  border-radius: 16px;
  opacity: 0;
  z-index: 29;
  pointer-events:none;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 20px 80px rgba(0,0,0,.40);
  transform: translate3d(-9999px,-9999px,0);
}

/* Pricing */
.pricing-grid{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
}
@media (max-width: 980px){
  .pricing-grid{ grid-template-columns: 1fr; }
}
.price-card{
  border-radius: var(--r);
  padding: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 30px 110px rgba(0,0,0,.35);
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.price-card.best{
  border-color: rgba(var(--orange) / .30);
  background:
    radial-gradient(140% 200% at 50% 0%, rgba(var(--orange) / .14), rgba(255,255,255,.03) 62%);
}
.pc-head{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
.pc-title{ font-weight:850; font-size: 18px; }
.pc-tag{
  font-size: 12px;
  font-weight:850;
  color: rgba(255,255,255,.88);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(var(--orange) / .30);
  background: rgba(var(--orange) / .08);
}
.pc-list{
  margin:0;
  padding-left: 18px;
  color: rgba(255,255,255,.72);
  line-height:1.55;
}
.trial-row{
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 16px 16px;
  border-radius: var(--r);
  background:
    radial-gradient(120% 200% at 15% 0%, rgba(40,150,255,.10), rgba(255,255,255,.03) 55%);
  border: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 980px){
  .trial-row{ flex-direction:column; align-items:stretch; }
}
.trial-title{ font-weight:850; }
.trial-sub{ color: rgba(255,255,255,.68); margin-top:2px; }

/* Benefits */
.benefits-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}
@media (max-width: 980px){
  .benefits-grid{ grid-template-columns: 1fr; }
}
.benefit-card{
  border-radius: var(--r);
  padding: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}
.bc-title{ font-weight:850; margin-bottom: 8px; }
.bc-text{ color: rgba(255,255,255,.70); line-height:1.55; }

/* Download */
.download-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 980px){
  .download-grid{ grid-template-columns: 1fr; }
}
.download-card{
  border-radius: var(--r);
  padding: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.dc-title{ font-weight:850; }

/* Footer */
.footer{
  padding: 28px 0 60px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.08);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.footer-links{
  display:flex;
  gap: 14px;
}
.footer a{
  color: rgba(255,255,255,.70);
  text-decoration:none;
  font-weight:650;
}
.footer a:hover{ color: rgba(255,255,255,.92); }
.muted{ color: rgba(255,255,255,.55); }

/* Hide nav during scrolly for full immersion */
html.scrolly-on .nav{
  opacity: 0;
  transform: translateY(-10px);
  pointer-events:none;
}
