/* ═══════════════════════════════════════════════════════════
   DRAFT ALERT — Landing Page Styles
   Aesthetic: Editorial luxury meets developer-tool precision
   ═══════════════════════════════════════════════════════════ */

/* ─── Custom Properties ─────────────────────────────────── */
:root {
  --purple: #6c5ce7;
  --purple-light: #a29bfe;
  --purple-dark: #5a4bd1;
  --purple-glow: rgba(108, 92, 231, 0.15);
  --purple-glow-strong: rgba(108, 92, 231, 0.3);
  --coral: #ff6b6b;
  --mint: #00b894;
  --amber: #fdcb6e;

  --bg: #0a0a0f;
  --bg-card: #121218;
  --bg-card-hover: #18181f;
  --bg-elevated: #1a1a22;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);

  --text: #e8e6f0;
  --text-dim: #8a889a;
  --text-muted: #5a586a;

  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --max-width: 1200px;
  --section-pad: clamp(80px, 12vw, 160px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

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

/* ─── Reveal Animations ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  background: var(--purple);
  color: #fff;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  letter-spacing: -0.01em;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(108, 92, 231, 0.35);
}

.btn:hover::after { opacity: 1; }

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: 12px;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 14px;
  border-radius: 8px;
}

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

.btn-ghost:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.2);
  box-shadow: none;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-hover);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--purple);
  color: var(--purple-light);
  background: var(--purple-glow);
  box-shadow: none;
}

/* ─── Navigation ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 4vw, 48px);
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}

.nav.scrolled {
  padding: 12px clamp(20px, 4vw, 48px);
  background: rgba(10, 10, 15, 0.92);
}

.nav.nav-hidden {
  transform: translateY(-100%);
  pointer-events: none;
}

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

.nav-icon {
  width: 28px;
  height: 28px;
  color: var(--purple);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color 0.2s;
  letter-spacing: -0.01em;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-alt-link {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-alt-link:hover { color: var(--purple-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s var(--ease);
  border-radius: 1px;
}

.nav-toggle.active span:first-child {
  transform: rotate(45deg) translate(3px, 3px);
}

.nav-toggle.active span:last-child {
  transform: rotate(-45deg) translate(3px, -3px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(10, 10, 15, 0.97);
  backdrop-filter: blur(20px);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.4s var(--ease);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  font-size: 16px;
  padding: 8px 0;
  color: var(--text-dim);
}

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 140px clamp(20px, 4vw, 48px) var(--section-pad);
  min-height: 90vh;
}

.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--purple-light);
}

.hero-sub {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 36px;
}

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

.hero-proof {
  display: flex;
  align-items: center;
  gap: 20px;
}

.proof-item {
  display: flex;
  flex-direction: column;
}

.proof-item strong {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
}

.proof-item span {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.proof-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ─── Gmail Mockup ──────────────────────────────────────── */
.hero-visual {
  position: relative;
}

.mockup {
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: #1a1a22;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 20px 60px rgba(0,0,0,0.5),
    0 0 120px var(--purple-glow);
  position: relative;
  z-index: 2;
}

.mockup-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, var(--purple-glow-strong) 0%, transparent 70%);
  z-index: 1;
  filter: blur(60px);
  pointer-events: none;
}

.mockup-chrome {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 16px;
  background: #141419;
  border-bottom: 1px solid var(--border);
}

.chrome-dots {
  display: flex;
  gap: 6px;
}

.chrome-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2a2a35;
}

.chrome-dots span:first-child { background: #ff5f57; }
.chrome-dots span:nth-child(2) { background: #ffbd2e; }
.chrome-dots span:last-child { background: #28ca41; }

.chrome-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-dim);
  background: var(--bg-card);
  padding: 5px 14px;
  border-radius: 6px 6px 0 0;
}

.mockup-body {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 320px;
}

.mockup-sidebar {
  border-right: 1px solid var(--border);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg-card);
}

.sidebar-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 4px;
  margin-bottom: 4px;
}

.sidebar-title {
  font-family: var(--font-display);
  font-size: 15px;
  color: #fff;
}

.sidebar-subtitle {
  font-size: 11px;
  color: var(--purple-light);
}

.sidebar-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(108, 92, 231, 0.1);
  border: 1px solid rgba(108, 92, 231, 0.2);
  border-radius: 8px;
  padding: 8px 10px;
}

.alert-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.alert-text {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
}

.alert-meta {
  font-size: 10px;
  color: var(--text-muted);
}

.sidebar-draft {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.25s var(--ease);
}

.sidebar-draft:hover {
  background: rgba(255,255,255,0.03);
}

.draft-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  margin-top: 6px;
  flex-shrink: 0;
}

.draft-urgent .draft-indicator {
  background: var(--coral);
  box-shadow: 0 0 8px rgba(255, 107, 107, 0.5);
}

.draft-content { flex: 1; min-width: 0; }

.draft-subject {
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.draft-age {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
}

.draft-snooze {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(108, 92, 231, 0.15);
  color: var(--purple-light);
  font-weight: 500;
  flex-shrink: 0;
  margin-top: 2px;
}

.sidebar-footer {
  margin-top: auto;
  display: flex;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.sidebar-btn {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  color: var(--text-dim);
  flex: 1;
  text-align: center;
}

.mockup-inbox {
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

.inbox-row {
  display: grid;
  grid-template-columns: 24px 120px 1fr 60px;
  gap: 12px;
  align-items: center;
  padding: 10px 16px;
  font-size: 12px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.inbox-unread { color: var(--text); font-weight: 500; }

.inbox-check {
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--border-hover);
  border-radius: 3px;
}

.inbox-sender {
  font-weight: 500;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.inbox-unread .inbox-sender { color: #fff; }

.inbox-preview {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.inbox-time {
  text-align: right;
  font-size: 11px;
}

/* ─── Social Proof Bar ──────────────────────────────────── */
.proof-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  overflow: hidden;
}

.proof-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 24px;
}

.proof-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  white-space: nowrap;
  font-weight: 500;
}

.proof-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.proof-tags span {
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-dim);
  white-space: nowrap;
  transition: all 0.3s;
}

.proof-tags span:hover {
  border-color: var(--purple);
  color: var(--purple-light);
  background: var(--purple-glow);
}

/* ─── Problem ───────────────────────────────────────────── */
.problem {
  padding: var(--section-pad) clamp(20px, 4vw, 48px);
}

.problem-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple-light);
  margin-bottom: 16px;
  font-weight: 500;
}

.problem-stat {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.stat-number {
  color: var(--coral);
  font-weight: 400;
}

.problem-body {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--text-dim);
  line-height: 1.7;
}

/* ─── Features ──────────────────────────────────────────── */
.features {
  padding: var(--section-pad) clamp(20px, 4vw, 48px);
  max-width: var(--max-width);
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.03em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.feature-card {
  padding: clamp(28px, 3vw, 40px);
  background: var(--bg-card);
  transition: background 0.3s var(--ease);
}

.feature-card:hover {
  background: var(--bg-card-hover);
}

.feature-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--purple-light);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #fff;
  letter-spacing: -0.01em;
}

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

/* ─── How It Works ──────────────────────────────────────── */
.how {
  padding: var(--section-pad) clamp(20px, 4vw, 48px);
  max-width: 780px;
  margin: 0 auto;
}

.how-header {
  text-align: center;
  margin-bottom: 64px;
}

.steps {
  position: relative;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
}

.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--purple);
  line-height: 1;
  opacity: 0.6;
  padding-top: 4px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step-content p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.65;
}

.step-connector {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  margin: 12px 0 12px 38px;
  opacity: 0.3;
}

/* ─── Digest Email Showcase ─────────────────────────────── */
.showcase {
  padding: var(--section-pad) clamp(20px, 4vw, 48px);
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.showcase-desc {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.65;
  margin: 16px 0 24px;
}

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

.showcase-list li {
  font-size: 14px;
  color: var(--text-dim);
  padding-left: 20px;
  position: relative;
}

.showcase-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  opacity: 0.6;
}

.email-mockup {
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.email-header-bar {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.email-from {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.email-subject-line {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.email-body {
  padding: 0;
}

.email-banner {
  background: var(--purple);
  padding: 20px 20px;
  text-align: center;
}

.email-banner-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: #fff;
}

.email-banner-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
}

.email-draft-card {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}

.email-draft-subject {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.email-draft-meta {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.email-draft-actions {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.email-btn {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
}

.email-btn.snz {
  background: rgba(255,255,255,0.06);
  color: var(--text-dim);
}

.email-btn.dis {
  color: var(--coral);
  border: 1px solid rgba(255, 107, 107, 0.3);
  background: none;
}

.email-footer-text {
  padding: 14px 20px;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}

/* ─── Privacy ───────────────────────────────────────────── */
.privacy-section {
  padding: var(--section-pad) clamp(20px, 4vw, 48px);
}

.privacy-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.privacy-inner .section-title {
  margin-bottom: 48px;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.privacy-item {
  padding: clamp(24px, 2.5vw, 36px);
  background: var(--bg-card);
  text-align: left;
}

.privacy-icon {
  width: 28px;
  height: 28px;
  color: var(--mint);
  margin-bottom: 16px;
}

.privacy-icon svg {
  width: 100%;
  height: 100%;
}

.privacy-item h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
}

.privacy-item p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ─── Pricing ───────────────────────────────────────────── */
.pricing {
  padding: var(--section-pad) clamp(20px, 4vw, 48px);
  max-width: var(--max-width);
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-toggle {
  display: inline-flex;
  margin-top: 24px;
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-card);
}

.toggle-btn {
  padding: 10px 24px;
  font-size: 14px;
  color: var(--text-dim);
  transition: all 0.3s;
  position: relative;
}

.toggle-btn.active {
  background: var(--purple);
  color: #fff;
}

.save-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--mint);
  margin-left: 4px;
}

.toggle-btn.active .save-badge { color: var(--amber); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.price-card {
  padding: clamp(28px, 3vw, 40px);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card-featured {
  background: var(--bg-elevated);
}

.price-card-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
}

.price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--purple);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.price-tier {
  font-family: var(--font-display);
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
}

.price-amount {
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 2px;
  transition: transform 0.15s var(--ease), opacity 0.15s ease;
}

.price-currency {
  font-size: 22px;
  color: var(--text-dim);
  font-weight: 300;
}

.price-value {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-custom {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
}

.price-period {
  font-size: 14px;
  color: var(--text-muted);
  margin-left: 4px;
}

.price-desc {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 24px;
  line-height: 1.5;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}

.price-features li {
  font-size: 13px;
  color: var(--text-dim);
  padding-left: 18px;
  position: relative;
}

.price-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 600;
  font-size: 12px;
}

.price-card .btn,
.price-card .btn-outline {
  width: 100%;
  text-align: center;
}

/* ─── FAQ ───────────────────────────────────────────────── */
.faq {
  padding: var(--section-pad) clamp(20px, 4vw, 48px);
  max-width: 780px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item {
  background: var(--bg-card);
  transition: background 0.3s;
}

.faq-item:hover {
  background: var(--bg-card-hover);
}

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

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--purple-light);
}

.faq-item p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
  transition: max-height 0.3s var(--ease), opacity 0.25s ease;
  overflow: hidden;
}

/* ─── Final CTA ─────────────────────────────────────────── */
.final-cta {
  padding: var(--section-pad) clamp(20px, 4vw, 48px);
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(48px, 6vw, 80px) clamp(24px, 4vw, 48px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, var(--purple-glow) 0%, transparent 50%);
  pointer-events: none;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  position: relative;
}

.cta-inner p {
  font-size: 16px;
  color: var(--text-dim);
  margin-bottom: 32px;
  position: relative;
}

.cta-inner .btn {
  position: relative;
}

.cta-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
  position: relative;
}

/* ─── Footer ────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px clamp(20px, 4vw, 48px);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text-dim);
}

.footer-icon {
  width: 24px;
  height: 24px;
  color: var(--purple);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
    min-height: auto;
  }

  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-proof { justify-content: center; }

  .mockup-inbox { display: none; }
  .mockup-body { grid-template-columns: 1fr; }
  .mockup-sidebar { max-width: 360px; margin: 0 auto; }
  .mockup { max-width: 420px; margin: 0 auto; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .privacy-grid { grid-template-columns: repeat(2, 1fr); }

  .showcase {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .showcase-visual { max-width: 480px; margin: 0 auto; }
  .showcase-list { align-items: center; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }

  .feature-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .privacy-grid { grid-template-columns: 1fr; }

  .proof-bar-inner { flex-direction: column; gap: 12px; }
  .proof-tags { justify-content: center; }

  .step { grid-template-columns: 60px 1fr; gap: 16px; }
  .step-connector { margin-left: 28px; }
}

@media (max-width: 480px) {
  .hero-proof { flex-direction: column; gap: 12px; }
  .proof-divider { width: 40px; height: 1px; }
}
