/* =========================================
   driplt — Landing Page Styles
   Palette matched to FunFund/driplt design
   ========================================= */

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

:root {
  /* Brand colours */
  --coral:      #F05028;
  --coral-lt:   #F5714E;
  --coral-dk:   #D43E18;
  --yellow:     #F6C844;
  --teal:       #3CC8A6;
  --pink:       #F490B4;
  --lavender:   #C8B4F0;

  /* Neutrals */
  --bg:         #FAF6F0;   /* warm cream */
  --bg-white:   #FFFFFF;
  --bg-section: #F3EDE4;   /* slightly darker cream for alternating sections */
  --ink:        #1A1A18;   /* near-black */
  --ink-muted:  #64605A;   /* warm mid-gray */
  --ink-dim:    #A09890;   /* lighter warm gray */
  --border:     #E8E0D4;   /* warm light border */

  /* Shadows */
  --shadow-card: 0 2px 12px rgba(26,26,24,0.07), 0 1px 3px rgba(26,26,24,0.05);
  --shadow-lg:   0 12px 40px rgba(26,26,24,0.12);

  --radius:    16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--coral); border-radius: 3px; }

/* ---- Utilities ---- */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  background: rgba(240,80,40,0.1);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--ink-muted);
  max-width: 540px;
  line-height: 1.65;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-sub { margin: 0 auto; }

.coral-text { color: var(--coral); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26,26,24,0.25);
}
.btn-primary:hover { box-shadow: 0 8px 24px rgba(26,26,24,0.35); background: #2a2a28; }

.btn-coral {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 4px 16px rgba(240,80,40,0.3);
}
.btn-coral:hover { background: var(--coral-dk); box-shadow: 0 8px 24px rgba(240,80,40,0.4); }

.btn-ghost {
  background: rgba(26,26,24,0.06);
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { background: rgba(26,26,24,0.1); }

.btn-nav {
  background: var(--ink);
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  box-shadow: none;
}
.btn-nav:hover { background: #2a2a28; box-shadow: 0 4px 12px rgba(26,26,24,0.2); }

/* ---- Reveal animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.07s; }
.reveal:nth-child(3) { transition-delay: 0.14s; }
.reveal:nth-child(4) { transition-delay: 0.21s; }
.reveal:nth-child(5) { transition-delay: 0.28s; }

/* =========================================
   NAV
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250,246,240,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--border);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { width: 30px; height: 30px; }
.logo-text {
  font-size: 21px;
  font-weight: 700;
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--coral); }
.nav .btn-nav { margin-left: auto; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  background: rgba(250,246,240,0.98);
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile a:last-child { border: none; }
.nav-mobile a:hover { color: var(--ink); }
.nav-mobile .btn-nav { margin-top: 8px; justify-content: center; border-radius: var(--radius-sm); }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  background: var(--coral);
  overflow: hidden;
  padding: 100px 0 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Confetti shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.shape {
  position: absolute;
  border-radius: 50%;
}
.shape-1 { width: 220px; height: 220px; background: var(--yellow); top: 60px; left: 38%; opacity: 0.9; animation: shapeFloat1 8s ease-in-out infinite; }
.shape-2 { width: 160px; height: 160px; background: var(--pink);   top: 120px; right: 12%; opacity: 0.85; animation: shapeFloat2 10s ease-in-out infinite; }
.shape-3 { width: 100px; height: 100px; background: var(--teal);   bottom: 30%; left: 55%; opacity: 0.9; animation: shapeFloat3 12s ease-in-out infinite; }
.shape-4 { width: 18px;  height: 18px;  background: var(--ink);    top: 42%; left: 44%; border-radius: 50%; opacity: 0.7; }
.shape-5 { width: 28px;  height: 28px;  background: var(--lavender); top: 68%; right: 28%; border-radius: 6px; transform: rotate(15deg); animation: shapeFloat2 9s ease-in-out infinite 1s; }
.shape-6 { width: 20px;  height: 20px;  background: var(--yellow); bottom: 38%; left: 10%; border-radius: 4px; transform: rotate(-10deg); animation: shapeFloat1 11s ease-in-out infinite 2s; }

@keyframes shapeFloat1 { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-16px) rotate(3deg)} }
@keyframes shapeFloat2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }
@keyframes shapeFloat3 { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-12px) scale(1.04)} }

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-end;
  flex: 1;
}

.hero-content { padding-bottom: 64px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,26,24,0.15);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--teal);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.7;transform:scale(0.82)} }

.hero-headline {
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 900;
  line-height: 0.97;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 420px;
}

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

.btn-hero-primary {
  background: var(--ink);
  color: #fff;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 20px rgba(26,26,24,0.35);
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,26,24,0.45); }
.btn-hero-primary svg { width: 18px; height: 18px; }

.btn-hero-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: background 0.18s, transform 0.18s;
}
.btn-hero-ghost:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

.hero-social {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.hero-social svg { width: 15px; height: 15px; opacity: 0.7; }
.hero-social strong { color: rgba(255,255,255,0.9); }

/* ---- Phone mockup ---- */
.hero-phone {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 0;
}
.phone-wrap { position: relative; }

.phone-frame {
  position: relative;
  z-index: 1;
  width: 270px;
  background: var(--bg);
  border-radius: 44px;
  border: 2px solid rgba(255,255,255,0.3);
  box-shadow: 0 40px 80px rgba(26,26,24,0.35), inset 0 1px 0 rgba(255,255,255,0.5);
  overflow: hidden;
  padding: 40px 14px 20px;
  animation: phoneFloat 7s ease-in-out infinite;
}
@keyframes phoneFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

.phone-notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 10px;
  background: var(--ink);
  border-radius: 100px;
}

/* Status bar */
.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 2px;
}
.phone-status-time { font-size: 11px; font-weight: 700; color: var(--ink); }
.phone-status-icons { display: flex; gap: 4px; align-items: center; }
.phone-status-icons span { width: 14px; height: 8px; background: var(--ink); border-radius: 2px; opacity: 0.8; }
.phone-status-icons span:first-child { width: 10px; }
.phone-status-icons span:last-child { width: 18px; height: 10px; border-radius: 2px; border: 1.5px solid var(--ink); background: none; }

.phone-screen { display: flex; flex-direction: column; gap: 10px; }

/* Wallet pill */
.mock-wallet-pill {
  background: var(--ink);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mock-wallet-label { font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; }
.mock-wallet-amount { font-size: 20px; font-weight: 900; color: #fff; letter-spacing: -0.02em; margin-top: 1px; }
.mock-add-btn {
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2);
}

/* Section label */
.mock-section-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.mock-section-label span:last-child { font-size: 11px; color: var(--coral); font-weight: 600; }

/* Pool cards */
.mock-pool-card {
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.mock-pool-thumb {
  height: 52px;
  position: relative;
  overflow: hidden;
}
.mock-pool-thumb.lisbon {
  background: linear-gradient(135deg, #F05028 0%, #F6C844 100%);
}
.mock-pool-thumb.party {
  background: linear-gradient(135deg, #F6C844 0%, #F05028 100%);
}
.mock-pool-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.08) 0px,
    rgba(255,255,255,0.08) 6px,
    transparent 6px,
    transparent 12px
  );
}
.mock-pool-days {
  position: absolute;
  top: 6px; right: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  z-index: 1;
}
.mock-pool-avs {
  position: absolute;
  bottom: 6px; right: 8px;
  display: flex;
  z-index: 1;
}
.mock-pool-avs span {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 800; color: #fff;
  margin-right: -5px;
  border: 1.5px solid var(--bg-white);
}
.mock-pool-avs span:nth-child(1) { background: var(--coral); }
.mock-pool-avs span:nth-child(2) { background: var(--teal); }
.mock-pool-avs span:nth-child(3) { background: #8B7CF6; }
.mock-pool-body {
  padding: 8px 10px;
}
.mock-pool-name { font-size: 12px; font-weight: 800; color: var(--ink); margin-bottom: 1px; }
.mock-pool-amt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.mock-pool-bal { font-size: 15px; font-weight: 900; color: var(--ink); }
.mock-pool-goal { font-size: 9px; color: var(--ink-muted); }
.mock-pool-pct { font-size: 10px; font-weight: 700; color: var(--coral); }
.mock-pool-bar { height: 4px; background: var(--border); border-radius: 100px; overflow: hidden; }
.mock-pool-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--yellow));
  border-radius: 100px;
}

/* Bottom tab bar */
.mock-tabs {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0 4px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.mock-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 8px;
  font-weight: 600;
  color: var(--ink-dim);
}
.mock-tab.active { color: var(--coral); }
.mock-tab-icon { width: 16px; height: 16px; background: currentColor; border-radius: 3px; opacity: 0.8; }
.mock-tab.active .mock-tab-icon { background: var(--coral); opacity: 1; }

/* =========================================
   MARQUEE
   ========================================= */
.marquee-section {
  padding: 18px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
}
.marquee-section::before { left: 0; background: linear-gradient(90deg, var(--bg-white), transparent); }
.marquee-section::after  { right: 0; background: linear-gradient(-90deg, var(--bg-white), transparent); }

.marquee-track { overflow: hidden; }
.marquee-content {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-content span {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-muted);
}
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* =========================================
   PROBLEM
   ========================================= */
.problem { padding: 96px 0; background: var(--bg); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.problem-col {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.problem-col:last-child { border-color: rgba(60,200,166,0.3); }

.problem-headline {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--ink);
}
.problem-list { display: flex; flex-direction: column; gap: 14px; }
.problem-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.5;
}
.problem-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  flex-shrink: 0; margin-top: 1px;
}
.problem-icon.bad  { background: #FEE2E2; color: #EF4444; }
.problem-icon.good { background: rgba(60,200,166,0.15); color: var(--teal); }

/* =========================================
   HOW IT WORKS
   ========================================= */
.how {
  padding: 96px 0;
  background: var(--bg-section);
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}
.step-number {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--coral);
  margin-bottom: 16px;
}
.step-icon {
  width: 72px; height: 72px;
  margin-bottom: 20px;
}
.step-icon svg { width: 72px; height: 72px; }
.step h3 { font-size: 19px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.01em; color: var(--ink); }
.step p  { font-size: 14px; color: var(--ink-muted); line-height: 1.6; }

.step-connector {
  flex-shrink: 0;
  width: 80px;
  margin-top: 56px;
  opacity: 0.4;
}
.step-connector svg { width: 80px; }

/* =========================================
   COMPARISON
   ========================================= */
.comparison {
  padding: 96px 0;
  background: var(--bg);
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.comparison-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.comparison-card--bad  { border-color: rgba(239,68,68,0.25); }
.comparison-card--good { border-color: rgba(60,200,166,0.3); }

.comparison-card-header { margin-bottom: 28px; }
.comparison-card-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.comparison-card--bad  .comparison-card-label { color: #EF4444; }
.comparison-card--good .comparison-card-label { color: var(--teal); }

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.comparison-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.5;
}
.comparison-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  flex-shrink: 0; margin-top: 2px;
}
.comparison-icon.bad  { background: #FEE2E2; color: #EF4444; }
.comparison-icon.good { background: rgba(60,200,166,0.15); color: var(--teal); }

/* =========================================
   FEATURES
   ========================================= */
.features { padding: 96px 0; background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.feature-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow-card);
}
.feature-card:hover {
  border-color: rgba(240,80,40,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-card-inner { display: flex; flex-direction: column; }
.feature-icon { width: 44px; height: 44px; margin-bottom: 18px; }
.feature-icon svg { width: 44px; height: 44px; }
.feature-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.01em; color: var(--ink); }
.feature-card p  { font-size: 14px; color: var(--ink-muted); line-height: 1.65; }

.feature-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}
.feature-tag-list span {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(240,80,40,0.08);
  color: var(--coral);
  border: 1px solid rgba(240,80,40,0.15);
}

.feature-visual { display: flex; align-items: center; justify-content: center; padding: 16px; }

/* Pool visual */
.pool-card-demo {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  width: 190px;
  box-shadow: var(--shadow-card);
}
.pcd-thumb {
  height: 64px;
  border-radius: var(--radius-xs);
  background: linear-gradient(135deg, var(--coral), var(--yellow));
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.pcd-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(255,255,255,0.1) 0, rgba(255,255,255,0.1) 6px, transparent 6px, transparent 12px);
}
.pcd-days {
  position: absolute; top: 6px; right: 8px;
  background: var(--ink); color: #fff;
  font-size: 9px; font-weight: 700;
  padding: 2px 7px; border-radius: 100px; z-index: 1;
}
.pcd-name { font-size: 12px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.pcd-row  { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.pcd-bal  { font-size: 16px; font-weight: 900; color: var(--ink); }
.pcd-pct  { font-size: 10px; font-weight: 700; color: var(--coral); }
.pcd-bar  { height: 4px; background: var(--border); border-radius: 100px; overflow: hidden; margin-bottom: 8px; }
.pcd-fill { height: 100%; background: linear-gradient(90deg, var(--coral), var(--yellow)); border-radius: 100px; width: 68%; }
.pcd-avs  { display: flex; }
.pcd-avs span {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800; color: #fff;
  margin-right: -6px;
  border: 2px solid var(--bg-white);
}
.pcd-avs span:nth-child(1) { background: var(--coral); }
.pcd-avs span:nth-child(2) { background: var(--teal); }
.pcd-avs span:nth-child(3) { background: var(--lavender); color: var(--ink); }
.pcd-avs span:nth-child(4) { background: var(--ink); font-size: 8px; }

/* Drip rules UI */
.feature-mini-ui { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.drip-rule {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-muted);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 8px 12px;
}
.drip-rule svg { width: 14px; height: 14px; flex-shrink: 0; }
.drip-amt { margin-left: auto; font-weight: 800; color: var(--ink); font-size: 12px; }

/* Card state demo */
.card-state-demo {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.state {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}
.state.frozen { background: #F1F5F9; color: #64748B; }
.state.voted  { background: rgba(60,200,166,0.12); color: var(--teal); }
.state.armed  { background: rgba(246,200,68,0.18); color: #B07D00; }

/* Vote demo */
.vote-demo { margin-top: 18px; display: flex; flex-direction: column; gap: 6px; }
.vote-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--ink-muted);
}
.vote-row span:first-child {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--coral);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800; color: #fff;
}
.vote-row:nth-child(2) span:first-child { background: var(--teal); }
.vote-row:nth-child(3) span:first-child { background: #8B7CF6; }
.vote-yes { color: var(--teal) !important; font-weight: 700; }
.vote-pending { color: var(--yellow) !important; font-weight: 700; color: #B07D00 !important; }
.vote-bar-wrap { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.vote-bar { flex: 1; height: 4px; background: var(--border); border-radius: 100px; overflow: hidden; }
.vote-bar-fill { height: 100%; width: 67%; background: linear-gradient(90deg, var(--coral), var(--yellow)); border-radius: 100px; }
.vote-bar-wrap span { font-size: 11px; color: var(--ink-muted); font-weight: 700; }

/* Chat bubble demo */
.chat-bubble-demo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-muted);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 8px 12px;
}
.chat-av {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--coral);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.chat-av.teal { background: var(--teal); }
.chat-msg { flex: 1; }

/* Market visual */
.market-visual { flex-direction: column; gap: 10px; padding: 16px; }
.market-card {
  display: flex;
  gap: 10px;
  align-items: center;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 10px 12px;
}
.market-img { font-size: 20px; flex-shrink: 0; }
.market-info { flex: 1; min-width: 0; }
.market-name { font-size: 11px; font-weight: 700; color: var(--ink); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.market-price { font-size: 10px; color: var(--ink-muted); margin-bottom: 5px; }
.market-progress { display: flex; flex-direction: column; gap: 3px; }
.market-bar { height: 3px; background: var(--border); border-radius: 100px; overflow: hidden; }
.market-fill { height: 100%; background: linear-gradient(90deg, var(--coral), var(--yellow)); border-radius: 100px; }
.market-progress span { font-size: 9px; color: var(--ink-dim); }
.market-tag { font-size: 9px; font-weight: 700; color: var(--teal); background: rgba(60,200,166,0.1); padding: 2px 7px; border-radius: 100px; display: inline-block; }

/* =========================================
   DRIP SPOTLIGHT
   ========================================= */
.drip-spotlight {
  padding: 96px 0;
  background: var(--coral);
  position: relative;
  overflow: hidden;
}
.drip-spotlight::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.drip-spotlight::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(246,200,68,0.2), transparent 70%);
  bottom: -80px; left: 10%;
  border-radius: 50%;
}

.drip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.drip-spotlight .section-eyebrow {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
.drip-spotlight .section-title { color: #fff; }
.drip-spotlight .section-sub { color: rgba(255,255,255,0.8); }

.drip-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.drip-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
}
.drip-list li svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Timeline */
.drip-timeline { display: flex; flex-direction: column; gap: 0; }
.drip-event { display: flex; gap: 14px; position: relative; }

.drip-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0; margin-top: 4px;
  position: relative; z-index: 1;
}
.drip-dot.active {
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(246,200,68,0.3);
  animation: dotPulse 1.8s ease-in-out infinite;
}
.drip-dot.dim { background: rgba(255,255,255,0.2); }
@keyframes dotPulse { 0%,100%{box-shadow:0 0 0 4px rgba(246,200,68,0.3)} 50%{box-shadow:0 0 0 8px rgba(246,200,68,0.15)} }

.drip-line {
  position: absolute;
  left: 5px; top: 16px;
  width: 2px; height: calc(100% + 8px);
  background: rgba(255,255,255,0.2);
}
.drip-event:last-child .drip-line { display: none; }

.drip-event-content { display: flex; flex-direction: column; gap: 2px; padding-bottom: 24px; }
.drip-event-date  { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }
.drip-event-label { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.9); }
.drip-event-amount { font-size: 13px; font-weight: 700; }
.drip-event-amount.green  { color: var(--teal); }
.drip-event-amount.yellow { color: var(--yellow); }
.drip-event.future .drip-event-label,
.drip-event.future .drip-event-date { color: rgba(255,255,255,0.4); }

/* =========================================
   STATS
   ========================================= */
.stats-section {
  padding: 72px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-item { flex: 1; text-align: center; padding: 0 32px; }
.stat-number {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number span { color: var(--coral); }
.stat-label { font-size: 14px; color: var(--ink-muted); font-weight: 500; }
.stat-divider { width: 1px; height: 56px; background: var(--border); flex-shrink: 0; }

/* =========================================
   WAITLIST
   ========================================= */
.waitlist {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.waitlist::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(240,80,40,0.07), transparent 65%);
  top: -200px; left: -200px;
  border-radius: 50%;
}
.waitlist::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(246,200,68,0.1), transparent 65%);
  bottom: -150px; right: -100px;
  border-radius: 50%;
}
.waitlist-inner {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}
.waitlist-logo-mark { width: 56px; height: 56px; margin: 0 auto 20px; display: block; }
.waitlist-title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 14px;
}
.waitlist-title span { color: var(--coral); }
.waitlist-sub { font-size: 17px; color: var(--ink-muted); margin-bottom: 36px; line-height: 1.6; }

.waitlist-form { width: 100%; margin-bottom: 20px; }
.waitlist-input-wrap {
  display: flex;
  gap: 8px;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 6px 6px 6px 20px;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.waitlist-input-wrap:focus-within {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(240,80,40,0.12);
}
.waitlist-input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--ink); font-size: 15px; font-family: inherit; min-width: 0;
}
.waitlist-input::placeholder { color: var(--ink-dim); }
.waitlist-submit { flex-shrink: 0; padding: 11px 22px; font-size: 14px; }
.waitlist-note { font-size: 13px; color: var(--ink-dim); margin-top: 10px; transition: color 0.3s; }
.waitlist-note.success { color: var(--teal); }
.waitlist-note.error   { color: #EF4444; }

.waitlist-avatars {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; font-size: 14px; color: var(--ink-muted); font-weight: 600;
}
.av-stack { display: flex; }
.av-stack span {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff;
  margin-right: -8px;
  border: 2px solid var(--bg);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  padding: 44px 0 28px;
  background: var(--ink);
}
.footer-top { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.footer .logo-text { color: #fff; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 24px; margin-bottom: 16px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; padding-bottom: 0; }
  .hero-sub { text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-social { justify-content: center; }
  .hero-phone { order: -1; }

  .problem-grid    { grid-template-columns: 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .drip-grid       { grid-template-columns: 1fr; gap: 48px; }
  .features-grid   { grid-template-columns: 1fr 1fr; }
  .feature-large { grid-column: span 2; grid-template-columns: 1fr 1fr; }

  .stats-grid  { flex-wrap: wrap; gap: 32px; }
  .stat-divider{ display: none; }
  .stat-item   { flex: 1 1 40%; }

  .steps { flex-direction: column; align-items: center; }
  .step-connector { transform: rotate(90deg); margin: -8px 0; }
}

@media (max-width: 640px) {
  .nav-links, .nav .btn-nav { display: none; }
  .nav-toggle { display: flex; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-large { grid-column: span 1; grid-template-columns: 1fr; }
  .feature-visual { display: none; }

  .waitlist-input-wrap { flex-direction: column; border-radius: var(--radius); padding: 12px 16px; }
  .waitlist-submit { border-radius: var(--radius-sm); width: 100%; justify-content: center; }

  .footer-top { flex-direction: column; align-items: flex-start; gap: 6px; }
  .hero-headline { font-size: 48px; }
  .phone-frame { width: 240px; }
}
