:root {
  --bg: #07070f;
  --bg-1: #0e0e1a;
  --bg-2: #13131f;
  --card: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-hover: rgba(255, 255, 255, 0.07);
  --text: #f0f2ff;
  --text-secondary: rgba(240, 242, 255, 0.55);
  --text-tertiary: rgba(240, 242, 255, 0.35);
  --purple: #7c3aed;
  --pink: #e43d91;
  --orange: #f59e0b;
  --blue: #3b82f6;
  --grad: linear-gradient(135deg, #7c3aed, #e43d91, #f59e0b);
  --grad-text: linear-gradient(120deg, #a78bfa, #f472b6, #fbbf24);
  --grad-subtle: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(228,61,145,0.1));
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.2s ease;
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.25);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 64px);
  height: 64px;
  background: rgba(7, 7, 15, 0.7);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid var(--card-border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.nav-logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.5);
}

.btn-ghost {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--card-border);
}

.btn-ghost:hover {
  background: var(--card-hover);
  border-color: rgba(255,255,255,0.15);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px clamp(20px, 5vw, 64px) 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-glow::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.18) 0%, rgba(228,61,145,0.08) 40%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

.hero-glow::after {
  content: "";
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.1) 0%, transparent 70%);
  animation: pulse 6s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.7; transform: translateX(-50%) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-icon {
  width: clamp(80px, 12vw, 120px);
  height: clamp(80px, 12vw, 120px);
  border-radius: clamp(18px, 2.8vw, 28px);
  margin-bottom: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.1);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--grad-subtle);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #c4b5fd;
  margin-bottom: 20px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a78bfa;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

h1 {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

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

.hero-sub {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 64px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  transition: all var(--transition);
}

.store-badge:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.store-badge svg { width: 24px; height: 24px; flex-shrink: 0; }

.store-badge-text { text-align: left; }
.store-badge-text small { display: block; font-size: 11px; color: var(--text-secondary); }
.store-badge-text strong { font-size: 15px; font-weight: 600; }

.store-coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(228,61,145,0.15));
  border: 1px solid rgba(124,58,237,0.35);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #c4b5fd;
}

/* ── SECTION ── */
section {
  position: relative;
  z-index: 1;
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 64px);
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 56px;
}

/* ── DIVIDER ── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--card-border), transparent);
  margin: 0 auto;
}

/* ── CARDS GRID ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}

.card:hover {
  background: var(--card-hover);
  border-color: rgba(255,255,255,0.13);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}

.card-icon-purple { background: rgba(124,58,237,0.2); }
.card-icon-pink { background: rgba(228,61,145,0.2); }
.card-icon-orange { background: rgba(245,158,11,0.2); }
.card-icon-blue { background: rgba(59,130,246,0.2); }
.card-icon-green { background: rgba(16,185,129,0.2); }
.card-icon-teal { background: rgba(20,184,166,0.2); }

.card h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── FEATURE HIGHLIGHT ── */
.feature-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-highlight.reverse { direction: rtl; }
.feature-highlight.reverse > * { direction: ltr; }

.feature-visual {
  aspect-ratio: 9/16;
  max-height: 540px;
  background: var(--bg-2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-visual-inner {
  width: 100%;
  height: 100%;
  background: var(--grad-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.feature-text h2 { margin-bottom: 16px; }
.feature-text p { color: var(--text-secondary); font-size: 16px; line-height: 1.7; margin-bottom: 24px; }

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.feature-list li::before {
  content: "✦";
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 2px;
}

/* ── STEPS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: linear-gradient(90deg, rgba(124,58,237,0.5), rgba(228,61,145,0.5), rgba(245,158,11,0.5));
}

.step {
  padding: 0 20px;
  text-align: center;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-1);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  margin: 0 auto 20px;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 0 20px rgba(124,58,237,0.4);
}

.step h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── MODES ── */
.modes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.mode-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.mode-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity var(--transition);
}

.mode-card.purple::after { background: var(--purple); }
.mode-card.pink::after { background: var(--pink); }
.mode-card.orange::after { background: var(--orange); }
.mode-card.blue::after { background: var(--blue); }

.mode-card:hover { background: var(--card-hover); transform: translateY(-2px); box-shadow: var(--shadow); }
.mode-card:hover::after { opacity: 1; }

.mode-emoji { font-size: 36px; margin-bottom: 16px; display: block; }

.pro-chip {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  background: var(--grad);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  vertical-align: middle;
  margin-left: 2px;
}
.mode-card h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.mode-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ── EXPORT / PRO ── */
.export-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.export-chip {
  padding: 8px 16px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ── PRO ── */
.pro-section {
  background: var(--bg-1);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.pro-card {
  background: linear-gradient(135deg, rgba(124,58,237,0.15) 0%, rgba(228,61,145,0.1) 50%, rgba(245,158,11,0.08) 100%);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pro-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: var(--grad);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(124,58,237,0.4);
}

.pro-card h2 { margin-bottom: 16px; }
.pro-card p { color: var(--text-secondary); max-width: 480px; margin: 0 auto 32px; font-size: 16px; }

.pro-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.pro-feature-chip {
  padding: 8px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  background: var(--bg-1);
  border-top: 1px solid var(--card-border);
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 64px) clamp(24px, 4vw, 48px);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 12px;
}

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

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--card-border);
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-tertiary);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color var(--transition);
}

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

/* ── INNER PAGE HERO ── */
.page-hero {
  padding: 100px clamp(20px, 5vw, 64px) 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero .section-label { display: block; margin-bottom: 10px; }

.page-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.page-hero p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.6;
}

/* prose pages (privacy, terms) — centered hero */
.page-hero.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero.centered p { max-width: 480px; }

/* ── DOCS / SUPPORT ── */
.doc-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px) 80px;
  align-items: start;
}

.doc-sidebar {
  position: sticky;
  top: 80px;
}

.doc-sidebar-section { margin-bottom: 28px; }

.doc-sidebar-section h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 10px;
}

.doc-sidebar-section ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }

.doc-sidebar-section a {
  display: block;
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: all var(--transition);
}

.doc-sidebar-section a:hover,
.doc-sidebar-section a.active {
  color: var(--text);
  background: var(--card);
}

.doc-content h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  padding-top: 60px;
}

.doc-content h2:first-child { padding-top: 0; }

.doc-content h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 32px 0 12px;
}

.doc-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.doc-content ul, .doc-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.doc-content li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 6px;
}

.doc-content li strong { color: var(--text); }

.note {
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 20px 0;
}

.note p {
  font-size: 14px;
  color: #c4b5fd;
  margin: 0;
}

.note p strong { color: #e9d5ff; }

.tip {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 20px 0;
}

.tip p { font-size: 14px; color: #fcd34d; margin: 0; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; }

details {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

details[open] {
  background: var(--card-hover);
  border-color: rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
}

summary {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}

summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 20px; font-weight: 400; color: var(--text-secondary); flex-shrink: 0; }
details[open] summary::after { content: "−"; color: var(--text); }

.faq-answer {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-answer p { margin-bottom: 10px; }
.faq-answer p:last-child { margin-bottom: 0; }

.faq-category-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin: 40px 0 16px;
}

.faq-category-title:first-child { margin-top: 0; }

/* ── SUPPORT ── */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 60px;
}

.support-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition);
}

.support-card:hover {
  background: var(--card-hover);
  border-color: rgba(255,255,255,0.13);
  transform: translateY(-2px);
}

.support-card-icon { font-size: 28px; }

.support-card h3 { font-size: 16px; font-weight: 700; }
.support-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }

/* ── PRIVACY ── */
.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px) 80px;
}

.prose h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 40px 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--card-border);
}

.prose h2:first-child { margin-top: 0; }

.prose p, .prose li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.prose ul { padding-left: 20px; margin: 12px 0 20px; }
.prose li { margin-bottom: 6px; }

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

.prose a { color: #a78bfa; text-decoration: none; }
.prose a:hover { text-decoration: underline; }

.prose .effective-date {
  display: inline-flex;
  padding: 8px 16px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-tertiary);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}

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

.scroll-indicator svg { opacity: 0.5; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .feature-highlight { grid-template-columns: 1fr; gap: 32px; }
  .feature-highlight.reverse { direction: ltr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .doc-layout { grid-template-columns: 1fr; }
  .doc-sidebar { display: none; }
  .modes-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .steps::before { display: none; }
  .footer-links-grid { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
