/* ==========================================================================
   Marketing Pages Stylesheet
   Shared styles for all public marketing pages
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables - Dark theme (default, teal-tinted)
   -------------------------------------------------------------------------- */
:root, [data-theme="dark"] {
  --bg-dark: #12191c;
  --bg-card: #192226;
  --bg-card-elevated: #1f282c;
  --bg-card-hover: #1f282c;
  --bg-nav: rgba(18, 25, 28, 0.85);
  --border: #2a3a3f;
  --border-accent: #3a4d52;
  --text-primary: #fafafa;
  --text-secondary: #c8cdd0;
  --text-muted: #9ca3a7;
  --accent-coral: #ff6b5b;
  --accent-coral-hover: #ff5a47;
  --accent-coral-glow: rgba(255, 107, 91, 0.15);
  --accent-mint: #4ade94;
  --accent-mint-glow: rgba(74, 222, 148, 0.12);
  --accent-sky: #5bb4ff;
  --accent-sky-glow: rgba(91, 180, 255, 0.12);
  --accent-amber: #f59e0b;
  --accent-amber-glow: rgba(245, 158, 11, 0.12);
  --gradient-subtle: linear-gradient(135deg, #1f282c 0%, #192226 100%);
  --glow-coral: rgba(255, 107, 91, 0.1);
  --glow-mint: rgba(74, 222, 148, 0.05);
  --glow-sky: rgba(91, 180, 255, 0.05);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.25);

  /* Competitor colors */
  --gclick-color: #ff6b5b;
  --gleam-color: #6366f1;
  --rafflepress-color: #f97316;
  --sweepwidget-color: #3b82f6;
}

/* --------------------------------------------------------------------------
   CSS Variables - Light theme
   -------------------------------------------------------------------------- */
[data-theme="light"] {
  --bg-dark: #f8f7f5;
  --bg-card: #ffffff;
  --bg-card-elevated: #ffffff;
  --bg-card-hover: #fafafa;
  --bg-nav: rgba(248, 247, 245, 0.9);
  --border: #e5e3df;
  --border-accent: #d4d2ce;
  --text-primary: #1a1a1e;
  --text-secondary: #5c5c62;
  --text-muted: #8c8c92;
  --accent-coral: #e85a4b;
  --accent-coral-hover: #d94a3b;
  --accent-coral-glow: rgba(232, 90, 75, 0.1);
  --accent-mint: #1db06a;
  --accent-mint-glow: rgba(29, 176, 106, 0.1);
  --accent-sky: #3a9be0;
  --accent-sky-glow: rgba(58, 155, 224, 0.1);
  --accent-amber: #d98a08;
  --accent-amber-glow: rgba(217, 138, 8, 0.1);
  --gradient-subtle: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  --glow-coral: rgba(232, 90, 75, 0.08);
  --glow-mint: rgba(29, 176, 106, 0.05);
  --glow-sky: rgba(58, 155, 224, 0.05);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* --------------------------------------------------------------------------
   Reset & Base Styles
   -------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

/* --------------------------------------------------------------------------
   Background Effects
   -------------------------------------------------------------------------- */
.bg-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, var(--glow-coral) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, var(--glow-mint) 0%, transparent 40%),
    radial-gradient(ellipse 50% 30% at 20% 80%, var(--glow-sky) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.3s ease;
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px;
  background: var(--bg-nav);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: inherit;
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link.active {
  color: var(--accent-coral);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

/* --------------------------------------------------------------------------
   Theme Toggle
   -------------------------------------------------------------------------- */
.theme-toggle {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: var(--text-secondary);
}

.theme-toggle:hover {
  border-color: var(--border-accent);
  color: var(--text-primary);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

.theme-toggle span {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   Flash Messages
   -------------------------------------------------------------------------- */
.flash {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  animation: fadeInDown 0.3s ease;
  max-width: 90%;
}

.flash p {
  margin: 0;
}

.flash-notice {
  background: var(--accent-mint-glow);
  border: 1px solid var(--accent-mint);
  color: var(--accent-mint);
}

.flash-alert {
  background: var(--accent-coral-glow);
  border: 1px solid var(--accent-coral);
  color: var(--accent-coral);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

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

.btn-ghost:hover {
  background: var(--bg-card-elevated);
  color: var(--text-primary);
  border-color: var(--border-accent);
}

.btn-primary {
  background: var(--accent-coral);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-coral-hover);
  transform: translateY(-1px);
}

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

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
}

.btn-large {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 10px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 48px 24px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.footer-logo span {
  color: inherit;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

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

.footer-column {
  min-width: 120px;
}

.footer-column-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-column-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--text-primary);
}

.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

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

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

.footer-credit a {
  color: var(--text-secondary);
  text-decoration: none;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* --------------------------------------------------------------------------
   Section Headers
   -------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-coral);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 16px;
  margin-top: 12px;
}

/* --------------------------------------------------------------------------
   Badge
   -------------------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease-out;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-mint);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  z-index: 1;
  padding: 160px 24px 100px;
  text-align: center;
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 28px;
  animation: fadeInDown 0.6s ease-out;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-mint);
  border-radius: 50%;
}

.hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-title-highlight {
  color: var(--accent-coral);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease-out 0.3s both;
  margin-top: 40px;
}

.hero-note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
  animation: fadeInUp 0.6s ease-out 0.4s both;
  text-align: center;
}

.hero-note a {
  color: var(--text-secondary);
  text-decoration: none;
}

.hero-note a:hover {
  color: var(--accent-coral);
}

.hero-credit {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

.hero-credit a {
  color: var(--text-secondary);
  text-decoration: none;
}

.hero-credit a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Features Section
   -------------------------------------------------------------------------- */
.features-section {
  position: relative;
  z-index: 1;
  padding: 80px 24px 100px;
}

.features-container {
  max-width: 1100px;
  margin: 0 auto;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.feature-card:nth-child(1) .feature-icon {
  background: var(--accent-sky-glow);
  border: 1px solid rgba(91, 180, 255, 0.2);
}

.feature-card:nth-child(2) .feature-icon {
  background: var(--accent-coral-glow);
  border: 1px solid rgba(255, 107, 91, 0.2);
}

.feature-card:nth-child(3) .feature-icon {
  background: var(--accent-mint-glow);
  border: 1px solid rgba(74, 222, 148, 0.2);
}

.feature-card:nth-child(4) .feature-icon {
  background: var(--accent-amber-glow);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.feature-name {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.feature-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* More features teaser */
.more-features {
  text-align: center;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.more-features-text {
  font-size: 15px;
  color: var(--text-secondary);
}

.more-features-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 16px;
}

.more-features-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.more-features-item::before {
  content: '✓';
  color: var(--accent-mint);
  font-weight: 700;
  font-size: 12px;
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
  position: relative;
  z-index: 1;
  padding: 80px 24px 100px;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.cta-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Pricing Page Styles (v3 — Busker rebrand)
   -------------------------------------------------------------------------- */
.pricing-hero {
  padding-top: 120px;
  padding-bottom: 16px;
  position: relative;
  z-index: 1;
}

.pricing-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.pricing-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.pricing-hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
}

/* Billing Toggle */
.billing-toggle-section {
  padding: 24px 0 40px;
  position: relative;
  z-index: 1;
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.billing-option {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.billing-option.active {
  color: var(--text-primary);
}

.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  background: var(--border);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.toggle-switch.active {
  background: var(--accent-coral);
}

.toggle-knob {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.toggle-switch.active .toggle-knob {
  transform: translateX(20px);
}

.billing-save-badge {
  font-size: 12px;
  font-weight: 500;
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
  padding: 2px 8px;
  border-radius: 100px;
}

[data-theme="dark"] .billing-save-badge {
  background: rgba(74, 222, 148, 0.12);
  color: var(--accent-mint);
}

/* Pricing Cards Grid */
.pricing-cards-section {
  padding-bottom: 48px;
  position: relative;
  z-index: 1;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: start;
}

/* Plan Card */
.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
}

.plan-card-featured {
  border: 2px solid var(--accent-coral);
  box-shadow: 0 8px 32px -8px rgba(255, 107, 91, 0.12);
}

.plan-header {
  margin-bottom: 24px;
}

.plan-name {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.plan-name-coral {
  color: var(--accent-coral);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.plan-price-amount {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.plan-price-period {
  font-size: 15px;
  color: var(--text-muted);
}

.plan-description {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
}

/* Plan CTA Buttons */
.plan-cta {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 24px;
}

.plan-cta-primary {
  background: var(--accent-coral);
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(255, 107, 91, 0.2);
}

.plan-cta-primary:hover {
  background: var(--accent-coral-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 107, 91, 0.3);
}

.plan-cta-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border);
}

.plan-cta-secondary:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-elevated);
}

/* Plan Features */
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.plan-features-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  padding-bottom: 4px;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}

.plan-feature-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #22c55e;
}

[data-theme="dark"] .plan-feature-check {
  color: var(--accent-mint);
}

.plan-feature-check-coral {
  color: var(--accent-coral);
}

.plan-feature-name {
  color: var(--text-primary);
}

.plan-feature-name-bold {
  font-weight: 600;
  color: var(--text-primary);
}

.plan-feature-detail {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.plan-feature-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.plan-feature-badge-row {
  margin-top: 4px;
}

/* Highlighted feature (green bg) */
.plan-feature-highlight {
  background: rgba(34, 197, 94, 0.06);
  margin: 0 -12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(34, 197, 94, 0.12);
}

[data-theme="dark"] .plan-feature-highlight {
  background: rgba(74, 222, 148, 0.06);
  border-color: rgba(74, 222, 148, 0.12);
}

/* Hero feature (coral bg — YouTube Post Alerts) */
.plan-feature-hero {
  background: rgba(255, 107, 91, 0.05);
  margin: 0 -12px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 91, 0.12);
}

/* Badges */
.badge-unique {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #16a34a;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

.badge-unique-coral {
  background: var(--accent-coral);
}

.badge-tiny {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 4px;
  border-radius: 3px;
  margin-left: 4px;
  white-space: nowrap;
}

.badge-tiny-green {
  background: #16a34a;
  color: white;
}

.badge-tiny-coral {
  background: var(--accent-coral);
  color: white;
}

/* Upgrade nudge at bottom of Starter card */
.plan-upgrade-nudge {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
}

.plan-upgrade-nudge a {
  color: var(--accent-coral);
  font-weight: 500;
  text-decoration: none;
}

.plan-upgrade-nudge a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Compare Table
   -------------------------------------------------------------------------- */
.plan-compare-section {
  padding: 16px 0 80px;
  position: relative;
  z-index: 1;
}

.plan-compare-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.plan-compare-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 24px;
  transition: color 0.2s;
}

.plan-compare-toggle:hover {
  color: var(--text-primary);
}

.plan-compare-chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.plan-compare-details[open] .plan-compare-chevron {
  transform: rotate(180deg);
}

.plan-compare-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow-x: auto;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

[data-theme="dark"] .plan-compare-table-wrap {
  box-shadow: var(--shadow-card);
}

.plan-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.plan-compare-table thead tr {
  border-bottom: 1px solid var(--border);
}

.plan-compare-table th {
  padding: 16px 16px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
}

.plan-compare-feature-col {
  text-align: left !important;
  color: var(--text-muted) !important;
  font-weight: 500 !important;
  min-width: 180px;
}

.plan-compare-table td {
  padding: 12px 16px;
  text-align: center;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

[data-theme="dark"] .plan-compare-table td {
  border-bottom-color: rgba(255,255,255,0.03);
}

.plan-compare-table td:first-child {
  text-align: left;
  color: var(--text-secondary);
}

.plan-compare-table tbody tr:last-child td {
  border-bottom: none;
}

.plan-compare-price {
  font-weight: 400;
  font-size: 12px;
  color: var(--text-muted);
}

.plan-compare-price-coral {
  color: var(--accent-coral);
}

.plan-compare-growth-col {
  background: rgba(255, 107, 91, 0.03);
}

.plan-compare-muted {
  color: var(--text-muted) !important;
  font-size: 12px;
}

.plan-compare-dash {
  color: var(--text-muted) !important;
  opacity: 0.4;
}

.plan-compare-small {
  font-size: 12px;
}

.plan-compare-row-unique td:first-child {
  font-weight: 500;
}

.icon-check {
  color: #22c55e;
  font-weight: 700;
  font-size: 16px;
}

[data-theme="dark"] .icon-check {
  color: var(--accent-mint);
}

.icon-check-green {
  color: #16a34a;
}

[data-theme="dark"] .icon-check-green {
  color: var(--accent-mint);
}

.icon-check-coral {
  color: var(--accent-coral) !important;
}

/* --------------------------------------------------------------------------
   Transaction Fees
   -------------------------------------------------------------------------- */
.txn-fees-section {
  padding: 64px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.txn-fees-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.txn-fees-header {
  text-align: center;
  margin-bottom: 40px;
}

.txn-fees-header h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.txn-fees-header p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

.txn-fees-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.txn-fee-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

[data-theme="light"] .txn-fee-card {
  background: #faf9f7;
}

.txn-fee-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.txn-fee-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.txn-fee-icon svg {
  width: 16px;
  height: 16px;
}

.txn-fee-icon-green {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}

[data-theme="dark"] .txn-fee-icon-green {
  background: rgba(74, 222, 148, 0.12);
  color: var(--accent-mint);
}

.txn-fee-icon-coral {
  background: rgba(255, 107, 91, 0.12);
  color: var(--accent-coral);
}

.txn-fee-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.txn-examples {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.txn-example {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}

.txn-example-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.txn-example-rate {
  font-size: 12px;
  font-family: monospace;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.txn-example-row {
  font-size: 14px;
}

.txn-example-input {
  color: var(--text-muted);
}

.txn-example-result {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 2px;
}

.txn-example-result-green {
  color: #15803d;
}

[data-theme="dark"] .txn-example-result-green {
  color: var(--accent-mint);
}

/* Competitor Comparison */
.competitor-compare {
  margin-top: 32px;
  background: rgba(255, 107, 91, 0.04);
  border: 1px solid rgba(255, 107, 91, 0.15);
  border-radius: 12px;
  padding: 20px;
}

.competitor-compare-title {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
}

.competitor-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  text-align: center;
}

.competitor-item {
  background: var(--bg-card);
  border-radius: 8px;
  padding: 8px;
  opacity: 0.85;
}

.competitor-rate {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

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

.competitor-compare-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.pricing-faq-section {
  padding: 64px 0;
  position: relative;
  z-index: 1;
}

.pricing-faq-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.pricing-faq-inner h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}

.pricing-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.pricing-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  cursor: pointer;
  font-weight: 500;
  color: var(--text-primary);
  transition: background 0.2s;
}

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

.pricing-faq-item summary svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.2s;
}

.pricing-faq-item[open] summary svg {
  transform: rotate(180deg);
}

.pricing-faq-answer {
  padding: 0 20px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Bottom CTA
   -------------------------------------------------------------------------- */
.pricing-bottom-cta {
  padding: 64px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.pricing-bottom-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.pricing-bottom-cta h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing-bottom-cta p {
  color: var(--text-muted);
  margin-bottom: 24px;
}


/* --------------------------------------------------------------------------
   Content Pages (About, TOS, Privacy, Data)
   -------------------------------------------------------------------------- */
.content-page {
  position: relative;
  z-index: 1;
  padding: 140px 24px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.content-page h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.content-page .lead {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 48px;
  line-height: 1.6;
}

.content-page h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  margin-top: 48px;
  margin-bottom: 16px;
}

.content-page h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
}

.content-page p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

.content-page ul,
.content-page ol {
  color: var(--text-secondary);
  margin-bottom: 16px;
  padding-left: 24px;
  line-height: 1.7;
}

.content-page li {
  margin-bottom: 8px;
}

.content-page a {
  color: var(--accent-coral);
  text-decoration: none;
}

.content-page a:hover {
  text-decoration: underline;
}

.content-page .last-updated {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.content-page .philosophy-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent-coral);
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 48px;
}

.content-page .philosophy-box h2 {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.content-page .philosophy-box p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Responsive Styles
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .pricing-cards-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .txn-fees-grid {
    grid-template-columns: 1fr;
  }

  .competitor-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding: 140px 24px 80px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .footer-container {
    flex-direction: column;
  }

  .footer-links {
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .plan-compare-table-wrap {
    overflow-x: auto;
  }

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

@media (max-width: 700px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   New Hero Section Styles
   -------------------------------------------------------------------------- */

/* Gradient text for headline highlight */
.gradient-text {
  background: linear-gradient(135deg, var(--accent-coral) 0%, var(--accent-coral-hover) 50%, #c44030 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Floating animation for email preview card */
@keyframes floatGentle {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

.float-gentle {
  animation: floatGentle 6s ease-in-out infinite;
}

/* Live counter badge */
.live-counter {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  animation: fadeInDown 0.6s ease-out;
}

.live-counter-dot {
  position: relative;
  width: 8px;
  height: 8px;
}

.live-counter-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-mint);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.live-counter-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  background: var(--accent-mint);
  border-radius: 50%;
  opacity: 0.4;
  animation: pulse 2s infinite;
}

.live-counter strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Hero grid layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  text-align: left;
}

.hero-visual {
  position: relative;
  margin-top: -40px;
}

/* Email preview card */
.email-preview-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.email-preview-card::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, var(--accent-coral-glow) 0%, var(--accent-mint-glow) 50%, transparent 100%);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.6;
}

.email-header {
  background: var(--bg-card-elevated);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.email-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-coral-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-coral);
}

.email-header-text {
  flex: 1;
}

.email-header-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}

.email-header-meta {
  font-size: 12px;
  color: var(--text-muted);
}

.email-body {
  padding: 20px;
}

/* Winner announcement box */
.winner-box {
  background: var(--accent-mint-glow);
  border: 1px solid rgba(74, 222, 148, 0.3);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}

.winner-box-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.winner-check {
  width: 28px;
  height: 28px;
  background: var(--accent-mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.winner-box-header span {
  font-weight: 600;
  color: var(--accent-mint);
}

.winner-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.winner-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.winner-row-label {
  color: var(--text-muted);
}

.winner-row-value {
  color: var(--text-primary);
  font-weight: 500;
}

/* Upsell hint box */
.upsell-box {
  background: var(--bg-card-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  gap: 12px;
}

.upsell-icon {
  width: 32px;
  height: 32px;
  background: var(--accent-coral-glow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-coral);
  flex-shrink: 0;
}

.upsell-content h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.upsell-content p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.upsell-content a {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-coral);
  text-decoration: none;
}

.upsell-content a:hover {
  text-decoration: underline;
}

/* Value props strip */
.value-props-strip {
  position: relative;
  z-index: 1;
  padding: 40px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}

.value-props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.value-prop {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.value-prop-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.value-prop-icon.green {
  background: var(--accent-mint-glow);
  color: var(--accent-mint);
}

.value-prop-icon.coral {
  background: var(--accent-coral-glow);
  color: var(--accent-coral);
}

.value-prop-icon.blue {
  background: var(--accent-sky-glow);
  color: var(--accent-sky);
}

.value-prop h3 {
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.value-prop p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Secondary CTA link */
.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hero-cta-secondary:hover {
  color: var(--text-primary);
}

.hero-cta-secondary svg {
  color: var(--accent-coral);
  transition: transform 0.2s ease;
}

.hero-cta-secondary:hover svg {
  transform: scale(1.1);
}

/* --------------------------------------------------------------------------
   How It Works Section Styles
   -------------------------------------------------------------------------- */
.how-it-works-section {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
}

.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 60px;
}

.how-it-works-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent-coral-glow);
  color: var(--accent-coral);
  font-size: 13px;
  font-weight: 500;
  border-radius: 100px;
  margin-bottom: 16px;
}

.how-it-works-header h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 12px;
}

.how-it-works-header p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Steps grid */
.steps-wrapper {
  position: relative;
}

/* Connection line for desktop */
.step-connector {
  display: none;
}

@media (min-width: 1024px) {
  .step-connector {
    display: block;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border) 15%, var(--border) 85%, transparent);
  }
}

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

/* Step card */
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.step-card.highlight-green {
  background: linear-gradient(135deg, var(--accent-mint-glow) 0%, var(--bg-card) 100%);
  border-color: rgba(74, 222, 148, 0.3);
}

.step-card.highlight-green:hover {
  border-color: rgba(74, 222, 148, 0.5);
}

.step-card.highlight-coral {
  background: linear-gradient(135deg, var(--accent-coral-glow) 0%, var(--bg-card) 100%);
  border-color: rgba(255, 107, 91, 0.3);
}

.step-card.highlight-coral:hover {
  border-color: rgba(255, 107, 91, 0.5);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--bg-card-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-coral);
  margin-bottom: 20px;
}

.step-card.highlight-green .step-number {
  color: var(--accent-mint);
  border-color: rgba(74, 222, 148, 0.3);
}

.step-card h3 {
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-card > p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Mini illustrations */
.mini-illustration {
  background: var(--bg-card-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
}

.step-card.highlight-green .mini-illustration {
  border-color: rgba(74, 222, 148, 0.2);
}

.step-card.highlight-coral .mini-illustration {
  border-color: rgba(255, 107, 91, 0.2);
}

/* Mini form illustration */
.mini-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-form-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-form-icon {
  width: 28px;
  height: 28px;
  background: var(--accent-coral-glow);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.mini-form-fields {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mini-form-field {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
}

.mini-form-field:first-child {
  width: 75%;
}

.mini-form-field:last-child {
  width: 50%;
}

.mini-form-buttons {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.mini-form-input {
  flex: 1;
  height: 24px;
  background: var(--bg-dark);
  border-radius: 4px;
}

.mini-form-btn {
  width: 50px;
  height: 24px;
  background: var(--accent-coral);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: white;
  font-weight: 500;
}

/* Mini Google OAuth illustration */
.mini-oauth {
  text-align: center;
}

.mini-oauth-label {
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.mini-google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}

.mini-google-btn svg {
  width: 14px;
  height: 14px;
}

.mini-verified {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 8px;
  font-size: 10px;
  color: var(--accent-mint);
}

/* Mini winner illustration */
.mini-winner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-winner-header {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mini-winner-check {
  width: 20px;
  height: 20px;
  background: var(--accent-mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
}

.mini-winner-header span {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-mint);
}

.mini-winner-rows {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mini-winner-row {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
}

.mini-winner-row span:first-child {
  color: var(--text-muted);
}

.mini-winner-row span:last-child {
  color: var(--text-primary);
}

/* Mini fan list illustration */
.mini-fans {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-fans-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mini-fans-header span:first-child {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-primary);
}

.mini-fans-header span:last-child {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-coral);
}

.mini-fans-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mini-fan-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-fan-avatar {
  width: 18px;
  height: 18px;
  background: var(--border);
  border-radius: 50%;
}

.mini-fan-bar {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
}

.mini-fan-check {
  font-size: 10px;
  color: var(--accent-mint);
}

.mini-fans-footer {
  padding-top: 8px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 10px;
  color: var(--text-muted);
}

/* How It Works CTA */
.how-it-works-cta {
  text-align: center;
  margin-top: 60px;
}

.how-it-works-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.how-it-works-cta p {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Responsive - New Sections
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-content {
    text-align: center;
    order: 1;
  }

  .hero-visual {
    order: 2;
    max-width: 500px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .value-props-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }
}
