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

:root {
  --bg: #f8f7f4;
  --bg-card: #ffffff;
  --bg-card-alt: #f1f0ee;
  --accent: #6366f1;
  --accent-hover: #4f52d0;
  --accent-dim: rgba(99, 102, 241, 0.1);
  --text: #0f0f0f;
  --text-muted: #6b6b6b;
  --text-dim: #b0b0b0;
  --border: #e8e7e4;
  --border-subtle: #f0efec;
  --radius: 10px;
  --radius-lg: 16px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Navbar ── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 247, 244, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 18px 40px;
}
.navbar-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 20px;
}
.navbar-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem; font-weight: 800;
  color: var(--text); letter-spacing: -0.03em;
  text-decoration: none;
}
.navbar-tagline { font-size: 0.8rem; color: var(--text-muted); }
.navbar-nav { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav-email { font-size: 0.8rem; color: var(--text-muted); }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 22px;
  background: var(--accent); color: #fff;
  font-weight: 600; font-size: 0.9rem;
  border: none; border-radius: var(--radius);
  cursor: pointer; text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 22px;
  background: var(--bg-card); color: var(--text);
  font-weight: 600; font-size: 0.9rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  cursor: pointer; text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.btn-secondary:hover { border-color: var(--accent); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 8px 14px;
  background: transparent; color: var(--text-muted);
  font-size: 0.82rem; border: none; cursor: pointer;
}
.btn-ghost:hover { color: var(--text); }
.nav-auth-btn { font-size: 0.82rem; }

/* ── Hero ── */
.hero {
  padding: 96px 40px 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--accent);
  background: var(--accent-dim);
  padding: 6px 14px; border-radius: 20px;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800; line-height: 1.06;
  letter-spacing: -0.03em; color: var(--text);
  margin-bottom: 20px;
}
.hero-headline em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 480px; line-height: 1.7; margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-price-callout {
  display: inline-flex; align-items: baseline; gap: 6px;
  font-size: 0.82rem; color: var(--text-muted);
}
.hero-price-callout strong {
  font-size: 1.1rem; font-weight: 700; color: var(--text);
  font-family: 'Syne', sans-serif;
}
.hero-platforms { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.hero-platform-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 500; color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 6px 12px; border-radius: 20px;
}
.platform-dot { width: 7px; height: 7px; border-radius: 50%; }
.dot-chatgpt { background: #10a37f; }
.dot-perplexity { background: #6366f1; }
.dot-ai-mode { background: #4285f4; }
.dot-gemini { background: #f59e0b; }

/* Hero — screenshot panel */
.hero-right { }
.hero-screenshot-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 0 0 1px var(--border);
  position: relative;
}
.hero-screenshot {
  width: 100%; height: auto; display: block;
  object-fit: cover;
}
.hero-screenshot-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(15,15,15,0.7));
  padding: 28px 24px 20px;
  display: flex; align-items: baseline; gap: 8px;
}
.hero-screenshot-score {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem; font-weight: 800;
  color: #fff; letter-spacing: -0.04em;
  line-height: 1;
}
.hero-screenshot-label {
  font-size: 0.82rem; color: rgba(255,255,255,0.75);
}

/* Hero — score card */
.hero-score-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 32px rgba(99,102,241,0.06);
}
.score-card-label {
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-muted);
  font-weight: 600; margin-bottom: 14px;
}
.score-big {
  font-family: 'Syne', sans-serif;
  font-size: 5rem; font-weight: 800;
  color: var(--text); line-height: 1;
  letter-spacing: -0.04em; margin-bottom: 4px;
}
.score-big span { font-size: 2rem; color: var(--text-dim); font-weight: 700; }
.score-sub { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; }
.score-bar { height: 5px; background: var(--bg-card-alt); border-radius: 3px; overflow: hidden; margin-bottom: 20px; }
.score-bar-fill { height: 100%; background: linear-gradient(90deg, var(--accent) 0%, #818cf8 100%); border-radius: 3px; }
.score-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.score-tag {
  font-size: 0.68rem; padding: 4px 10px;
  border-radius: 20px;
  background: var(--bg-card-alt);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted); font-weight: 500;
}
.score-check-btn {
  margin-top: 20px; width: 100%;
  justify-content: center;
}

/* ── How It Works ── */
.how-it-works {
  padding: 96px 40px;
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.section-header { margin-bottom: 56px; }
.section-eyebrow {
  font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--accent);
  font-weight: 700; display: block; margin-bottom: 12px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.12;
  color: var(--text);
}
.section-lede { font-size: 1rem; color: var(--text-muted); line-height: 1.7; max-width: 520px; margin-top: 12px; }
.steps-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden;
}
.step-card { padding: 40px 36px; }
.step-card:not(:last-child) { border-right: 1px solid var(--border); }
.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem; font-weight: 800;
  color: var(--accent); letter-spacing: 0.08em; margin-bottom: 20px; display: block;
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--text); margin-bottom: 10px;
  letter-spacing: -0.02em; line-height: 1.3;
}
.step-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.step-card .step-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.step-card .step-icon svg { width: 22px; height: 22px; color: var(--accent); }

/* ── Gap Section (shared) ── */
.gap-section { padding: 96px 40px; }
.gap-inner { max-width: 1100px; margin: 0 auto; }
.gap-section-header { margin-bottom: 48px; }
.gap-price-tag {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem; font-weight: 800;
  color: var(--accent); letter-spacing: -0.04em;
  line-height: 1; margin-bottom: 8px;
}
.gap-price-label { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 4px; }
.gap-price-sub { font-size: 0.88rem; color: var(--text-muted); max-width: 360px; line-height: 1.6; }

/* ── Gap 1: Pricing ── */
.pricing-comparison {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 700px;
}
.price-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 28px;
}
.price-card.highlight {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-dim);
}
.price-card-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-muted); margin-bottom: 12px;
}
.price-card.highlight .price-card-name { color: var(--accent); }
.price-card-amount {
  font-family: 'Syne', sans-serif;
  font-size: 2rem; font-weight: 800;
  color: var(--text); letter-spacing: -0.03em;
  margin-bottom: 2px;
}
.price-card.highlight .price-card-amount { color: var(--accent); }
.price-card-period { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 16px; }
.price-card-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.price-card-check {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--text-muted); margin-top: 10px;
}
.price-card-check::before { content: '✓'; color: var(--accent); font-weight: 700; }

/* ── Gap 2: Action Tasks ── */
.gap-2 .gap-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.gap-2-content { }
.gap-2-visual { }
.task-demo-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.task-demo-header { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.task-priority {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 4px 10px;
  border-radius: 20px; background: var(--accent-dim); color: var(--accent);
}
.task-label { font-size: 0.78rem; color: var(--text-muted); }
.task-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--text); margin-bottom: 10px; line-height: 1.35;
  letter-spacing: -0.01em;
}
.task-desc { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }
.task-actions { display: flex; gap: 8px; }
.task-action-btn {
  padding: 7px 14px; border-radius: var(--radius);
  font-size: 0.8rem; font-weight: 600; cursor: pointer; border: none;
  transition: all 0.15s;
}
.task-action-primary { background: var(--accent); color: #fff; }
.task-action-primary:hover { background: var(--accent-hover); }
.task-action-secondary { background: var(--bg-card-alt); color: var(--text-muted); }
.task-action-secondary:hover { color: var(--text); }
.task-platforms { display: flex; gap: 6px; margin-top: 14px; }
.task-platform {
  font-size: 0.68rem; padding: 4px 8px;
  background: var(--bg-card-alt); border: 1px solid var(--border-subtle);
  border-radius: 6px; color: var(--text-muted);
}

/* ── Gap 3: Share Card ── */
.gap-3 { background: var(--bg-card); border-top: 1px solid var(--border-subtle); }
.gap-3 .gap-inner { display: grid; grid-template-columns: 1fr 480px; gap: 80px; align-items: center; }
.share-card-visual {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: #fff;
  position: relative; overflow: hidden;
  min-height: 280px; display: flex; flex-direction: column; justify-content: flex-end;
}
.share-card-visual::before {
  content: ''; position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 65%);
}
.share-card-visual::after {
  content: ''; position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(99,102,241,0.3) 0%, transparent 65%);
}
.share-card-eyebrow {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.share-card-score {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem; font-weight: 800;
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 6px;
}
.share-card-label {
  font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 24px;
}
.share-card-brand {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.9);
  margin-bottom: 4px;
}
.share-card-week {
  font-size: 0.72rem; color: rgba(255,255,255,0.4);
}
.share-card-platforms {
  position: absolute; top: 28px; right: 28px;
  display: flex; gap: 6px;
}
.share-card-platform-tag {
  font-size: 0.62rem; padding: 3px 8px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

/* ── Social Proof ── */
.social-proof { padding: 80px 40px; }
.proof-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.proof-inner .section-eyebrow { margin-bottom: 12px; }
.proof-inner .section-title { margin-bottom: 0; }
.proof-quote {
  font-size: 1rem; color: var(--text-muted); line-height: 1.7;
  max-width: 560px; margin: 16px auto 0;
}

/* ── Pricing Section ── */
.pricing-section { padding: 96px 40px; background: var(--bg-card); border-top: 1px solid var(--border-subtle); }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 760px; margin: 0 auto;
}
.pricing-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 32px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-dim);
}
.pricing-card.featured::before {
  content: 'Most popular';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-size: 0.72rem; font-weight: 700;
  background: var(--accent); color: #fff;
  padding: 4px 14px; border-radius: 20px;
  white-space: nowrap; letter-spacing: 0.04em;
}
.pricing-tier {
  font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-muted);
  font-weight: 700; margin-bottom: 14px;
}
.pricing-card.featured .pricing-tier { color: var(--accent); }
.pricing-amount {
  font-family: 'Syne', sans-serif;
  font-size: 3rem; font-weight: 800;
  color: var(--text); letter-spacing: -0.04em;
  line-height: 1; margin-bottom: 2px;
}
.pricing-card.featured .pricing-amount { color: var(--accent); }
.pricing-per { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 20px; }
.pricing-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 24px; }
.pricing-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.875rem; color: var(--text-muted);
}
.pricing-features li::before {
  content: '✓'; color: var(--accent); font-weight: 700;
  font-size: 0.8rem; margin-top: 1px; flex-shrink: 0;
}
.pricing-cta { width: 100%; justify-content: center; }

/* ── Modal ── */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%; max-width: 460px;
  position: relative;
}
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.modal-title { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.modal-close { background: none; border: none; color: var(--text-muted); font-size: 1.4rem; cursor: pointer; padding: 0; line-height: 1; }
.modal-close:hover { color: var(--text); }

/* Forms */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 6px; font-weight: 500; }
.form-input {
  width: 100%; padding: 11px 14px;
  background: var(--bg); color: var(--text);
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 0.9rem; font-family: inherit;
  box-sizing: border-box; transition: border-color 0.15s;
}
.form-input:focus { outline: none; border-color: var(--accent); }
.form-error {
  background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2);
  color: #dc2626; padding: 10px 14px; border-radius: var(--radius);
  font-size: 0.82rem; margin-bottom: 14px;
}
.btn-full { width: 100%; justify-content: center; }
.login-sub { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.65; }
.login-success { text-align: center; padding: 16px 0; }
.login-success-icon { font-size: 2rem; margin-bottom: 10px; }
.login-success p { font-size: 0.875rem; color: var(--text); }
.login-success-text { color: var(--text-muted); font-size: 0.875rem; margin-top: 6px; }
.magic-sent-note { font-size: 0.78rem; color: var(--text-dim); margin-top: 10px; line-height: 1.55; }

/* ── Footer ── */
.site-footer { padding: 56px 40px; border-top: 1px solid var(--border-subtle); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-left { }
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem; font-weight: 800;
  color: var(--text); letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.footer-tagline { font-size: 0.82rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 20px; }
.footer-link { font-size: 0.82rem; color: var(--text-muted); text-decoration: none; }
.footer-link:hover { color: var(--text); }
.footer-copy { font-size: 0.72rem; color: var(--text-dim); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card:not(:last-child) { border-right: none; border-bottom: 1px solid var(--border); }
  .gap-2 .gap-inner,
  .gap-3 .gap-inner { grid-template-columns: 1fr; gap: 40px; }
  .gap-3 .gap-inner { direction: rtl; }
  .gap-3 .gap-inner > * { direction: ltr; }
  .pricing-comparison { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .navbar { padding: 14px 20px; }
  .navbar-tagline { display: none; }
  .hero { padding: 60px 20px 48px; }
  .hero-headline { font-size: 2rem; }
  .how-it-works { padding: 64px 20px; }
  .gap-section { padding: 64px 20px; }
  .social-proof { padding: 64px 20px; }
  .pricing-section { padding: 64px 20px; }
  .site-footer { padding: 36px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 14px; }
}