/* ─── Reset & Base ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple:      #6B35D8;
  --purple-d:    #5828c4;
  --purple-l:    rgba(107,53,216,0.10);
  --purple-ll:   rgba(107,53,216,0.06);
  --teal:        #00847a;
  --teal-l:      rgba(0,132,122,0.10);
  --red:         #e8264a;
  --red-l:       rgba(232,38,74,0.10);
  --gold:        #9a6700;
  --gold-l:      rgba(154,103,0,0.10);
  --green:       #009966;
  --green-l:     rgba(0,153,102,0.10);
  --blue:        #1a6ef7;
  --blue-l:      rgba(26,110,247,0.10);

  --text:        #1a1612;
  --sub:         #5a5450;
  --muted:       #9b9590;
  --bg:          #f5f3f0;
  --card:        #ffffff;
  --border:      #e8e4df;
  --border2:     #d4cfc9;

  --radius-sm:   10px;
  --radius:      16px;
  --radius-lg:   24px;
  --radius-xl:   32px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:      0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-xl:   0 32px 80px rgba(0,0,0,0.16), 0 8px 24px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ─── Utilities ───────────────────────────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 15px;
  padding: 13px 26px; border-radius: var(--radius-sm);
  border: none; cursor: pointer; transition: all 0.18s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--purple); color: #fff;
}
.btn-primary:hover { background: var(--purple-d); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(107,53,216,0.35); }
.btn-secondary {
  background: var(--card); color: var(--text);
  border: 1.5px solid var(--border2);
}
.btn-secondary:hover { background: var(--bg); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ─── Nav ─────────────────────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,243,240,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
nav.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}

.logo {
  display: flex; align-items: baseline; gap: 0;
  font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 26px;
  line-height: 1;
}
.logo-poll { color: var(--text); }
.logo-x { color: #e8264a; }
.logo-y { color: var(--purple); }
.logo-z { color: #00c4d4; }

.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--sub);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }

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

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.2s;
}

/* ─── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  padding: 96px 0 80px;
  background: linear-gradient(135deg, #f5f3f0 0%, #ede9ff 50%, #e8f8f5 100%);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(107,53,216,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -150px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,132,122,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; position: relative; z-index: 1;
}

.hero-tag { background: var(--purple-l); color: var(--purple); margin-bottom: 20px; }

.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.5px;
  color: var(--text); margin-bottom: 20px;
}
.hero-headline span { color: var(--purple); }

.hero-sub {
  font-size: 18px; color: var(--sub); line-height: 1.65;
  max-width: 480px; margin-bottom: 36px;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px;
}

.store-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--text); color: #fff;
  padding: 12px 20px; border-radius: var(--radius-sm);
  transition: all 0.18s;
}
.store-btn:hover { background: #333; transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.store-btn svg { width: 22px; height: 22px; flex-shrink: 0; }
.store-btn-label { display: flex; flex-direction: column; }
.store-btn-small { font-size: 10px; font-weight: 500; opacity: 0.7; line-height: 1; }
.store-btn-name { font-size: 15px; font-weight: 700; line-height: 1.3; }

.hero-social-proof {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--muted);
}
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
  margin-left: -8px; flex-shrink: 0;
}
.avatar-stack span:first-child { margin-left: 0; }

/* ─── Phone Mockup ────────────────────────────────────────────────────────── */
.phone-wrap {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.phone-wrap::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(107,53,216,0.15) 0%, transparent 70%);
}

.phone {
  width: 260px; height: 520px;
  background: #1a1612;
  border-radius: 40px;
  border: 7px solid #2d2825;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 40px 80px rgba(0,0,0,0.35),
    0 16px 32px rgba(0,0,0,0.2);
  overflow: hidden;
  z-index: 1;
}
.phone-notch {
  width: 70px; height: 20px;
  background: #1a1612;
  border-radius: 0 0 14px 14px;
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.phone-screen {
  width: 100%; height: 100%;
  background: #f5f3f0;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.phone-status {
  background: #f5f3f0;
  padding: 12px 16px 4px;
  display: flex; justify-content: space-between; align-items: center;
}
.phone-status span { font-size: 9px; font-weight: 700; color: #1a1612; }
.phone-header {
  padding: 6px 14px 8px;
  display: flex; justify-content: space-between; align-items: center;
}
.phone-logo { font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 16px; }
.phone-logo .x { color: #e8264a; }
.phone-logo .y { color: #6B35D8; }
.phone-logo .z { color: #00c4d4; }
.phone-cats {
  display: flex; gap: 5px; padding: 0 10px 8px; overflow: hidden;
}
.phone-cat {
  font-size: 9px; font-weight: 700; padding: 4px 10px;
  border-radius: 20px; border: 1.5px solid #e8e4df;
  white-space: nowrap; color: #9b9590;
  background: #fff;
}
.phone-cat.active {
  border-color: #6B35D8; color: #6B35D8; background: rgba(107,53,216,0.08);
}
.phone-feed { padding: 8px 10px; display: flex; flex-direction: column; gap: 8px; }
.phone-poll {
  background: #fff;
  border: 1px solid #e8e4df;
  border-radius: 14px;
  padding: 12px;
}
.phone-poll-tag {
  font-size: 8px; font-weight: 700; padding: 2px 7px;
  border-radius: 6px; display: inline-block; margin-bottom: 7px;
}
.phone-poll-q {
  font-size: 10px; font-weight: 700; color: #1a1612;
  line-height: 1.4; margin-bottom: 8px;
}
.phone-option {
  background: #f5f3f0;
  border: 1px solid #e8e4df;
  border-radius: 8px;
  padding: 6px 9px;
  font-size: 9px; font-weight: 600; color: #5a5450;
  margin-bottom: 5px;
  position: relative; overflow: hidden;
}
.phone-option-bar {
  position: absolute; left: 0; top: 0; bottom: 0;
  border-radius: 8px;
  opacity: 0.15;
}
.phone-option-inner { position: relative; display: flex; justify-content: space-between; }
.phone-option-pct { font-weight: 700; }

/* ─── Stats ───────────────────────────────────────────────────────────────── */
.stats {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  background: var(--card);
  padding: 32px;
  text-align: center;
}
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px; font-weight: 700; line-height: 1;
  color: var(--purple); margin-bottom: 6px;
}
.stat-label {
  font-size: 14px; color: var(--sub); font-weight: 500;
}

/* ─── Section base ────────────────────────────────────────────────────────── */
section { padding: 96px 0; }

.section-tag { margin-bottom: 16px; }
.section-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.3px;
  color: var(--text); margin-bottom: 16px;
}
.section-headline span { color: var(--purple); }
.section-sub {
  font-size: 17px; color: var(--sub); line-height: 1.65;
  max-width: 560px;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ─── How It Works ────────────────────────────────────────────────────────── */
.how { background: var(--card); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 60px; font-weight: 700;
  color: var(--purple-l); line-height: 1;
  margin-bottom: 16px;
  user-select: none;
}
.step-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px; font-weight: 700;
  color: var(--text); margin-bottom: 10px;
}
.step p { font-size: 14px; color: var(--sub); line-height: 1.65; }

.step-connector {
  display: none;
}

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

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feature-card.wide { grid-column: span 2; }

.feature-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; flex-shrink: 0;
}
.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.feature-card p { font-size: 14px; color: var(--sub); line-height: 1.65; }

/* ─── Categories ──────────────────────────────────────────────────────────── */
.categories { background: var(--card); }

.cats-scroll {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 0;
}
.cat-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600;
  padding: 9px 16px; border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--sub);
  transition: all 0.15s;
  cursor: default;
}
.cat-pill:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: var(--purple-ll);
  transform: translateY(-1px);
}
.cat-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* ─── Privacy ─────────────────────────────────────────────────────────────── */
.privacy {
  background: linear-gradient(135deg, #1a1612 0%, #2d1a52 100%);
  color: #fff;
}
.privacy .section-headline { color: #fff; }
.privacy .section-headline span { color: #a78bfa; }
.privacy .section-sub { color: rgba(255,255,255,0.65); }

.privacy-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.privacy-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: background 0.2s;
}
.privacy-card:hover { background: rgba(255,255,255,0.08); }
.privacy-card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.privacy-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.privacy-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* ─── Download CTA ────────────────────────────────────────────────────────── */
.download {
  padding: 96px 0;
  background: var(--bg);
}
.download-card {
  background: linear-gradient(135deg, var(--purple) 0%, #4f1fb8 100%);
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  text-align: center;
  position: relative; overflow: hidden;
}
.download-card::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
}
.download-card::after {
  content: '';
  position: absolute; bottom: -100px; left: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,196,212,0.15) 0%, transparent 70%);
}
.download-card h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; color: #fff;
  margin-bottom: 14px; position: relative; z-index: 1;
}
.download-card p {
  font-size: 17px; color: rgba(255,255,255,0.75);
  margin-bottom: 36px; position: relative; z-index: 1;
  max-width: 480px; margin-left: auto; margin-right: auto;
}
.download-btns {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 14px; position: relative; z-index: 1;
  margin-bottom: 36px;
}
.download-note {
  font-size: 12px; color: rgba(255,255,255,0.45);
  position: relative; z-index: 1;
}

/* ─── Footer ──────────────────────────────────────────────────────────────── */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 32px;
  margin-bottom: 40px;
}
.footer-brand .logo-poll { color: #fff; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 8px; max-width: 220px; line-height: 1.6; }

.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.15s; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color 0.15s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ─── Contact Page ────────────────────────────────────────────────────────── */
.contact-hero {
  padding: 80px 0 64px;
  background: linear-gradient(135deg, #f5f3f0 0%, #ede9ff 100%);
  text-align: center;
}
.contact-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700; color: var(--text);
  margin-bottom: 14px;
}
.contact-hero p { font-size: 18px; color: var(--sub); max-width: 520px; margin: 0 auto; line-height: 1.65; }

.contact-main { padding: 80px 0; }
.contact-grid {
  display: grid; grid-template-columns: 380px 1fr; gap: 48px; align-items: start;
}

.creator-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  position: sticky; top: 96px;
}
.creator-avatar {
  width: 120px; height: 120px; border-radius: 50%;
  margin: 0 auto 20px;
  border: 3px solid var(--border);
  object-fit: cover;
  background: linear-gradient(135deg, var(--purple), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px; font-weight: 700; color: #fff;
  overflow: hidden;
}
.creator-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.creator-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--text); margin-bottom: 4px;
}
.creator-title {
  font-size: 14px; color: var(--muted); margin-bottom: 20px;
}
.creator-bio {
  font-size: 14px; color: var(--sub); line-height: 1.7;
  margin-bottom: 24px;
  text-align: left;
}
.creator-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.creator-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--sub);
  padding: 8px 0;
}
.creator-contact-item svg { color: var(--purple); flex-shrink: 0; }
.creator-contact-item a { color: var(--purple); font-weight: 600; }

.contact-form-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-wrap h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px; font-weight: 700;
  color: var(--text); margin-bottom: 6px;
}
.contact-form-wrap .sub { font-size: 15px; color: var(--sub); margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 700;
  color: var(--text); margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; color: var(--text);
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none; resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(107,53,216,0.12);
}
.form-group textarea { height: 140px; line-height: 1.6; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 16px; text-align: center; }

.form-success {
  display: none;
  text-align: center; padding: 32px;
}
.form-success .success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--green-l); margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.form-success h3 { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--sub); }

/* ─── Animations ──────────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── Logo image (XYZ part) ───────────────────────────────────────────────── */
.logo-xyz { height: 27px; margin-left: 3px; vertical-align: middle; position: relative; top: -2px; }
.logo { display: inline-flex; align-items: center; }

/* ─── Legal pages (terms / privacy) ──────────────────────────────────────── */
.legal-hero {
  padding: 72px 0 56px;
  background: linear-gradient(135deg, #f5f3f0 0%, #ede9ff 100%);
}
.legal-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 44px); font-weight: 700;
  color: var(--text); margin-bottom: 12px;
}
.legal-hero p { font-size: 16px; color: var(--sub); max-width: 560px; line-height: 1.65; }
.legal-updated {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(107,53,216,0.08); border: 1px solid rgba(107,53,216,0.15);
  border-radius: 10px; padding: 8px 14px;
  font-size: 13px; color: var(--purple); margin-top: 18px;
}

.legal-page-nav {
  display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap;
}
.legal-page-tab {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600;
  padding: 8px 16px; border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--card); color: var(--sub);
  text-decoration: none; transition: all 0.15s;
}
.legal-page-tab.active, .legal-page-tab:hover {
  border-color: var(--purple); color: var(--purple);
  background: rgba(107,53,216,0.06);
}
.legal-page-tab.active { font-weight: 700; }

.legal-main { padding: 64px 0 80px; }
.legal-grid { display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: start; }
.legal-toc {
  position: sticky; top: 80px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px;
}
.legal-toc h4 {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.8px; color: var(--muted); margin-bottom: 14px;
}
.legal-toc a {
  display: block; font-size: 13px; color: var(--sub);
  padding: 7px 0; border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.legal-toc a:last-child { border-bottom: none; }
.legal-toc a:hover { color: var(--purple); }

.legal-content article { margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.legal-content article:last-child { border-bottom: none; margin-bottom: 0; }
.legal-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--text); margin-bottom: 10px;
}
.legal-content p {
  font-size: 14px; color: var(--sub); line-height: 1.8;
}
.legal-content p + p { margin-top: 12px; }

/* ─── Help / FAQ page ─────────────────────────────────────────────────────── */
.help-hero {
  padding: 72px 0 56px;
  background: linear-gradient(135deg, #f5f3f0 0%, #e8f8f5 100%);
}
.help-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 44px); font-weight: 700;
  color: var(--text); margin-bottom: 12px;
}
.help-hero p { font-size: 16px; color: var(--sub); max-width: 520px; line-height: 1.65; }

.help-main { padding: 64px 0 80px; }
.help-contact-card {
  background: rgba(107,53,216,0.06); border: 1px solid rgba(107,53,216,0.15);
  border-radius: var(--radius-lg); padding: 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: 40px;
}
.help-contact-text h3 { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.help-contact-text p { font-size: 14px; color: var(--sub); }

.faq-section { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px 24px; margin-bottom: 14px; }
.faq-section-hdr { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.faq-section-icon { width: 30px; height: 30px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.faq-section-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--muted); }

.faq-item { border-top: 1px solid var(--border); }
.faq-item:first-of-type { border-top: none; margin-top: -4px; }
.faq-btn {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 15px 0; cursor: pointer;
  border: none; background: none; width: 100%; text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.faq-q { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.5; flex: 1; }
.faq-chevron { flex-shrink: 0; color: var(--muted); transition: transform 0.2s; font-size: 18px; line-height: 1; }
.faq-a { font-size: 14px; color: var(--sub); line-height: 1.75; padding-bottom: 16px; display: none; }
.faq-a.open { display: block; }
.faq-btn.open .faq-chevron { transform: rotate(180deg); }

@media (max-width: 900px) {
  .legal-grid { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
}

/* ─── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .phone-wrap { display: none; }
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card.wide { grid-column: span 1; }
  .privacy-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .creator-card { position: static; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .hero { padding: 56px 0 48px; }
  .download-card { padding: 40px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-links { gap: 24px; }
  .footer-inner { flex-direction: column; }
  .contact-form-wrap { padding: 24px; }
}

/* Mobile nav menu */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.4);
}
.mobile-menu.open { display: flex; align-items: flex-start; justify-content: flex-end; }
.mobile-menu-inner {
  background: var(--card);
  width: 260px; min-height: 100vh;
  padding: 24px;
  display: flex; flex-direction: column; gap: 8px;
  box-shadow: var(--shadow-xl);
}
.mobile-menu-close {
  align-self: flex-end; background: none; border: none;
  font-size: 22px; cursor: pointer; color: var(--text);
  padding: 4px; margin-bottom: 16px;
}
.mobile-menu a {
  display: block; padding: 12px 0;
  font-size: 16px; font-weight: 600; color: var(--text);
  border-bottom: 1px solid var(--border);
}
