/* ---------- Design tokens ---------- */
:root {
  --bg: #08080d;
  --bg-2: #0d0d14;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f4f6;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;
  --violet: #a78bfa;
  --violet-2: #8b5cf6;
  --cyan: #22d3ee;
  --emerald: #34d399;
  --amber: #fbbf24;
  --rose: #fb7185;
  --grad: linear-gradient(135deg, #a78bfa 0%, #22d3ee 100%);
  --grad-soft: linear-gradient(
    135deg,
    rgba(167, 139, 250, 0.18) 0%,
    rgba(34, 211, 238, 0.18) 100%
  );
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 20px 60px -20px rgba(139, 92, 246, 0.35);
  --max: 1180px;
  --gutter: clamp(20px, 4vw, 40px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: "Inter", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1em;
}

.mono {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.85em;
}

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Ambient background ---------- */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(
      900px 600px at 12% -10%,
      rgba(139, 92, 246, 0.22),
      transparent 60%
    ),
    radial-gradient(
      800px 500px at 90% 0%,
      rgba(34, 211, 238, 0.18),
      transparent 60%
    ),
    radial-gradient(
      600px 400px at 50% 80%,
      rgba(139, 92, 246, 0.08),
      transparent 70%
    );
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at top, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at top, black 30%, transparent 70%);
  opacity: 0.5;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(8, 8, 13, 0.55);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(8, 8, 13, 0.78);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid var(--border);
}

.brand-name {
  font-size: 17px;
}

.nav-links {
  display: flex;
  gap: 26px;
  margin-left: auto;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.link-muted {
  color: var(--text-muted);
  font-size: 14.5px;
  font-weight: 500;
}

.link-muted:hover {
  color: var(--text);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14.5px;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease,
    background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-sm {
  padding: 8px 14px;
  font-size: 13.5px;
}

.btn-lg {
  padding: 14px 22px;
  font-size: 15.5px;
  border-radius: 12px;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #8b5cf6 0%, #22d3ee 100%);
  color: #0a0a0f;
  box-shadow: 0 8px 30px -8px rgba(139, 92, 246, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 12px 40px -10px rgba(139, 92, 246, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}

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

/* ---------- Hero ---------- */
.hero {
  padding: clamp(56px, 9vw, 120px) var(--gutter) clamp(60px, 8vw, 90px);
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(167, 139, 250, 0.1);
  border: 1px solid rgba(167, 139, 250, 0.25);
  color: #d6cdfa;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 26px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--violet);
  box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.18);
}

.hero-title {
  font-size: clamp(38px, 6.5vw, 76px);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 0 auto 22px;
  max-width: 14ch;
}

.hero-title .grad {
  display: block;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-muted);
  max-width: 62ch;
  margin: 0 auto 36px;
}

.hero-ctas {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 auto 0;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  color: var(--text-muted);
  font-size: 13.5px;
}

.hero-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-bullets svg {
  color: var(--emerald);
}

/* ---------- Hero mock ---------- */
.hero-mock {
  margin-top: 64px;
  perspective: 1800px;
}

.mock-window {
  max-width: 980px;
  margin: 0 auto;
  background: linear-gradient(
    180deg,
    rgba(20, 20, 28, 0.95),
    rgba(12, 12, 18, 0.95)
  );
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow), var(--shadow-soft);
  overflow: hidden;
  text-align: left;
  transform: rotateX(2deg);
  transform-origin: top center;
}

.mock-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  display: inline-block;
}

.dot-r {
  background: #ff5f56;
}

.dot-y {
  background: #ffbd2e;
}

.dot-g {
  background: #27c93f;
}

.mock-url {
  margin-left: 12px;
  color: var(--text-dim);
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
}

/* Terminal mock */
.terminal {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 13.5px;
  line-height: 1.7;
  padding: 22px 26px 26px;
  color: #e4e4e7;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 16, 0.6),
    rgba(8, 8, 13, 0.7)
  );
}

.t-line {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.t-line.t-indent {
  padding-left: 18px;
}

.t-spacer {
  height: 14px;
}

.t-spacer-sm {
  height: 6px;
}

.t-prompt {
  color: var(--violet);
  font-weight: 600;
}

.t-cmd {
  color: #e4e4e7;
}

.t-label {
  color: var(--text-dim);
}

.t-input {
  color: var(--cyan);
}

.t-muted {
  color: var(--text-muted);
}

.t-dim {
  color: var(--text-dim);
}

.t-ok {
  color: var(--emerald);
  font-weight: 700;
}

.t-bold {
  font-weight: 600;
  color: #fff;
}

.t-check {
  color: var(--emerald);
  font-weight: 600;
  font-size: 12.5px;
  margin-left: auto;
}

.t-bar {
  display: inline-flex;
  position: relative;
  width: 280px;
  max-width: 50vw;
  height: 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  overflow: hidden;
}

.t-bar-fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--grad);
  animation: bar-fill 2.4s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

@keyframes bar-fill {
  to {
    width: 100%;
  }
}

.t-caret {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: var(--violet);
  animation: caret 1s steps(2) infinite;
  vertical-align: middle;
  border-radius: 1px;
}

@keyframes caret {
  50% {
    opacity: 0;
  }
}

/* ---------- Section primitives ---------- */
.section {
  padding: clamp(70px, 10vw, 130px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.kicker {
  display: inline-block;
  color: var(--cyan);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.kicker-violet {
  color: var(--violet);
}

.kicker-warn {
  color: var(--amber);
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.lead {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 60ch;
  margin: 0 auto;
}

/* ---------- Features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.2s ease, background-color 0.2s ease,
    border-color 0.2s ease;
}

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

.feature-highlight {
  background: linear-gradient(
    180deg,
    rgba(167, 139, 250, 0.1),
    rgba(34, 211, 238, 0.04)
  );
  border-color: rgba(167, 139, 250, 0.28);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--grad-soft);
  color: #e7e1ff;
  margin-bottom: 16px;
  border: 1px solid rgba(167, 139, 250, 0.25);
}

.feature h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin: 0;
}

/* ---------- Problem list ---------- */
.problem-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.problem {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid rgba(251, 191, 36, 0.55);
  border-radius: var(--radius);
  padding: 20px 20px;
}

.problem-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--amber);
  padding-top: 2px;
  min-width: 24px;
}

.problem h3 {
  font-size: 15.5px;
  font-weight: 600;
  margin: 0 0 4px;
  letter-spacing: -0.005em;
}

.problem p {
  color: var(--text-muted);
  font-size: 13.5px;
  margin: 0;
  line-height: 1.5;
}

.problem-foot {
  margin-top: 32px;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* ---------- Solution section ---------- */
.solution {
  padding-top: clamp(40px, 5vw, 60px);
  padding-bottom: clamp(20px, 3vw, 30px);
}

/* ---------- Pro callout ---------- */
.pro-callout {
  margin-top: 28px;
  background: linear-gradient(
    180deg,
    rgba(167, 139, 250, 0.1),
    rgba(34, 211, 238, 0.04)
  );
  border: 1px solid rgba(167, 139, 250, 0.28);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.5vw, 40px);
  box-shadow: var(--shadow-soft);
}

.pro-callout-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.pro-callout-head h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}

.pro-pill {
  display: inline-block;
  background: var(--grad);
  color: #0a0a0f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
}

.pro-callout > p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 70ch;
}

.pro-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}

.pro-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.pro-list-mark {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--grad);
  margin-top: 5px;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.12);
}

.pro-list strong {
  color: var(--text);
  font-weight: 600;
}

.pro-list div {
  color: var(--text-muted);
  font-size: 14.5px;
}

.pro-foot {
  margin: 8px 0 0;
  color: var(--text-dim);
  font-size: 13px;
  font-style: italic;
}

/* ---------- Privacy section ---------- */
.privacy {
  max-width: var(--max);
}

.privacy-card {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 28px;
  background: linear-gradient(
    180deg,
    rgba(167, 139, 250, 0.08),
    rgba(34, 211, 238, 0.04)
  );
  border: 1px solid rgba(167, 139, 250, 0.22);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.privacy-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(167, 139, 250, 0.5),
    rgba(34, 211, 238, 0.2),
    transparent 60%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.privacy-text h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 700;
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  display: grid;
  gap: 12px;
}

.privacy-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-muted);
  font-size: 15px;
}

.privacy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--grad);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.privacy-list strong {
  color: var(--text);
  font-weight: 600;
}

.privacy-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.privacy-aside {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: start;
}

.privacy-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: left;
}

.stat-num {
  display: block;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}

.stat-label {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.45;
}

/* ---------- Pricing ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.price-grid-2 {
  grid-template-columns: 1fr 1fr;
  max-width: 880px;
  margin: 0 auto;
}

.price {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.price h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 4px;
  letter-spacing: 0;
}

.price-tag {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-period {
  color: var(--text-muted);
  font-size: 14px;
}

.price-sub {
  color: var(--text-muted);
  font-size: 14px;
  margin: 4px 0 0;
}

.price-sub strong {
  color: var(--text);
  font-weight: 600;
}

.price-blurb {
  color: var(--text-muted);
  font-size: 14px;
  margin: 10px 0 0;
  line-height: 1.5;
}

.price ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
  color: var(--text-muted);
  font-size: 14.5px;
}

.price li {
  position: relative;
  padding-left: 24px;
}

.price li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.35);
}

.price li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 6px;
  height: 3px;
  border-left: 1.6px solid var(--emerald);
  border-bottom: 1.6px solid var(--emerald);
  transform: rotate(-45deg);
}

.price-foot {
  color: var(--text-dim);
  font-size: 12.5px;
  text-align: center;
  margin: -8px 0 0;
}

.price-featured {
  background: linear-gradient(
    180deg,
    rgba(167, 139, 250, 0.1),
    rgba(34, 211, 238, 0.04)
  );
  border-color: rgba(167, 139, 250, 0.32);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.badge-pop {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--grad);
  color: #0a0a0f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
}

/* ---------- FAQ ---------- */
.faq {
  display: grid;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.faq details[open] {
  background: var(--surface-2);
  border-color: var(--border-strong);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 15.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "";
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-right: 4px;
}

.faq details[open] summary::after {
  transform: rotate(-135deg);
}

.faq details p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin: 12px 0 0;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  padding: 0 var(--gutter) clamp(60px, 8vw, 100px);
}

.cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) clamp(28px, 4vw, 56px);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.18),
    rgba(34, 211, 238, 0.1)
  );
  border: 1px solid rgba(167, 139, 250, 0.28);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.cta-inner::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    closest-side,
    rgba(167, 139, 250, 0.25),
    transparent 70%
  );
  pointer-events: none;
}

.cta-inner h2 {
  font-size: clamp(26px, 3.6vw, 40px);
  position: relative;
}

.cta-inner p {
  color: var(--text-muted);
  position: relative;
}

.cta-inner .hero-ctas {
  position: relative;
  margin-top: 8px;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  background: rgba(8, 8, 13, 0.6);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px var(--gutter) 28px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 32px;
}

.footer-tag {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 12px;
  max-width: 36ch;
  line-height: 1.6;
}

.footer-link {
  color: var(--text);
  border-bottom: 1px dotted var(--border-strong);
  transition: color 0.15s ease;
}

.footer-link:hover {
  color: var(--violet);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-cols h4 {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 12px;
  font-weight: 600;
}

.footer-cols a {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.15s ease;
}

.footer-cols a:hover {
  color: var(--text);
}

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px var(--gutter) 32px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  color: var(--text-dim);
  font-size: 13px;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
  .feature-grid,
  .problem-list,
  .price-grid,
  .price-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  .pro-list {
    grid-template-columns: 1fr;
  }
  .price-featured {
    transform: none;
  }
  .privacy-card {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .feature-grid,
  .problem-list,
  .price-grid,
  .price-grid-2,
  .footer-cols {
    grid-template-columns: 1fr;
  }
  .privacy-aside {
    grid-template-columns: 1fr 1fr;
  }
  .nav-cta .link-muted {
    display: none;
  }
  .terminal {
    font-size: 12.5px;
    padding: 18px 18px 22px;
  }
  .t-bar {
    width: 160px;
  }
}
