/* XVDown marketing — dark Apple-product minimalism, brand-blue tint */

:root {
  color-scheme: dark;

  --hue: 205;
  --bg: oklch(0.14 0.012 var(--hue));
  --bg-elev: oklch(0.18 0.016 var(--hue));
  --bg-soft: oklch(0.22 0.02 var(--hue));
  --line: oklch(0.32 0.02 var(--hue));
  --text: oklch(0.94 0.01 var(--hue));
  --muted: oklch(0.68 0.02 var(--hue));
  --faint: oklch(0.52 0.02 var(--hue));
  --accent: oklch(0.68 0.14 var(--hue));
  --accent-hot: oklch(0.62 0.16 var(--hue));
  --pro-a: oklch(0.82 0.14 75);
  --pro-b: oklch(0.65 0.2 35);

  --font-display: "Sora", "Noto Sans SC", system-ui, sans-serif;
  --font-body: "Noto Sans SC", "Sora", system-ui, sans-serif;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --max: 1120px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }

.accent { color: var(--accent); }

/* Ambient glow — brand tinted, not neon purple */
.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, oklch(0.35 0.08 var(--hue) / 0.45), transparent 60%),
    radial-gradient(ellipse 40% 30% at 90% 20%, oklch(0.3 0.06 var(--hue) / 0.2), transparent 50%),
    radial-gradient(ellipse 35% 25% at 10% 60%, oklch(0.28 0.05 var(--hue) / 0.15), transparent 50%);
}

.nav, main, .footer { position: relative; z-index: 1; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: var(--space-5);
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--space-4) var(--space-5);
  backdrop-filter: blur(16px) saturate(1.2);
  background: oklch(0.14 0.012 var(--hue) / 0.72);
  border-bottom: 1px solid oklch(0.32 0.02 var(--hue) / 0.35);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.nav-brand img { border-radius: 7px; }

.nav-links {
  display: flex;
  gap: var(--space-5);
  margin-left: var(--space-4);
  flex: 1;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s var(--ease);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.lang-btn {
  min-width: 2.25rem;
  height: 2rem;
  padding: 0 0.65rem;
  border-radius: var(--radius-pill);
  background: var(--bg-soft);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.lang-btn:hover { background: var(--line); color: var(--text); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.35rem;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

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

.btn-sm { padding: 0.45rem 0.95rem; font-size: 0.82rem; }
.btn-lg { padding: 0.95rem 1.75rem; font-size: 1rem; }

.btn-primary {
  background: var(--accent);
  color: oklch(0.16 0.02 var(--hue));
  box-shadow: 0 0 0 1px oklch(0.75 0.1 var(--hue) / 0.25), 0 8px 28px oklch(0.45 0.12 var(--hue) / 0.35);
}

.btn-primary:hover {
  background: var(--accent-hot);
  box-shadow: 0 0 0 1px oklch(0.75 0.1 var(--hue) / 0.35), 0 12px 36px oklch(0.45 0.12 var(--hue) / 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--line);
}

.btn-ghost:hover { background: var(--bg-soft); }

/* ---------- Hero ---------- */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6.5rem) var(--space-5) var(--space-8);
  text-align: center;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-4);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.15rem, 5.5vw, 3.85rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  max-width: 16ch;
  margin: 0 auto var(--space-5);
}

.hero-lead {
  max-width: 42rem;
  margin: 0 auto var(--space-6);
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-bottom: var(--space-4);
}

.hero-note {
  color: var(--faint);
  font-size: 0.88rem;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

/* Product stage */
.product-stage {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  min-height: 340px;
}

.mock-window {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 1px 0 oklch(1 0 0 / 0.04) inset,
    0 40px 80px oklch(0.05 0.02 var(--hue) / 0.55);
  text-align: left;
}

.mock-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  background: oklch(0.16 0.014 var(--hue));
  border-bottom: 1px solid var(--line);
}

.mock-chrome > span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}

.mock-chrome > span:nth-child(1) { background: oklch(0.65 0.15 25); }
.mock-chrome > span:nth-child(2) { background: oklch(0.78 0.14 95); }
.mock-chrome > span:nth-child(3) { background: oklch(0.7 0.12 145); }

.mock-url {
  margin-left: 12px;
  flex: 1;
  background: var(--bg);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.75rem;
  color: var(--faint);
  font-family: var(--font-display);
}

.mock-body { padding: 18px 20px 22px; }

.mock-tweet {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.mock-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--bg-soft), var(--line));
  flex-shrink: 0;
}

.mock-lines { flex: 1; display: flex; flex-direction: column; gap: 8px; padding-top: 6px; }

.mock-line {
  height: 8px;
  border-radius: 4px;
  background: var(--bg-soft);
}

.mock-line.w30 { width: 30%; }
.mock-line.w35 { width: 35%; }
.mock-line.w40 { width: 40%; }
.mock-line.w50 { width: 50%; }
.mock-line.w70 { width: 70%; }
.mock-line.w80 { width: 80%; }

.mock-video {
  position: relative;
  height: 200px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(160deg, oklch(0.22 0.03 var(--hue)), oklch(0.12 0.02 var(--hue))),
    radial-gradient(circle at 30% 40%, oklch(0.4 0.06 var(--hue) / 0.4), transparent 50%);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.mock-play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: oklch(0 0 0 / 0.45);
  display: grid;
  place-items: center;
  color: var(--text);
  font-size: 14px;
  backdrop-filter: blur(4px);
}

.mock-bar {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  height: 3px;
  border-radius: 2px;
  background: oklch(1 0 0 / 0.15);
}

.mock-bar::after {
  content: "";
  display: block;
  width: 38%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.mock-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 14px;
  padding-left: 4px;
}

.mock-actions > span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg-soft);
}

.mock-dl {
  margin-left: auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: oklch(0.68 0.14 var(--hue) / 0.12);
  box-shadow: inset 0 0 0 1px oklch(0.68 0.14 var(--hue) / 0.35);
}

.mock-popup {
  position: absolute;
  right: -12px;
  bottom: -28px;
  width: 220px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  box-shadow: 0 24px 48px oklch(0.05 0.02 var(--hue) / 0.55);
  text-align: left;
  animation: float 5.5s var(--ease) infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.mock-pop-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
}

.mock-pop-head span { color: var(--accent); }

.pro-pill {
  font-style: normal;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--pro-a), var(--pro-b));
  color: oklch(0.98 0.01 80);
}

.mock-pop-quota {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.mock-pop-bar {
  margin-top: 6px;
  height: 5px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--pro-a), var(--pro-b));
}

.mock-pop-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mock-pop-stats div {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 10px;
  text-align: center;
}

.mock-pop-stats b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.mock-pop-stats small {
  color: var(--faint);
  font-size: 0.7rem;
}

/* ---------- Strip ---------- */
.strip {
  max-width: var(--max);
  margin: 0 auto var(--space-9);
  padding: 0 var(--space-5);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.strip-item {
  background: var(--bg-elev);
  padding: var(--space-5) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.strip-item strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
}

.strip-item span {
  color: var(--faint);
  font-size: 0.82rem;
}

/* ---------- Sections ---------- */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--space-9) var(--space-5);
}

.section-head {
  max-width: 36rem;
  margin-bottom: var(--space-8);
}

.section-head h2,
.privacy-copy h2,
.install-panel h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: var(--space-4);
}

.section-lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 38ch;
}

/* Feature rows */
.feature-rows {
  display: flex;
  flex-direction: column;
  gap: var(--space-9);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: center;
}

.feature-row.reverse .feature-copy { order: 2; }
.feature-row.reverse .feature-visual { order: 1; }

.feature-copy h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}

.feature-copy p {
  color: var(--muted);
  max-width: 38ch;
}

.feature-visual {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  min-height: 200px;
  display: grid;
  place-items: center;
  padding: var(--space-6);
}

.chip-row { display: flex; gap: 10px; align-items: center; }

.chip {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  color: var(--faint);
  font-size: 0.85rem;
}

.chip-active {
  width: auto;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  color: var(--accent);
  background: oklch(0.68 0.14 var(--hue) / 0.12);
  box-shadow: inset 0 0 0 1px oklch(0.68 0.14 var(--hue) / 0.4);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
}

.v-list {
  gap: 12px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.mini-card {
  display: flex;
  gap: 12px;
  width: 100%;
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 12px;
}

.mini-thumb {
  width: 72px;
  height: 52px;
  border-radius: 8px;
  background: linear-gradient(135deg, oklch(0.3 0.04 var(--hue)), oklch(0.2 0.03 230));
  flex-shrink: 0;
}

.mini-thumb.t2 {
  background: linear-gradient(135deg, oklch(0.28 0.04 40), oklch(0.2 0.03 var(--hue)));
}

.mini-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.v-lang {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.lang-demo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-soft);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--muted);
}

.lang-demo.on {
  background: var(--accent);
  color: oklch(0.16 0.02 var(--hue));
}

.lang-arrow { color: var(--faint); font-size: 1.4rem; }

/* Privacy */
.privacy { padding-top: var(--space-6); }

.privacy-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-7);
  align-items: center;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-lg) + 4px);
  padding: clamp(2rem, 5vw, 3.5rem);
}

.privacy-copy p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: var(--space-5);
  max-width: 42ch;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  color: var(--text);
  font-size: 0.98rem;
}

.check-list li::before {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2356b3f0' stroke-width='2'%3E%3Cpath d='M3.5 8.5 6.5 11.5 12.5 4.5'/%3E%3C/svg%3E")
    center / 12px no-repeat,
    oklch(0.68 0.14 var(--hue) / 0.15);
}

.privacy-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.vault-orb {
  position: relative;
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
}

.vault-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid oklch(0.68 0.14 var(--hue) / 0.35);
  box-shadow:
    0 0 0 18px oklch(0.68 0.14 var(--hue) / 0.05),
    0 0 0 36px oklch(0.68 0.14 var(--hue) / 0.03);
}

.vault-core {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  background: var(--bg);
  border: 1px solid var(--line);
}

.vault-caption {
  color: var(--faint);
  font-size: 0.85rem;
  font-family: var(--font-display);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.steps li {
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  background: var(--bg-elev);
  border: 1px solid var(--line);
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: var(--space-4);
}

.steps h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 650;
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}

.steps p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Pricing */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  max-width: 820px;
}

.price-card {
  position: relative;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.price-card.featured {
  background:
    linear-gradient(var(--bg-elev), var(--bg-elev)) padding-box,
    linear-gradient(145deg, oklch(0.68 0.14 var(--hue) / 0.55), oklch(0.55 0.12 40 / 0.4)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 24px 60px oklch(0.2 0.05 var(--hue) / 0.35);
}

.price-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--pro-a), var(--pro-b));
  color: oklch(0.16 0.02 40);
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 650;
}

.price-amount {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.price-desc { color: var(--faint); font-size: 0.9rem; }

.price-card ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: var(--space-2) 0 var(--space-3);
  flex: 1;
}

.price-card li {
  color: var(--muted);
  font-size: 0.95rem;
  padding-left: 1.35rem;
  position: relative;
}

.price-card li::before {
  content: "·";
  position: absolute;
  left: 0.35rem;
  color: var(--accent);
  font-weight: 700;
}

.price-card .btn { width: 100%; }

.support-card {
  background: oklch(0.19 0.015 var(--hue));
  border-color: oklch(0.38 0.045 var(--hue) / 0.7);
}

.support-kicker {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.support-body {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 42ch;
}

.support-note {
  color: var(--faint);
  font-size: 0.82rem;
  line-height: 1.6;
}

.support-actions {
  display: grid;
  gap: var(--space-3);
  margin-top: auto;
}

.support-embed-panel {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: var(--space-6);
  align-items: start;
  margin-top: var(--space-6);
  padding: var(--space-5);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.support-embed-copy { padding-top: var(--space-2); }
.support-embed-note {
  max-width: 24ch;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.support-embed-panel iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 520px;
  border-radius: var(--radius-sm);
  background: #f9f9f9;
}

/* Install */
.install-panel {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) var(--space-5);
  border-radius: calc(var(--radius-lg) + 6px);
  background: var(--bg-elev);
  border: 1px solid var(--line);
}

.install-panel > p {
  color: var(--muted);
  margin-bottom: var(--space-6);
}

.install-steps {
  text-align: left;
  max-width: 28rem;
  margin: 0 auto var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  counter-reset: step;
}

.install-steps li {
  counter-increment: step;
  position: relative;
  padding: var(--space-3) var(--space-4) var(--space-3) 2.75rem;
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--muted);
  font-size: 0.95rem;
}

.install-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
}

.install-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

/* Footer */
.footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--space-8) var(--space-5) var(--space-7);
  border-top: 1px solid oklch(0.32 0.02 var(--hue) / 0.4);
  display: grid;
  gap: var(--space-4);
  justify-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 700;
}

.footer-brand img { border-radius: 5px; }

.footer-links {
  display: flex;
  gap: var(--space-4);
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s var(--ease);
}

.footer-links a:hover { color: var(--accent); }

.footer-legal {
  color: var(--faint);
  font-size: 0.85rem;
  max-width: 52ch;
  line-height: 1.6;
}

.footer-copy {
  color: var(--faint);
  font-size: 0.8rem;
  font-family: var(--font-display);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mock-popup { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .strip { grid-template-columns: 1fr 1fr; }
  .feature-row,
  .feature-row.reverse,
  .privacy-panel,
  .price-grid,
  .steps {
    grid-template-columns: 1fr;
  }
  .feature-row.reverse .feature-copy,
  .feature-row.reverse .feature-visual { order: initial; }
  .support-embed-panel { grid-template-columns: 1fr; }
  .mock-popup {
    position: relative;
    right: auto;
    bottom: auto;
    margin: var(--space-5) auto 0;
    animation: none;
  }
  .product-stage { min-height: 0; }
  .hero h1 { max-width: 12ch; }
}

@media (max-width: 560px) {
  .strip { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
  .install-actions .btn { width: 100%; }
}
