/* ─────────────────────────────────────────────────────────────────────────────
   TraderBuddy — Dark Finance Theme
   Linear/Vercel-inspired aesthetic
   ───────────────────────────────────────────────────────────────────────────── */

:root {
  --bg: #0a0a0b;
  --bg-card: #111113;
  --bg-card-hover: #18181c;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --text: #f0f0f2;
  --text-muted: #888899;
  --text-dim: #555566;
  --accent: #22d3ee;        /* cyan */
  --accent-2: #7c3aed;      /* purple */
  --accent-glow: rgba(34, 211, 238, 0.15);
  --green: #10b981;
  --green-dim: rgba(16, 185, 129, 0.15);
  --red: #ef4444;
  --yellow: #f59e0b;
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
  --shadow: 0 1px 3px rgba(0,0,0,0.5), 0 4px 16px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.6), 0 2px 8px rgba(0,0,0,0.4);
}

/* ─── 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;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { cursor: pointer; font-family: inherit; }
input { font-family: inherit; }

/* ─── Background Gradient ───────────────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(34, 211, 238, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(124, 58, 237, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ─── Nav ────────────────────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 60px;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.nav-logo .logo-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ─── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #000;
}
.btn-primary:hover {
  background: #06b6d4;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(34, 211, 238, 0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: var(--bg-card-hover);
  color: var(--text);
  border-color: var(--border-hover);
}
.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: var(--radius);
}
.btn-xl {
  padding: 16px 36px;
  font-size: 17px;
  border-radius: var(--radius);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hover);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.25);
}
.btn-purple {
  background: var(--accent-2);
  color: white;
}
.btn-purple:hover {
  background: #6d28d9;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
}

/* ─── Badge ──────────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.3px;
}
.badge .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ─── Section Wrapper ────────────────────────────────────────────────────────── */
.section {
  position: relative;
  z-index: 1;
  padding: 96px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.section-sm { padding: 64px 24px; }
.section-center { text-align: center; }
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, #818cf8 60%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Hero ───────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 900px;
  margin: 0 auto;
}
.hero-eyebrow {
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1.0;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(17px, 2.5vw, 21px);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-meta {
  font-size: 13px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-meta span { display: flex; align-items: center; gap: 5px; }
.hero-meta .check { color: var(--green); }

/* ─── Waitlist Count Banner ──────────────────────────────────────────────────── */
.waitlist-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.waitlist-banner strong { color: var(--text); }
.waitlist-banner .avatars {
  display: flex;
  margin-right: 4px;
}
.waitlist-banner .avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.waitlist-banner .avatar:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, #06b6d4, #7c3aed); }
.av2 { background: linear-gradient(135deg, #10b981, #06b6d4); }
.av3 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.av4 { background: linear-gradient(135deg, #8b5cf6, #ec4899); }

/* ─── Platform Logos ─────────────────────────────────────────────────────────── */
.platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}
.platforms-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.platform-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s;
}
.platform-pill:hover {
  border-color: var(--border-hover);
  color: var(--text);
  background: var(--bg-card-hover);
}
.platform-icon { font-size: 16px; }

/* ─── Problem Section ────────────────────────────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.2s;
}
.problem-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}
.problem-icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.problem-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.problem-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Features Section ───────────────────────────────────────────────────────── */
.features-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 64px;
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.2s;
  cursor: default;
}
.feature-item:hover {
  border-color: rgba(34, 211, 238, 0.3);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}
.feature-item.active {
  border-color: rgba(34, 211, 238, 0.4);
  background: rgba(34, 211, 238, 0.05);
}
.feature-icon-wrap {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--accent-glow);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.feature-text h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.feature-text p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.features-visual {
  position: relative;
}
.dashboard-mock {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.dash-header {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dash-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dash-dot.red { background: #ef4444; }
.dash-dot.yellow { background: #f59e0b; }
.dash-dot.green { background: #10b981; }
.dash-title {
  font-size: 12px;
  color: var(--text-dim);
  margin-left: 8px;
}
.dash-body { padding: 20px; }
.dash-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.dash-stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
}
.dash-stat-label {
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.dash-stat-value {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -1px;
}
.dash-stat-value.green { color: var(--green); }
.dash-stat-value.cyan { color: var(--accent); }
.dash-stat-change {
  font-size: 11px;
  color: var(--green);
  margin-top: 2px;
}
.dash-chart {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 12px;
}
.dash-chart-label {
  font-size: 11px;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
}
.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(34,211,238,0.3) 100%);
  border-radius: 3px 3px 0 0;
  transition: all 0.3s;
}
.dash-platforms {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.dash-platform-tag {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid;
}
.tag-x { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15); color: #fff; }
.tag-yt { background: rgba(255,0,0,0.1); border-color: rgba(255,0,0,0.3); color: #ff4444; }
.tag-tt { background: rgba(0,242,234,0.1); border-color: rgba(0,242,234,0.3); color: #00f2ea; }
.tag-ss { background: rgba(255,110,52,0.1); border-color: rgba(255,110,52,0.3); color: #ff6e34; }

/* ─── Comparison Table ───────────────────────────────────────────────────────── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 48px;
}
.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.comparison-table th {
  background: var(--bg-card);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}
.comparison-table th.highlight { color: var(--accent); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--bg-card-hover); }
.comparison-table td:first-child { color: var(--text-muted); }
.comparison-table td.highlight {
  color: var(--accent);
  font-weight: 700;
}
.check-yes { color: var(--green); font-size: 16px; }
.check-no { color: var(--text-dim); font-size: 16px; }

/* ─── Pricing ────────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 720px;
  margin: 48px auto 0;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: all 0.2s;
}
.pricing-card:hover {
  border-color: var(--border-hover);
}
.pricing-card.featured {
  border-color: rgba(34, 211, 238, 0.4);
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.05) 0%, var(--bg-card) 100%);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.1), var(--shadow-lg);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  border-radius: 100px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.pricing-plan {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 8px;
}
.price-amount {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1;
}
.price-period {
  font-size: 15px;
  color: var(--text-muted);
  padding-bottom: 6px;
}
.price-savings {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 24px;
}
.pricing-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.pricing-features li .pf-check {
  color: var(--green);
  font-size: 14px;
  margin-top: 1px;
  flex-shrink: 0;
}
.pricing-card .btn { width: 100%; }
.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 24px;
}

/* ─── Testimonials ───────────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.2s;
}
.testimonial-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}
.testimonial-stars {
  color: var(--yellow);
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.ta1 { background: linear-gradient(135deg, #06b6d4, #7c3aed); }
.ta2 { background: linear-gradient(135deg, #10b981, #3b82f6); }
.ta3 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.testimonial-author-info { font-size: 13px; }
.testimonial-name { font-weight: 700; margin-bottom: 2px; }
.testimonial-handle { color: var(--text-dim); }

/* ─── Waitlist / CTA Form ────────────────────────────────────────────────────── */
.waitlist-section {
  background: linear-gradient(180deg, transparent 0%, rgba(34, 211, 238, 0.03) 50%, transparent 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.waitlist-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 32px auto 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.waitlist-input {
  flex: 1;
  min-width: 220px;
  padding: 13px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  outline: none;
  transition: all 0.2s;
}
.waitlist-input:focus {
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}
.waitlist-input::placeholder { color: var(--text-dim); }
.waitlist-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--green-dim);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius);
  color: var(--green);
  font-weight: 600;
  font-size: 15px;
  max-width: 480px;
  margin: 16px auto 0;
  text-align: center;
}
.waitlist-success.visible { display: flex; }
.waitlist-error {
  color: var(--red);
  font-size: 13px;
  text-align: center;
  margin-top: 8px;
  display: none;
}
.waitlist-error.visible { display: block; }
.waitlist-count-display {
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
  margin-top: 8px;
}

/* ─── FAQ ────────────────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--bg-card);
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  gap: 12px;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--bg-card-hover); }
.faq-chevron {
  font-size: 12px;
  color: var(--text-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 20px 18px;
  background: var(--bg-card);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 24px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand { max-width: 260px; }
.footer-logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.footer-tagline { font-size: 13px; color: var(--text-dim); line-height: 1.6; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--text-dim); }

/* ─── Stats Bar ──────────────────────────────────────────────────────────────── */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 40px 24px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-value {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--text), var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ─── Notification Toast ─────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 22px;
  font-size: 14px;
  color: var(--text);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast-icon { font-size: 16px; }

/* ─── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .features-wrapper { grid-template-columns: 1fr; }
  .features-visual { order: -1; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .comparison-table { font-size: 12px; }
  .comparison-table th, .comparison-table td { padding: 12px 10px; }
  footer { flex-direction: column; }
  .footer-links { gap: 32px; }
  .stats-bar { gap: 24px; }
  .stat-divider { display: none; }
  .hero h1 { letter-spacing: -2px; }
}
@media (max-width: 480px) {
  nav { padding: 0 16px; }
  .section { padding: 64px 16px; }
  .pricing-grid { margin: 32px 0 0; }
  .waitlist-form { flex-direction: column; }
  .waitlist-input { min-width: unset; width: 100%; }
}
