/* ═══════════════════════════════════════════════════════════
   lua-services 2.0 — redesign
   hand-crafted design system · no framework
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg: #07070c;
  --bg-soft: #0b0c13;
  --surface: rgba(255, 255, 255, 0.028);
  --surface-2: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f5f8;
  --muted: #9ba0ae;
  --faint: #62666f;
  --accent: #7b7ff2;
  --accent-2: #b18cff;
  --accent-soft: rgba(123, 127, 242, 0.12);
  --accent-border: rgba(123, 127, 242, 0.35);
  --good: #34d399;
  --warn: #fbbf24;
  --grad: linear-gradient(115deg, #9ea2ff 0%, #7b7ff2 48%, #b18cff 100%);
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-lg: 0 24px 70px -18px rgba(0, 0, 0, 0.75);
  --shadow-accent: 0 12px 40px -12px rgba(123, 127, 242, 0.55);
  --ease: cubic-bezier(0.2, 0.65, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(123, 127, 242, 0.4); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.09); border-radius: 8px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.16); }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }
svg { display: block; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ── utilities ─────────────────────────────────────────── */

.container { width: min(1120px, calc(100% - 48px)); margin-inline: auto; }
.container.narrow { width: min(760px, calc(100% - 48px)); }
.center { text-align: center; }
.mono { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.06em; }
.dim { color: var(--faint); }
.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dim-text { color: var(--muted); }

/* ── reveal animation ──────────────────────────────────── */

.reveal {
  opacity: 1;
}
html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
html.js .reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }

/* ── promo bar ─────────────────────────────────────────── */

.promo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px 16px;
  font-size: 0.82rem;
  color: var(--muted);
  background: linear-gradient(90deg, transparent, var(--accent-soft), transparent);
  border-bottom: 1px solid var(--border);
}
.promo strong { color: var(--text); font-weight: 600; }
.promo-sep { margin: 0 8px; color: var(--faint); }
.promo-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}
.promo-code {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 7px;
  padding: 2px 8px;
  transition: background 0.25s, transform 0.25s;
}
.promo-code:hover { background: rgba(123, 127, 242, 0.2); transform: translateY(-1px); }
.promo-code svg { width: 12px; height: 12px; }
.promo-code.copied { color: var(--good); border-color: rgba(52, 211, 153, 0.4); }

/* ── nav ───────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 10px;
  z-index: 100;
  width: min(1120px, calc(100% - 48px));
  margin: 10px auto 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px 10px 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(10, 11, 17, 0.55);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.nav.scrolled .nav-inner {
  background: rgba(10, 11, 17, 0.85);
  border-color: var(--border-strong);
  box-shadow: 0 14px 44px -14px rgba(0, 0, 0, 0.7);
}

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.brand-mark svg { width: 16px; height: 16px; }
.brand-name {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.brand-name em { font-style: normal; color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 7px 13px;
  border-radius: 9px;
  transition: color 0.25s, background 0.25s;
}
.nav-links a:hover { color: var(--text); background: var(--surface-2); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
.nav-burger span {
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease);
}

/* ── buttons ───────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  padding: 13px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 50px -12px rgba(123, 127, 242, 0.7); }

.btn-ghost {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { background: var(--surface-2); border-color: var(--border-strong); transform: translateY(-2px); }

.btn-small { padding: 9px 16px; font-size: 0.85rem; border-radius: 10px; }
.btn-small svg { width: 15px; height: 15px; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ── hero ──────────────────────────────────────────────── */

.hero {
  position: relative;
  padding: 110px 0 40px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 75% 62% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 62% at 50% 0%, #000 30%, transparent 75%);
}
.hero-spot {
  position: absolute;
  top: -260px; left: 50%;
  width: 900px; height: 560px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(123, 127, 242, 0.17), transparent 65%);
  filter: blur(10px);
}

.hero-content { position: relative; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 30px;
}

.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--good);
  position: relative;
}
.pulse-dot::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--good);
  animation: ping 1.8s ease-out infinite;
}
.pulse-dot.small { width: 6px; height: 6px; }
@keyframes ping {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.9); opacity: 0; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 7.2vw, 5.4rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin-bottom: 26px;
}

.hero-sub {
  max-width: 560px;
  margin: 0 auto 38px;
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.7;
}
.hero-sub strong { color: var(--text); }

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 76px;
}

/* ── mockup window (hero centerpiece) ──────────────────── */

.mockup { position: relative; max-width: 940px; margin: 0 auto; text-align: left; }
.mockup-glow {
  position: absolute;
  inset: -12% -8%;
  background: radial-gradient(ellipse at 50% 30%, rgba(123, 127, 242, 0.16), transparent 62%);
  filter: blur(30px);
  pointer-events: none;
}
.mockup-glow.small { inset: -20% -14%; opacity: 0.8; }

.window {
  position: relative;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #0e0f18, #0a0b11);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}
.window-bar.slim { padding: 11px 14px; }
.w-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--c); flex: none; }
.window-title {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--faint);
  margin-left: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.window-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  flex: none;
}
.window-badge svg { width: 12px; height: 12px; }
.window-bar .mono { margin-left: auto; flex: none; }
.window-bar .window-title + .mono { margin-left: auto; }

/* ── hero terminal ─────────────────────────────────────── */

.term-window { max-width: 700px; margin-inline: auto; }
.term-window .window-badge { gap: 8px; }
.term {
  padding: 26px 28px 30px;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  line-height: 2.1;
  min-height: 284px;
  color: var(--muted);
  overflow-x: auto;
}
.tl { white-space: pre; }
.tl-cmd { color: var(--text); font-weight: 600; }
.tl-out::before { content: "\BB  "; color: var(--accent); }
.tl-good { color: var(--good); }
.tl.pop { animation: tlIn 0.32s var(--ease) both; }
@keyframes tlIn { from { opacity: 0; transform: translateY(5px); } }

/* ── stats strip ───────────────────────────────────────── */

.strip {
  border-block: 1px solid var(--border);
  background: var(--bg-soft);
  margin-top: 70px;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 34px 12px;
  border-left: 1px solid var(--border);
}
.stat:first-child { border-left: 0; }
.stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.stat strong small { font-size: 1.1rem; color: var(--accent); }
.stat span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ── sections ──────────────────────────────────────────── */

.section { padding: 110px 0; position: relative; }
section[id] { scroll-margin-top: 90px; }

.kicker {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.section-sub {
  max-width: 600px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}
.section-sub.left { margin: 18px 0 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}
.section-head .section-sub { max-width: 380px; }

#about { padding-top: 100px; }

/* ── backend facts ─────────────────────────────────────── */

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 56px;
}
.fact {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 30px;
  transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s, box-shadow 0.4s;
}
.fact:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--surface-2);
  box-shadow: var(--shadow-lg);
}
.fact-label { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.68rem; }
.fact-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.2vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 16px 0 14px;
}
.fact-value small { font-size: 0.5em; margin-left: 2px; }
.fact p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }

.code {
  padding: 22px 24px 26px;
  font-family: var(--font-mono);
  font-size: 0.86rem;
  line-height: 1.85;
  color: #c9cdd8;
  overflow-x: auto;
}
.code .k { color: #c792ea; }
.code .s { color: #9ecbff; }
.code .f { color: #82aaff; }
.code .n { color: #f78c6c; }
.code .c { color: var(--faint); font-style: italic; }
.caret {
  display: inline-block;
  width: 8px; height: 1.05em;
  margin-left: 3px;
  vertical-align: text-bottom;
  background: var(--accent);
  animation: caret 1.2s step-end infinite;
}
@keyframes caret { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.card h3 {
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 18px 0 8px;
}
.card p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }

.icon-chip {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  transition: box-shadow 0.35s, transform 0.35s var(--ease);
}
.icon-chip svg { width: 20px; height: 20px; }
.card:hover .icon-chip, .step:hover .icon-chip {
  box-shadow: 0 0 22px rgba(123, 127, 242, 0.4);
  transform: translateY(-2px);
}
.icon-chip.ghost {
  background: var(--surface-2);
  border-color: var(--border);
  color: var(--muted);
}

/* ── steps ─────────────────────────────────────────────── */

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 60px 0 44px;
}
.steps::before {
  content: "";
  position: absolute;
  top: 56px; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
  pointer-events: none;
}
.step {
  position: relative;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s;
}
.step:hover { transform: translateY(-4px); border-color: var(--accent-border); background: var(--surface-2); }
.step-num {
  position: absolute;
  top: 22px; right: 26px;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.14);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 20px 0 10px;
}
.step p { color: var(--muted); font-size: 0.92rem; line-height: 1.65; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--good);
  border: 1px solid rgba(52, 211, 153, 0.3);
  background: rgba(52, 211, 153, 0.07);
  border-radius: 999px;
  padding: 9px 18px;
}
.pill svg { width: 14px; height: 14px; }

/* ── spotlight split ───────────────────────────────────── */

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.tagrow { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 7px;
  padding: 4px 10px;
}
.tag-warn { color: var(--warn); background: rgba(251, 191, 36, 0.08); border-color: rgba(251, 191, 36, 0.3); }

.checklist { display: flex; flex-direction: column; gap: 20px; margin: 34px 0 40px; }
.checklist li { display: flex; gap: 15px; align-items: flex-start; }
.check {
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  flex: none;
  margin-top: 2px;
}
.check svg { width: 13px; height: 13px; }
.checklist strong { font-weight: 600; letter-spacing: -0.01em; }
.checklist p { color: var(--muted); font-size: 0.9rem; margin-top: 2px; }

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 26px;
}
.price-row > div:first-child { display: flex; flex-direction: column; gap: 4px; }
.price-row .mono.dim { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.66rem; }
.price-row strong.mono { font-size: 1.05rem; color: var(--text); }
.price-actions { display: flex; align-items: center; gap: 14px; }
.hint { font-size: 0.82rem; color: var(--faint); }

.split-visual { position: relative; }

/* ── cards (products + why + roadmap) ──────────────────── */

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 56px;
}
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  position: relative;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s, box-shadow 0.4s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--surface-2);
  box-shadow: var(--shadow-lg);
}
.card-idx {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 0.68rem;
  color: var(--faint);
  letter-spacing: 0.14em;
}

.roadmap { min-height: 190px; display: flex; flex-direction: column; }
.roadmap .mono.dim { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.66rem; }
.roadmap h3 { margin: 6px 0 0; font-size: 1.05rem; letter-spacing: 0.02em; }
.road-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: auto; padding-bottom: 26px; }
.roadmap .icon-chip { width: 38px; height: 38px; border-radius: 10px; }
.roadmap .icon-chip svg { width: 17px; height: 17px; }
.roadmap .tag { color: var(--muted); background: var(--surface-2); border-color: var(--border); }

/* ── cta ───────────────────────────────────────────────── */

.cta-card {
  position: relative;
  border: 1px solid var(--accent-border);
  border-radius: 24px;
  background:
    radial-gradient(ellipse 70% 90% at 50% -20%, rgba(123, 127, 242, 0.16), transparent 60%),
    var(--bg-soft);
  box-shadow: 0 30px 90px -30px rgba(123, 127, 242, 0.35);
  overflow: hidden;
}
.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding: 96px 32px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.05em;
}
.cta-sub {
  max-width: 470px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}
.cta-sub strong { color: var(--text); font-weight: 600; }
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* ── footer ────────────────────────────────────────────── */

.footer { border-top: 1px solid var(--border); background: var(--bg-soft); }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 40px 0 26px;
}
.footer-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer-mid .mono { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.68rem; }
.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: color 0.25s, border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
}
.footer-social a:hover {
  color: var(--text);
  border-color: var(--border-strong);
  background: var(--surface-2);
  transform: translateY(-2px);
}
.footer-social svg { width: 17px; height: 17px; }
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 0 26px;
  border-top: 1px solid var(--border);
}
.footer-legal .mono { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ── responsive ────────────────────────────────────────── */

@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; gap: 50px; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .facts { grid-template-columns: 1fr; }
  .fact-value { margin: 12px 0 10px; }
  .steps::before { display: none; }
  .steps { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .section-head .section-sub { max-width: none; }
}

@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid var(--border-strong);
    background: rgba(10, 11, 17, 0.96);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { padding: 12px 14px; }
  .nav-burger { display: flex; }
  .nav-burger.open span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav-burger.open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
}

@media (max-width: 720px) {
  .section { padding: 80px 0; }
  .hero { padding-top: 80px; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat { border-top: 1px solid var(--border); }
  .stat:nth-child(-n + 2) { border-top: 0; }
  .cards-3, .cards-4 { grid-template-columns: 1fr; }
  .price-row { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; }
  .footer-legal { justify-content: center; text-align: center; }
  .promo { font-size: 0.74rem; }
  .promo-sep { display: none; }
}

@media (max-width: 480px) {
  .hero-cta .btn { width: 100%; }
  .term { font-size: 0.74rem; padding: 20px 18px 24px; min-height: 262px; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .eyebrow { font-size: 0.68rem; }
}

/* ── reduced motion ────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ── pills row (steps) ─────────────────────────────────── */

.pill-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pill-accent {
  color: var(--accent);
  border-color: var(--accent-border);
  background: var(--accent-soft);
}

/* ── card links ────────────────────────────────────────── */

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.card-link svg { width: 13px; height: 13px; transition: transform 0.25s var(--ease); }
.card:hover .card-link svg { transform: translateX(3px); }

/* ── tag variants ──────────────────────────────────────── */

.tag-good {
  color: var(--good);
  background: rgba(52, 211, 153, 0.08);
  border-color: rgba(52, 211, 153, 0.3);
}

/* ── obfuscator before/after ───────────────────────────── */

.spotlight {
  background: var(--bg-soft);
  border-block: 1px solid var(--border);
}

.obf-flow {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}
.obf-win { flex: 1; min-width: 0; }
.obf-arrow {
  flex: none;
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--accent-border);
  background: var(--accent-soft);
  color: var(--accent);
  box-shadow: 0 0 20px rgba(123, 127, 242, 0.3);
}
.obf-arrow svg { width: 17px; height: 17px; }

.code.small { font-size: 0.74rem; line-height: 1.75; padding: 18px 20px 22px; }
.code.obf {
  color: #7d8296;
  white-space: pre-wrap;
  word-break: break-all;
}

@media (max-width: 960px) {
  .obf-flow { flex-direction: column; align-items: stretch; }
  .obf-arrow { align-self: center; transform: rotate(90deg); }
}
