:root {
  --bg:     #161d1a;
  --bg2:    #1c2622;
  --bg3:    #22302b;
  --ink:    #0e1410;
  --teal:   #4ecba0;
  --teal2:  #2d7a5f;
  --teal3:  #4ecba018;
  --white:  #e6eeea;
  --mid:    #c0d4ca;
  --muted:  #6e9080;
  --dim:    #374d44;
  --edge:   #1e2d27;
  --mono:   'JetBrains Mono', monospace;
  --serif:  'Syne', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--serif);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

section, nav, footer, .vscode-strip, .download-strip { position: relative; z-index: 1; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 99;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 56px;
  background: rgba(14, 20, 16, .82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--edge);
}

.logo {
  font-family: var(--mono); font-size: 16px; font-weight: 500;
  text-decoration: none; letter-spacing: -.02em;
}
.logo .t { color: var(--teal); }
.logo .f { color: var(--white); }

.nav-r { display: flex; align-items: center; gap: 28px; }
.nav-r a {
  font-family: var(--mono); font-size: 12px; color: var(--muted);
  text-decoration: none; letter-spacing: .03em; transition: color .15s;
}
.nav-r a:hover { color: var(--teal); }
.nav-btn {
  font-family: var(--mono); font-size: 12px; padding: 7px 16px;
  border: 1px solid var(--teal2); border-radius: 5px;
  color: var(--teal); background: transparent; text-decoration: none;
  transition: background .15s;
}
.nav-btn:hover { background: var(--teal3); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 100px 40px 80px;
  text-align: center;
  transform-origin: center top;
  will-change: transform, opacity;
}

.hero::after {
  content: ''; position: absolute;
  top: calc(var(--gy, 50%) - 320px);
  left: calc(var(--gx, 50%) - 320px);
  width: 640px; height: 640px;
  background: radial-gradient(circle, #4ecba014 0%, transparent 65%);
  pointer-events: none; z-index: 0;
  transition: top .6s ease, left .6s ease;
}

.hero > * { position: relative; z-index: 1; }

.hero-logo-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 0;
  margin-bottom: 20px;
  opacity: 0; animation: up .6s .15s ease forwards;
}

.hero-ears {
  width: clamp(48px, 7vw, 80px);
  height: auto;
  margin-bottom: -4px;
}

.acronym-wrap {
  margin-bottom: 44px;
  opacity: 0; animation: up .5s .55s ease forwards;
}

.acronym-row {
  font-family: var(--mono);
  font-size: clamp(12px, 1.4vw, 15px);
  letter-spacing: .02em;
  color: var(--muted);
  display: flex; align-items: baseline; gap: 0;
  flex-wrap: wrap; justify-content: center;
}

.acr-letter {
  color: var(--teal);
  font-weight: 500;
  font-size: clamp(14px, 1.8vw, 18px);
}

.acr-expand {
  color: var(--muted);
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  display: inline-block;
  white-space: pre;
  transition: max-width .7s cubic-bezier(.22,1,.36,1), opacity .5s ease;
}

.acronym-wrap.expanded .acr-expand {
  max-width: 200px;
  opacity: 1;
}

.h-title {
  font-family: var(--mono);
  font-size: clamp(64px, 11vw, 112px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.04em;
  margin-bottom: 0;
}
.h-title .t { color: var(--teal); }
.h-title .f { color: var(--white); }
.h-title .cursor {
  display: inline-block; width: 6px; height: .85em;
  background: var(--teal); vertical-align: -.05em; margin-left: 2px;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.h-sub {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 48px;
  line-height: 1.7;
  opacity: 0; animation: up .6s .3s ease forwards;
}

.h-actions {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: up .6s .4s ease forwards;
}

.btn-main {
  font-family: var(--mono); font-size: 13px; font-weight: 500;
  padding: 13px 28px; background: var(--teal); color: var(--ink);
  border: none; border-radius: 6px; text-decoration: none;
  cursor: pointer; transition: opacity .15s, transform .12s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-main:hover { opacity: .88; transform: translateY(-1px); }

.install-block {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px;
  background: var(--ink); border: 1px solid var(--edge);
  border-radius: 8px; padding: 12px 16px;
  transition: border-color .15s; max-width: 100%;
}
.install-block:hover { border-color: var(--teal2); }
.install-prefix { color: var(--teal); user-select: none; }
.install-cmd { color: var(--white); letter-spacing: -.01em; }
.install-copy {
  background: none; border: none; cursor: pointer;
  color: var(--muted); padding: 2px 4px; border-radius: 4px;
  display: flex; align-items: center;
  transition: color .15s, background .15s;
}
.install-copy:hover { color: var(--teal); background: var(--teal3); }
.install-copy.copied { color: var(--teal); }

.btn-ghost {
  font-family: var(--mono); font-size: 13px;
  padding: 13px 28px; background: transparent; color: var(--mid);
  border: 1px solid var(--edge); border-radius: 6px; text-decoration: none;
  cursor: pointer; transition: border-color .15s, background .15s, transform .12s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { border-color: var(--dim); background: var(--bg2); transform: translateY(-1px); }

@keyframes up {
  from { opacity:0; transform: translateY(12px); }
  to { opacity:1; transform: translateY(0); }
}

/* ── VIDEO PLACEHOLDER ── */
.term-wrap {
  margin-top: 64px; width: 100%; max-width: 860px;
  opacity: 0; animation: up .7s .5s ease forwards;
  will-change: transform, opacity;
  transform-origin: center top;
}

.video-shell {
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--edge);
  box-shadow: 0 48px 96px rgba(0,0,0,.6), 0 0 0 1px rgba(78,203,160,.05);
  position: relative; background: var(--ink);
}

.video-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 14px; background: #0b1210;
  border-bottom: 1px solid var(--edge);
  position: relative;
}
.video-bar-title {
  font-family: var(--mono); font-size: 11px;
  color: var(--dim);
  position: absolute; left: 50%; transform: translateX(-50%);
}

.video-stage {
  position: relative; aspect-ratio: 16/9;
  background: #0c1410;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; overflow: hidden;
}

.video-stage::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,.08) 2px,
    rgba(0,0,0,.08) 4px
  );
  pointer-events: none; z-index: 1;
}

.video-stage::after {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, #4ecba022 0%, transparent 70%);
  pointer-events: none; z-index: 1;
  transition: transform .4s ease, opacity .4s ease;
}
.video-stage:hover::after {
  transform: scale(1.3);
  opacity: 1.4;
}

.video-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--edge) 1px, transparent 1px),
    linear-gradient(90deg, var(--edge) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .25;
}

.video-corner {
  position: absolute; width: 18px; height: 18px;
  border-color: var(--teal2); border-style: solid;
  opacity: .5; z-index: 2;
}
.vc-tl { top: 16px; left: 16px; border-width: 2px 0 0 2px; }
.vc-tr { top: 16px; right: 16px; border-width: 2px 2px 0 0; }
.vc-bl { bottom: 16px; left: 16px; border-width: 0 0 2px 2px; }
.vc-br { bottom: 16px; right: 16px; border-width: 0 2px 2px 0; }

.play-btn {
  position: relative; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--teal); color: var(--ink);
  transition: transform .2s cubic-bezier(.22,1,.36,1), box-shadow .2s ease;
  box-shadow: 0 0 0 0 rgba(78,203,160,.4);
}
.play-btn::before {
  content: '';
  position: absolute; inset: -8px; border-radius: 50%;
  border: 1px solid rgba(78,203,160,.2);
  animation: ring 2.5s ease-out infinite;
}
.play-btn::after {
  content: '';
  position: absolute; inset: -20px; border-radius: 50%;
  border: 1px solid rgba(78,203,160,.1);
  animation: ring 2.5s ease-out infinite .6s;
}
@keyframes ring {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.6); opacity: 0; }
}
.video-stage:hover .play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(78,203,160,.3);
}

.play-icon {
  width: 0; height: 0;
  border-style: solid;
  border-width: 11px 0 11px 20px;
  border-color: transparent transparent transparent var(--ink);
  margin-left: 4px;
}

.video-caption {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 16px; background: #0b1210;
  border-top: 1px solid var(--edge);
}
.vc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); animation: pulse 2s infinite;
}
.vc-text { font-family: var(--mono); font-size: 11px; color: var(--muted); }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

/* ── DOTS ── */
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dr { background: #ff5f57; }
.dy { background: #febc2e; }
.dg { background: #28c840; }

/* ── DIVIDER ── */
.hr { border: none; border-top: 1px solid var(--edge); max-width: 1040px; margin: 0 auto; }

/* ── SECTION WRAPPER ── */
.wrap { max-width: 1040px; margin: 0 auto; padding: 100px 40px; }

.lbl {
  font-family: var(--mono); font-size: 10px; color: var(--teal);
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px;
}
.h2 {
  font-size: clamp(32px, 5vw, 52px); font-weight: 700;
  line-height: 1.05; letter-spacing: -.025em; margin-bottom: 20px;
}
.lead { font-size: 17px; color: var(--muted); max-width: 440px; line-height: 1.7; }

/* ── HOW TO USE ── */
.how-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: var(--edge);
  border: 1px solid var(--edge); border-radius: 10px;
  overflow: hidden; margin-top: 60px;
}

.how-step {
  background: var(--bg); padding: 36px 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background .18s;
}
.how-step:hover { background: var(--bg2); }

.step-top { display: flex; align-items: center; gap: 12px; }
.step-num {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  color: var(--teal); border: 1px solid var(--teal2);
  border-radius: 4px; padding: 2px 8px; flex-shrink: 0;
}
.step-cmd {
  font-family: var(--mono); font-size: 13px; color: var(--white);
  background: var(--bg2); border: 1px solid var(--edge);
  border-radius: 4px; padding: 3px 10px; flex: 1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.step-title { font-size: 17px; font-weight: 700; color: var(--white); letter-spacing: -.01em; }
.step-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

.how-step.span2 { grid-column: span 2; }

.step-output {
  font-family: var(--mono); font-size: 11px;
  background: var(--ink); border: 1px solid var(--edge);
  border-radius: 5px; padding: 10px 14px; color: var(--muted);
  display: flex; flex-direction: column; gap: 4px; margin-top: 4px;
}
.so-line { display: flex; gap: 8px; }
.so-ok { color: var(--teal); }
.so-w { color: #febc2e; }
.so-d { color: var(--dim); }

/* ── DOWNLOAD STRIP ── */
.download-strip {
  background: var(--bg2);
  border-top: 1px solid var(--edge); border-bottom: 1px solid var(--edge);
}

.dl-inner {
  max-width: 1040px; margin: 0 auto;
  padding: 80px 40px;
}

.dl-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 56px;
}

.dl-card {
  background: var(--bg); border: 1px solid var(--edge);
  border-radius: 10px; padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .18s, transform .18s; text-decoration: none;
}
.dl-card:hover { border-color: var(--teal2); transform: translateY(-2px); }

.dl-platform {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  letter-spacing: .07em; text-transform: uppercase;
}

.dl-name {
  font-size: 20px; font-weight: 700; color: var(--white);
  letter-spacing: -.02em;
}

.dl-icon {
  line-height: 1;
}
.dl-icon svg {
  width: 28px; height: 28px; display: block;
}

.dl-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; padding: 10px 18px;
  background: transparent; color: var(--teal);
  border: 1px solid var(--teal2); border-radius: 5px;
  text-decoration: none; margin-top: auto;
  transition: background .15s;
  align-self: flex-start;
}
.dl-btn:hover { background: var(--teal3); }

/* ── VSCODE STRIP ── */
.vscode-strip {
  background: var(--bg2);
  border-top: 1px solid var(--edge); border-bottom: 1px solid var(--edge);
}

.vsc-inner {
  max-width: 1040px; margin: 0 auto;
  padding: 80px 40px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}

.vsc-feat-list {
  list-style: none; display: flex; flex-direction: column;
  gap: 22px; margin-top: 28px;
}
.vsc-feat { display: flex; gap: 14px; }
.vsc-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal);
  flex-shrink: 0; margin-top: 8px;
}
.vsc-text { font-size: 15px; color: var(--muted); line-height: 1.65; }
.vsc-text strong { color: var(--white); font-weight: 600; }

.vsc-mock {
  background: var(--ink); border: 1px solid var(--edge);
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
  display: flex; flex-direction: column;
}
.vm-titlebar {
  display: flex; align-items: center; gap: 7px; padding: 9px 12px;
  background: #0b1210; border-bottom: 1px solid var(--edge); flex-shrink: 0;
}
.vm-title { font-family: var(--mono); font-size: 10px; color: var(--dim); margin-left: 6px; }

.vm-window { display: flex; flex: 1; min-height: 0; }

.vm-actbar {
  width: 40px; background: #0b1210; border-right: 1px solid var(--edge);
  display: flex; flex-direction: column; align-items: center;
  padding: 6px 0; gap: 2px; flex-shrink: 0;
}
.vm-act-icon {
  width: 32px; height: 32px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--dim); cursor: default;
  position: relative;
}
.vm-act-icon.active { color: var(--white); }
.vm-act-icon.active::before {
  content: ''; position: absolute; left: -1px; top: 6px; bottom: 6px;
  width: 2px; background: var(--teal); border-radius: 0 2px 2px 0;
}

.vm-sidebar {
  width: 180px; background: #111a16; border-right: 1px solid var(--edge);
  display: flex; flex-direction: column; flex-shrink: 0; overflow: hidden;
}
.vm-sb-header {
  font-family: var(--mono); font-size: 9px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
  padding: 8px 12px 6px; border-bottom: 1px solid var(--edge);
  display: flex; align-items: center; justify-content: space-between;
}
.vm-sb-header span { color: var(--teal); font-size: 12px; cursor: default; }
.vm-sb-body {
  padding: 10px; overflow-y: auto; flex: 1;
  display: flex; flex-direction: column; gap: 6px;
}

.vm-objective {
  font-family: var(--mono); font-size: 9px; color: var(--muted);
  background: var(--bg3); border-radius: 3px; padding: 6px 8px;
  line-height: 1.5; margin-bottom: 2px;
}
.vm-objective strong {
  color: var(--white); display: block; font-size: 10px; margin-bottom: 2px;
}

.vm-gate-mini { display: flex; align-items: center; gap: 4px; padding: 4px 2px; }
.vm-gm-dot {
  width: 18px; height: 18px; border-radius: 50%; border: 1px solid var(--edge);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-family: var(--mono); flex-shrink: 0;
}
.vm-gm-dot.ok { border-color: var(--teal); color: var(--teal); background: #4ecba014; }
.vm-gm-dot.act { border-color: #5ba3d4; color: #5ba3d4; }
.vm-gm-dot.off { color: var(--dim); }
.vm-gm-lbl { font-family: var(--mono); font-size: 9px; color: var(--muted); }
.vm-gm-conn { flex: 1; height: 1px; background: var(--edge); max-width: 16px; }

.vm-sb-section {
  font-family: var(--mono); font-size: 9px; color: var(--dim);
  letter-spacing: .08em; text-transform: uppercase; padding: 6px 2px 3px;
}

.vm-task-row {
  display: flex; align-items: center; gap: 6px;
  padding: 5px 6px; border-radius: 3px; cursor: default;
  border-left: 2px solid transparent;
}
.vm-task-row:hover { background: var(--bg2); }
.vm-task-row.done { border-left-color: var(--teal); }
.vm-task-row.prog { border-left-color: #febc2e; }
.vm-task-row.pend { border-left-color: var(--dim); }
.vm-ti { font-size: 11px; flex-shrink: 0; }
.icon-done { color: var(--teal); }
.icon-prog { color: #febc2e; }
.icon-pend { color: var(--dim); }
.vm-tinfo { min-width: 0; }
.vm-ttitle {
  font-family: var(--mono); font-size: 10px; color: var(--white);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.vm-tsub {
  font-family: var(--mono); font-size: 9px; color: var(--dim);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.vm-editor {
  flex: 1; background: var(--bg); padding: 12px 14px;
  font-family: var(--mono); font-size: 10px; line-height: 1.8;
  overflow: hidden;
}
.vm-ed-tab {
  font-size: 9px; color: var(--muted); padding: 4px 10px 6px;
  border-bottom: 1px solid var(--teal); display: inline-block;
  margin: -12px -14px 8px; width: calc(100% + 28px);
  background: var(--bg2); border-right: 1px solid var(--edge);
}
.ek { color: var(--teal); }
.es { color: #a8d8a8; }
.ec { color: var(--dim); }
.ev { color: var(--white); }
.em { color: var(--muted); }

.vm-sbar {
  display: flex; background: #0b1210;
  border-top: 1px solid var(--edge); padding: 0 8px; height: 18px;
  align-items: center; flex-shrink: 0;
}
.vm-s { font-family: var(--mono); font-size: 9px; color: var(--muted); padding: 0 8px; }
.vm-s.hi { background: var(--teal2); color: var(--white); }

/* ── PRICING ── */
.price-row {
  display: flex; justify-content: center;
  gap: 14px; margin-top: 60px;
}

.price-row .price-card {
  width: 100%; max-width: 340px;
}

.price-card {
  background: var(--bg2); border: 1px solid var(--edge);
  border-radius: 10px; padding: 32px 28px;
  position: relative; transition: border-color .18s, transform .18s;
}
.price-card:hover { border-color: var(--teal2); transform: translateY(-2px); }
.price-card.hot { border-color: var(--teal2); background: var(--bg3); }

.hot-pill {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 10px; color: var(--ink);
  background: var(--teal); padding: 2px 12px; border-radius: 100px;
  letter-spacing: .07em; text-transform: uppercase; font-weight: 500;
  white-space: nowrap;
}
.p-tier {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  letter-spacing: .07em; text-transform: uppercase; margin-bottom: 12px;
}
.p-price {
  font-size: 44px; font-weight: 800; color: var(--white);
  line-height: 1; letter-spacing: -.03em; margin-bottom: 4px;
}
.p-price sup {
  font-size: 20px; font-weight: 600; vertical-align: top;
  margin-top: 7px; display: inline-block;
}
.p-note { font-family: var(--mono); font-size: 11px; color: var(--muted); margin-bottom: 22px; }
.p-rule { height: 1px; background: var(--edge); margin-bottom: 18px; }
.p-list {
  list-style: none; display: flex; flex-direction: column;
  gap: 8px; margin-bottom: 26px;
}
.p-list li { font-family: var(--mono); font-size: 11px; color: var(--muted); display: flex; gap: 8px; }
.ok { color: var(--teal); }
.no { color: var(--dim); }
.p-btn {
  display: block; width: 100%; text-align: center;
  font-family: var(--mono); font-size: 12px; padding: 11px;
  border-radius: 5px; text-decoration: none; cursor: pointer;
  transition: all .15s; border: 1px solid var(--edge);
  color: var(--white); background: transparent;
}
.p-btn:hover { border-color: var(--muted); background: var(--bg); }
.price-card.hot .p-btn { background: var(--teal); color: var(--ink); border-color: var(--teal); }
.price-card.hot .p-btn:hover { opacity: .88; }

.price-terms {
  font-family: var(--mono); font-size: 11px; color: var(--dim);
  text-align: center; margin-top: 28px; line-height: 1.8;
  max-width: 520px; margin-left: auto; margin-right: auto;
}
.price-terms a {
  color: var(--muted); text-decoration: underline;
  text-underline-offset: 3px; transition: color .15s;
}
.price-terms a:hover { color: var(--teal); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--edge);
  padding: 32px 40px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.foot-logo { font-family: var(--mono); font-size: 14px; text-decoration: none; }
.foot-logo .t { color: var(--teal); }
.foot-logo .f { color: var(--white); }
.foot-links { display: flex; gap: 20px; list-style: none; }
.foot-links a {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  text-decoration: none; transition: color .15s;
}
.foot-links a:hover { color: var(--teal); }
.foot-c { font-family: var(--mono); font-size: 10px; color: var(--dim); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 1; transform: translateY(0); }
.reveal.animate {
  opacity: 0; transform: translateY(12px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.animate.in { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 780px) {
  nav { padding: 0 20px; }
  .nav-r a:not(.nav-btn) { display: none; }
  .wrap { padding: 60px 20px; }
  .how-grid, .price-row, .vsc-inner, .dl-grid { grid-template-columns: 1fr; }
  .how-step.span2 { grid-column: span 1; }
  .hero { padding: 90px 20px 60px; }
  .dl-inner { padding: 60px 20px; }
  footer { flex-direction: column; align-items: flex-start; padding: 28px 20px; }
  .install-cmd { font-size: 10px; max-width: 200px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}
