/* ============================================================
   Pomodeep Landing Page — Shared Stylesheet
   ============================================================ */

/* --- Variables (dark — matches dashboardDarkTheme) --- */
:root {
  --accent:        #60a5fa;
  --accent-dim:    rgba(96, 165, 250, 0.14);
  --accent-glow:   rgba(96, 165, 250, 0.28);
  --bg:            #0f172a;
  --bg-card:       #1e293b;
  --bg-card2:      #334155;
  --text:          #f1f5f9;
  --text-secondary:#94a3b8;
  --border:        #334155;
  --border-card:   rgba(255,255,255,0.05);
  --radius:        18px;
  --radius-sm:     11px;
  --shadow:        0 8px 32px rgba(0,0,0,0.4);
  --max-w:         1160px;
  --font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
}

/* --- Light theme overrides (matches dashboardLightTheme) --- */
[data-theme="light"] {
  --accent:        #3b82f6;
  --accent-dim:    rgba(59, 130, 246, 0.12);
  --accent-glow:   rgba(59, 130, 246, 0.24);
  --bg:            #f8fafc;
  --bg-card:       #ffffff;
  --bg-card2:      #e2e8f0;
  --text:          #1e293b;
  --text-secondary:#64748b;
  --border:        #e2e8f0;
  --border-card:   rgba(0,0,0,0.06);
  --shadow:        0 8px 32px rgba(0,0,0,0.08);
}
[data-theme="light"] .nav {
  background: rgba(248,250,252,0.85);
  border-bottom-color: #e2e8f0;
}
[data-theme="light"] .nav-links.open {
  background: rgba(248,250,252,0.97);
}
[data-theme="light"] .hero::before {
  background:
    radial-gradient(ellipse 700px 500px at 70% 50%, rgba(59,130,246,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at 15% 60%, rgba(96,165,250,0.05) 0%, transparent 70%);
}
[data-theme="light"] .mockup-glow {
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
}
[data-theme="light"] .btn-store-apple {
  background: #1a1a2e;
  color: #fff;
}
[data-theme="light"] .features {
  background: #e8e8ef;
  border-color: rgba(0,0,0,0.08);
}
[data-theme="light"] .btn-theme { border-color: rgba(0,0,0,0.12); }
[data-theme="light"] .btn-theme:hover { border-color: rgba(0,0,0,0.25); }
[data-theme="light"] .phone {
  background: #f8fafc;
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 0 0 6px rgba(0,0,0,0.02), 0 32px 80px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.9);
}
[data-theme="light"] .phone-task { background: rgba(0,0,0,0.05); }
[data-theme="light"] .timer-track { stroke: rgba(0,0,0,0.1); }

/* --- Theme toggle button --- */
.btn-theme {
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border);
  border-radius: 9px;
  cursor: pointer;
  color: var(--text-secondary);
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.btn-theme:hover { color: var(--text); border-color: rgba(255,255,255,0.25); }
.icon-sun  { display: none; }
.icon-moon { display: block; }
[data-theme="light"] .icon-sun  { display: block; }
[data-theme="light"] .icon-moon { display: none; }

/* --- Theme transition --- */
body, .nav, .benefit-card, .pricing-card, .feature-item,
.cta-section, .footer, .phone-task, .phone-streak, .phone { transition: background-color 0.25s ease, color 0.2s ease, border-color 0.2s ease; }

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* --- Announcement bar (pre-launch notice) --- */
.announcement-bar {
  background: var(--text);
  color: var(--bg);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
}
.announcement-bar a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --- Utility --- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 5px 12px;
  border-radius: 40px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11,12,17,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.3px;
}
.nav-logo span { color: var(--accent); }
.logo-icon { width: 22px; height: 22px; border-radius: 6px; display: block; }
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-lang {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 5px 11px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.2s;
}
.btn-lang:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }
.btn-nav-cta {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  padding: 8px 18px;
  border-radius: 10px;
  transition: opacity 0.2s;
}
.btn-nav-cta:hover { opacity: 0.88; }
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text);
}
.nav-mobile-toggle svg { display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  padding: 80px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 70% 50%, rgba(96,165,250,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at 15% 60%, rgba(59,130,246,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(74,222,128,0.6);
}
.hero h1 {
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-stores {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.18s, box-shadow 0.18s;
}
.btn-store:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.btn-store-apple {
  background: #fff;
  color: #000;
}
.btn-store-google {
  background: var(--bg-card2);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-store svg { flex-shrink: 0; }
.btn-store-text { display: flex; flex-direction: column; }
.btn-store-text small { font-size: 10px; font-weight: 500; opacity: 0.7; line-height: 1; }
.btn-store-text strong { font-size: 14px; line-height: 1.4; }
.hero-trial {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-trial::before {
  content: '⭐';
}

/* ============================================================
   CLOSED BETA
   ============================================================ */
.beta { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.beta-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.beta-card .section-sub { margin: 0 auto 32px; }
.beta-form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.beta-input,
.beta-select {
  font-family: var(--font);
  font-size: 14px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
}
.beta-input { flex: 1 1 220px; }
.beta-select { flex: 0 0 auto; cursor: pointer; }
.beta-input:focus,
.beta-select:focus {
  outline: none;
  border-color: var(--accent);
}
.beta-submit {
  flex: 0 0 auto;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.beta-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.cf-turnstile {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
.beta-form-message {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  min-height: 18px;
}
.beta-form-message.success { color: #4ade80; }
.beta-form-message.error { color: #f87171; }

/* ============================================================
   PHONE MOCKUP
   ============================================================ */
.mockup-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mockup-glow {
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(96,165,250,0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}
.phone {
  position: relative;
  z-index: 1;
  width: 260px;
  background: #0f172a;
  border-radius: 44px;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 0 6px rgba(255,255,255,0.03),
    0 32px 80px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.08);
  overflow: hidden;
  padding: 16px 16px 24px;
}
.phone-island {
  width: 88px; height: 28px;
  background: #020617;
  border-radius: 20px;
  margin: 0 auto 16px;
}
.phone-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 0 4px;
}
.phone-greeting {
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
}
.phone-timer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  gap: 8px;
}
.timer-ring {
  position: relative;
  width: 120px; height: 120px;
}
.timer-ring svg {
  width: 120px; height: 120px;
  transform: rotate(-90deg);
}
.timer-track {
  fill: none;
  stroke: rgba(255,255,255,0.06);
  stroke-width: 8;
}
.timer-progress {
  fill: none;
  stroke: var(--accent);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 339.3;
  stroke-dashoffset: 122;
  filter: drop-shadow(0 0 6px rgba(96,165,250,0.7));
}
.timer-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.timer-time {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}
.timer-emoji { font-size: 14px; margin-top: 2px; }
.cycle-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
}
.cycle-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.cycle-dot.done, .cycle-dot.active { background: var(--accent); }
.cycle-dot.active { box-shadow: 0 0 6px var(--accent-glow); }
[data-theme="light"] .cycle-dot { background: rgba(0,0,0,0.12); }
.phone-timer-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
}
.phone-stats {
  display: flex;
  justify-content: space-around;
  text-align: center;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 10px 4px;
  margin-bottom: 16px;
}
[data-theme="light"] .phone-stats { background: rgba(0,0,0,0.05); }
.phone-stat { display: flex; flex-direction: column; gap: 2px; }
.phone-stat-num { font-size: 13px; font-weight: 800; color: var(--text); }
.phone-stat-label { font-size: 9px; color: var(--text-secondary); font-weight: 600; }
.phone-tasks {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.phone-task {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 10px;
  color: var(--text);
  font-weight: 500;
}
.phone-task.done {
  opacity: 0.5;
  text-decoration: line-through;
}
.phone-task-icon { font-size: 12px; flex-shrink: 0; }
.phone-streak {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(232,93,64,0.1);
  border-radius: 8px;
  padding: 8px;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
}

/* ============================================================
   BENEFITS (3 cartes)
   ============================================================ */
.benefits { background: var(--bg); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s, border-color 0.2s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,93,64,0.25);
}
.benefit-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.benefit-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.benefit-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-item {
  background: var(--bg-card);
  padding: 28px 24px;
  transition: background 0.2s;
}
.feature-item:hover { background: var(--bg-card2); }
.feature-emoji { font-size: 26px; margin-bottom: 12px; }
.feature-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.badge-premium {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 2px 7px;
  border-radius: 20px;
}
.feature-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--bg); }
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 32px 0;
}
.toggle-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s;
}
.toggle-label.active { color: var(--text); }
.toggle-switch {
  width: 48px; height: 26px;
  background: var(--accent);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
  outline: none;
}
.toggle-switch::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  top: 3px; left: 3px;
  transition: transform 0.2s;
}
.toggle-switch.monthly::after { transform: translateX(0); }
.toggle-switch.annual::after { transform: translateX(22px); }
.toggle-save {
  font-size: 11px;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74,222,128,0.1);
  padding: 2px 8px;
  border-radius: 20px;
}
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.2s;
}
.pricing-card:hover { transform: translateY(-3px); }
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 16px 48px rgba(96,165,250,0.18);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-plan {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 6px;
}
.price-amount {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--text);
}
.price-currency { font-size: 22px; font-weight: 700; margin-bottom: 8px; color: var(--text-secondary); }
.price-period { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; }
.price-annual-note {
  font-size: 12px;
  color: #4ade80;
  font-weight: 600;
  margin-bottom: 20px;
  min-height: 18px;
}
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pricing-features li {
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
}
.pricing-features li .check { color: #4ade80; flex-shrink: 0; }
.pricing-features li .cross { color: rgba(255,255,255,0.2); flex-shrink: 0; }
.pricing-features li.active { color: var(--text); }
.btn-pricing {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s;
}
.btn-pricing-secondary {
  background: var(--bg-card2);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-pricing-secondary:hover { border-color: rgba(255,255,255,0.2); }
.btn-pricing-primary {
  background: var(--accent);
  color: #fff;
}
.btn-pricing-primary:hover { opacity: 0.88; }
.pricing-trial {
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 28px;
}

/* ============================================================
   DOWNLOAD CTA
   ============================================================ */
.cta-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 96px 24px;
}
.cta-section h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.cta-section h2 em {
  font-style: normal;
  color: var(--accent);
}
.cta-section p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 36px;
}
.cta-stores {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 64px 24px 32px; border-top: 1px solid var(--border); }
.footer-inner { width: 100%; max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.footer-logo { font-size: 17px; font-weight: 800; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.footer-logo span { color: var(--accent); }
.footer-brand p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; max-width: 260px; }
.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.footer-social a:hover { color: var(--text); border-color: var(--accent); }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--text-secondary); }

/* ============================================================
   PERSONAS — Pour qui
   ============================================================ */
.personas { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.personas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.persona-card {
  background: var(--bg);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s, border-color 0.2s;
}
.persona-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.persona-emoji { font-size: 38px; margin-bottom: 16px; line-height: 1; }
.persona-title { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.persona-subtitle { font-size: 13px; color: var(--text-secondary); margin-bottom: 20px; font-weight: 500; }
.persona-quote {
  font-size: 14px;
  color: var(--text-secondary);
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 14px;
  margin-bottom: 18px;
  line-height: 1.65;
}
.persona-solution {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.persona-solution strong { color: var(--text); font-weight: 600; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg); }
.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(96,165,250,0.25); }
[data-theme="light"] .faq-item:hover { border-color: rgba(59,130,246,0.25); }
.faq-item summary {
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 1px solid var(--border-card);
  padding-top: 14px;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .hero-sub { margin: 0 auto 36px; }
  .hero-stores { justify-content: center; }
  .hero-trial { justify-content: center; }
  .mockup-wrap { order: -1; }
  .benefits-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .personas-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 420px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 16px;
    background: rgba(11,12,17,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open a { padding: 12px 0; width: 100%; }
  .nav-mobile-toggle { display: block; }
  .btn-nav-cta { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .phone { width: 230px; }
  .footer-top { grid-template-columns: 1fr; }
  .beta-form-row { flex-direction: column; }
  .beta-input, .beta-select, .beta-submit { width: 100%; }
}
@media (max-width: 400px) {
  .btn-store { width: 100%; justify-content: center; }
  .hero-stores { flex-direction: column; align-items: center; }
  .cta-stores { flex-direction: column; align-items: center; }
}

/* ============================================================
   LEGAL PAGES (privacy / support)
   ============================================================ */
.legal-content { max-width: 720px; margin: 0 auto; }
.legal-content > .section-sub { margin-bottom: 48px; max-width: none; }
.legal-content h2 { font-size: 22px; font-weight: 800; margin: 40px 0 12px; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { margin-bottom: 16px; color: var(--text-secondary); }
.legal-content ul { margin: 0 0 16px 20px; color: var(--text-secondary); display: flex; flex-direction: column; gap: 8px; }
.legal-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
