: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;
  display: flex; align-items: center; gap: 6px;
}
.logo .t { color: var(--teal); }
.nav-ears {
  width: 20px; height: auto; display: block;
}
.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); }

/* ── WHAT'S INCLUDED ── */
.inc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 56px;
}

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

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

.inc-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
}

.inc-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.inc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.inc-list li {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  display: flex;
  gap: 8px;
  line-height: 1.5;
}
.inc-list li::before {
  content: '→';
  color: var(--teal);
  flex-shrink: 0;
}

/* ── 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-center { text-align: center; }
.vsc-center .lead { margin: 0 auto; }
.vsc-center .vsc-feat-list { 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 {
  border: 1px solid var(--edge);
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(78,203,160,.05);
  max-width: 640px; margin: 56px auto 0;
}
.vsc-screenshot { width: 100%; display: block; }
.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(--muted); margin-left: 8px; flex: 1; }

/* ── GATO DASHBOARD MOCK ── */
.vm-titlebar .vm-expand { margin-left: auto; font-size: 11px; color: var(--dim); }

.vm-dash {
  flex: 1; display: flex; flex-direction: column;
  background: var(--ink); overflow: hidden; min-height: 0;
}
.vm-dash-obj {
  font-family: var(--mono); font-size: 10px; color: var(--muted);
  line-height: 1.55; padding: 10px 14px 6px;
}
.vm-dash-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 14px 8px; gap: 8px;
}
.vm-dash-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.vm-badge {
  font-family: var(--mono); font-size: 9px; color: var(--teal);
  border: 1px solid var(--teal2); border-radius: 3px;
  padding: 1px 7px; background: #4ecba00d;
}
.vm-dash-btns { display: flex; gap: 5px; flex-shrink: 0; }
.vm-btn {
  font-family: var(--mono); font-size: 9px; color: var(--muted);
  background: none; border: 1px solid var(--edge);
  border-radius: 3px; padding: 2px 8px; cursor: default;
}
.vm-dash-label {
  font-family: var(--mono); font-size: 9px; color: var(--dim);
  letter-spacing: .09em; text-transform: uppercase;
  padding: 4px 14px 6px; border-top: 1px solid var(--edge);
}

/* Gate stepper */
.vm-gs {
  display: flex; align-items: flex-start; gap: 0;
  padding: 4px 24px 10px;
}
.vm-gs-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.vm-gs-circle {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--edge);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--dim); font-family: var(--mono);
}
.vm-gs-circle.act {
  border-color: var(--teal); color: var(--teal); background: #4ecba010;
}
.vm-gs-lbl {
  font-family: var(--mono); font-size: 9px; color: var(--dim);
}
.vm-gs-lbl.act { color: var(--teal); }
.vm-gs-circle--sm {
  width: 26px; height: 26px; font-size: 12px;
}
.vm-gs-continue {
  font-family: var(--mono); font-size: 8px; color: var(--teal);
  border: 1px solid var(--teal2); border-radius: 3px;
  padding: 1px 6px; background: #4ecba00d; cursor: default;
  margin-top: 3px;
}
.vm-gs-line {
  flex: 1; height: 1.5px; background: var(--edge);
  margin-top: 19px; min-width: 32px;
}

/* Tabs */
.vm-tabs {
  display: flex; align-items: center; gap: 0;
  border-bottom: 1px solid var(--edge); padding: 0 14px;
}
.vm-tab {
  font-family: var(--mono); font-size: 10px; color: var(--dim);
  padding: 5px 12px; cursor: default; border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.vm-tab.act { color: var(--white); border-bottom-color: var(--teal); }
.vm-tab-acts { margin-left: auto; display: flex; gap: 5px; padding: 4px 0; }

/* Task cards */
.vm-tcard {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 6px 14px; border-left: 3px solid transparent;
  border-bottom: 1px solid var(--edge);
}
.vm-tcard.pend { border-left-color: var(--dim); }
.vm-tcard.done { border-left-color: var(--teal); }
.vm-tc-icon {
  font-size: 12px; flex-shrink: 0; padding-top: 1px;
  font-family: var(--mono); color: var(--dim);
}
.vm-tc-icon.done { color: var(--teal); }
.vm-tc-body { min-width: 0; flex: 1; display: flex; flex-direction: column; gap: 3px; }
.vm-tc-top { display: flex; gap: 7px; align-items: baseline; min-width: 0; }
.vm-tc-id { font-family: var(--mono); font-size: 9px; color: var(--dim); flex-shrink: 0; }
.vm-tc-title {
  font-family: var(--mono); font-size: 10px; color: var(--white);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.vm-tc-file {
  font-family: var(--mono); font-size: 9px; color: var(--teal);
  background: #4ecba00d; border: 1px solid var(--teal2);
  border-radius: 3px; padding: 0 5px; display: inline-block;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%;
}

/* Command bar */
.vm-cmdbar {
  margin-top: auto; border-top: 1px solid var(--edge); padding: 8px 14px 6px;
}
.vm-cmd-input {
  font-family: var(--mono); font-size: 10px; color: var(--dim);
  border: 1px solid var(--edge); border-radius: 4px;
  padding: 5px 10px; background: var(--bg2); margin-bottom: 6px;
}
.vm-cmd-hints { display: flex; gap: 12px; flex-wrap: wrap; }
.vm-hint { font-family: var(--mono); font-size: 9px; color: var(--dim); }
.vm-hint kbd {
  font-family: var(--mono); font-size: 8px; color: var(--muted);
  border: 1px solid var(--edge); border-radius: 2px;
  padding: 0 3px; background: var(--bg3);
}

.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); }

/* ── THEME SHOWCASE ── */
.theme-strip { text-align: center; }
.theme-strip .lead { margin: 0 auto; }

.theme-editor-mock {
  max-width: 640px; margin: 56px auto 0;
  background: #161d1a; border: 1px solid var(--edge);
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(78,203,160,.05);
  text-align: left;
}

.te-tabbar {
  background: #111a16; border-bottom: 1px solid var(--edge);
  display: flex; padding: 0;
}

.te-tab {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  padding: 6px 16px; border-right: 1px solid var(--edge);
  cursor: default;
}

.te-tab.active {
  background: #161d1a; color: var(--white);
  border-bottom: 2px solid var(--teal);
}

.te-body {
  padding: 16px 0; font-family: var(--mono);
  font-size: 13px; line-height: 1.9;
}

.te-line {
  display: block;
  padding: 0 20px;
  white-space: pre;
}
.te-line:hover { background: rgba(78,203,160,.04); }

.te-lineno {
  display: inline-block;
  color: #374d44; width: 28px;
  text-align: right; margin-right: 20px;
  user-select: none; font-size: 12px;
  vertical-align: baseline;
}

.te-punct { color: #e6eeea; }

/* Gato Dark token classes */
.tk { color: #e5b06b; }
.tf { color: #4ecba0; }
.ts { color: #9ed07a; }
.tt { color: #7fbfdf; }
.tc { color: #6e9080; font-style: italic; }

/* ── 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, .dl-grid, .inc-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; }
}
