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

:root {
  --bg:         #FFFFFF;
  --bg-2:       #F8FAFF;
  --bg-3:       #F1F5FE;
  --surface:    #FFFFFF;
  --border:     #E5EAF2;
  --border-2:   #D0D9EC;
  --blue:       #2563EB;
  --blue-light: #3B82F6;
  --blue-pale:  #EEF3FD;
  --blue-glow:  rgba(37,99,235,0.18);
  --indigo:     #4F46E5;
  --text:       #0F172A;
  --text-2:     #334155;
  --muted:      #64748B;
  --muted-2:    #94A3B8;
  --success:    #059669;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow-sm:  0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --shadow:     0 4px 16px rgba(15,23,42,.08), 0 1px 4px rgba(15,23,42,.04);
  --shadow-lg:  0 12px 40px rgba(37,99,235,.14), 0 4px 12px rgba(15,23,42,.06);
}

html { scroll-behavior: smooth; }

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

/* ── Utility ───────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 5px 13px;
  border: 1px solid #C7D7F9; border-radius: 100px;
  color: var(--blue); background: var(--blue-pale);
}
.tag .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  border: none; text-decoration: none; transition: all .2s ease;
  font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: var(--blue); color: #fff;
  box-shadow: 0 2px 12px var(--blue-glow);
}
.btn-primary:hover {
  background: var(--indigo);
  box-shadow: 0 4px 20px rgba(79,70,229,.28);
  transform: translateY(-1px);
}
.btn-outline {
  background: #fff; color: var(--text);
  border: 1.5px solid var(--border-2);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover {
  border-color: var(--blue-light); color: var(--blue);
  transform: translateY(-1px); box-shadow: var(--shadow);
}

.section-eyebrow { margin-bottom: 14px; }
.section-title { font-size: clamp(28px, 4vw, 46px); font-weight: 800; line-height: 1.12; letter-spacing: -.03em; color: var(--text); }
.section-sub { font-size: 17px; color: var(--muted); max-width: 560px; margin-top: 14px; line-height: 1.65; }

/* ── NAV ───────────────────────────────────────────────── */
nav.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}
.logo-wrap {
  display: flex; align-items: center; gap: 9px;
  text-decoration: none; flex-shrink: 0;
}
.logo-icon-mark {
  width: 32px; height: 32px; border-radius: 9px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--indigo) 100%);
  display: flex; align-items: center; justify-content: center;
}
.logo-icon-mark svg { color: #fff; }
.logo {
  font-size: 20px; font-weight: 900; letter-spacing: -.04em;
  color: var(--text); flex-shrink: 0;
}
.logo span { color: var(--blue); }
.nav-links {
  display: flex; gap: 28px; list-style: none;
  margin: 0 auto;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  text-decoration: none; transition: color .2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--text); }
.btn-nav {
  padding: 10px 20px; font-size: 14px; border-radius: 8px;
  flex-shrink: 0; white-space: nowrap;
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .btn-nav { padding: 9px 16px; font-size: 13px; }
}

/* ── HERO ──────────────────────────────────────────────── */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(160deg, #F0F6FF 0%, #FFFFFF 55%, #F5F0FF 100%);
  position: relative; overflow: hidden;
}
.hero-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-image-col { display: none; }
}
.hero-image-col { position: relative; z-index: 1; }
.hero-img-wrap {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(37,99,235,.18), 0 8px 24px rgba(15,23,42,.1);
}
.hero-img-wrap img {
  width: 100%; height: 420px; object-fit: cover; display: block;
}
.hero-img-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: 12px;
  padding: 12px 16px; display: flex; align-items: center; gap: 10px;
  box-shadow: 0 4px 16px rgba(15,23,42,.1);
}
.hero-img-badge .badge-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg,#22C55E,#16A34A);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.hero-img-badge .badge-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); }
.hero-img-badge .badge-text span { font-size: 12px; color: var(--muted); }
.hero-img-badge-2 {
  position: absolute; top: 20px; right: 20px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 10px 14px; display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 16px rgba(15,23,42,.1);
}
.hero-img-badge-2 .b2-dot { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; animation: pulse 2s infinite; }
.hero-img-badge-2 span { font-size: 12px; font-weight: 600; color: var(--text); }
.hero-orb-1 {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.09) 0%, transparent 70%);
  top: -200px; right: -100px; pointer-events: none;
}
.hero-orb-2 {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,70,229,.07) 0%, transparent 70%);
  bottom: -150px; left: -100px; pointer-events: none;
}
.hero-dots {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(circle, #CBD5E1 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 40%, transparent 100%);
  opacity: .35;
}
.hero-content { position: relative; z-index: 1; }

.coming-soon-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: #FFF7ED; border: 1px solid #FED7AA;
  color: #C2410C; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 100px; margin-bottom: 20px;
}
.coming-soon-chip .fire { font-size: 13px; }

.hero-headline {
  font-size: clamp(44px, 7.5vw, 86px);
  font-weight: 900; line-height: 1.04;
  letter-spacing: -.045em; color: var(--text);
}
.hero-headline .gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--indigo) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 19px; color: var(--muted); max-width: 580px;
  margin-top: 22px; line-height: 1.65;
}

/* Waitlist form inline */
.hero-form { margin-top: 38px; }
.form-row {
  display: flex; gap: 10px; max-width: 520px;
  background: #fff; border: 1.5px solid var(--border-2);
  border-radius: 12px; padding: 6px 6px 6px 18px;
  box-shadow: var(--shadow-lg);
  transition: border-color .2s;
}
.form-row:focus-within { border-color: var(--blue); }
.form-row input {
  flex: 1; border: none; outline: none; background: transparent;
  font-size: 15px; color: var(--text); font-family: 'Inter', sans-serif;
  min-width: 0;
}
.form-row input::placeholder { color: var(--muted-2); }
.form-row .btn { flex-shrink: 0; white-space: nowrap; padding: 11px 22px; font-size: 14px; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 12px; }
.form-note a { color: var(--blue); text-decoration: none; }
.form-note a:hover { text-decoration: underline; }

.form-success {
  display: none; max-width: 520px;
  background: #F0FDF4; border: 1.5px solid #BBF7D0;
  border-radius: 12px; padding: 18px 22px;
  gap: 12px; align-items: center;
}
.form-success .success-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: #D1FAE5; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; font-size: 18px;
}
.form-success .success-text strong { display: block; font-size: 15px; color: #065F46; }
.form-success .success-text span { font-size: 13px; color: #059669; }

.hero-social {
  display: flex; gap: 28px; margin-top: 48px;
  padding-top: 36px; border-top: 1px solid var(--border);
  flex-wrap: wrap; align-items: center;
}
.social-label { font-size: 13px; color: var(--muted-2); font-weight: 500; }
.avatars { display: flex; }
.av {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid #fff; margin-left: -8px; first-child:margin-left:0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff;
}
.av:first-child { margin-left: 0; }
.av.a { background: linear-gradient(135deg,#2563EB,#7C3AED); }
.av.b { background: linear-gradient(135deg,#059669,#2563EB); }
.av.c { background: linear-gradient(135deg,#D97706,#EF4444); }
.av.d { background: linear-gradient(135deg,#7C3AED,#EC4899); }
.av.e { background: linear-gradient(135deg,#0891B2,#059669); }
.social-count { font-size: 14px; font-weight: 600; color: var(--text-2); }
.social-count span { color: var(--muted); font-weight: 400; }

/* ── STATS BANNER ──────────────────────────────────────── */
#stats-banner {
  padding: 0; position: relative; overflow: hidden;
}
.stats-banner-inner {
  position: relative;
  background: linear-gradient(135deg, var(--blue) 0%, var(--indigo) 100%);
  padding: 64px 0;
}
.stats-banner-inner::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1400&q=60&fit=crop') center/cover;
  opacity: .08;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative; z-index: 1;
}
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }
.stat-item {
  text-align: center; padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.stat-item:last-child { border-right: none; }
.stat-val { font-size: 42px; font-weight: 900; color: #fff; letter-spacing: -.04em; line-height: 1; }
.stat-label { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 6px; font-weight: 500; }

/* ── FEATURES ──────────────────────────────────────────── */
#features { padding: 100px 0; background: var(--bg-2); }
.features-header { margin-bottom: 60px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 22px; }

.feat-cover {
  width: calc(100% + 60px); margin: -34px -30px 24px;
  height: 180px; object-fit: cover; display: block;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.feature-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.feature-card:hover {
  border-color: #C7D7F9;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.feat-icon {
  width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 22px;
}
.feat-icon.blue   { background: var(--blue-pale); }
.feat-icon.violet { background: #F0EFFF; }
.feat-icon.teal   { background: #ECFDF5; }
.feat-title { font-size: 19px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.feat-desc  { font-size: 15px; color: var(--muted); line-height: 1.65; }
.feat-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.pill {
  font-size: 11px; font-weight: 600; letter-spacing: .04em;
  padding: 4px 10px; border-radius: 6px;
  background: var(--bg-3); color: var(--muted); border: 1px solid var(--border);
}

/* ── AGENT IN ACTION ───────────────────────────────────── */
#demo { padding: 100px 0; }
.demo-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .demo-inner { grid-template-columns: 1fr; } }

.demo-list { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.demo-item { display: flex; gap: 13px; align-items: flex-start; }
.demo-check {
  width: 22px; height: 22px; border-radius: 7px; flex-shrink: 0;
  background: var(--blue-pale); display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.demo-item-text { font-size: 15px; color: var(--muted); }
.demo-item-text strong { color: var(--text); }

/* Dashboard card */
.dashboard-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
}
.dash-topbar {
  padding: 13px 16px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-2);
}
.dot-btn { width: 11px; height: 11px; border-radius: 50%; }
.dot-btn.red    { background: #FC5F57; }
.dot-btn.yellow { background: #FDBC40; }
.dot-btn.green  { background: #33C748; }
.dash-title { font-size: 11.5px; color: var(--muted); margin-left: 6px; letter-spacing: .04em; font-weight: 500; }

.waveform-area {
  padding: 22px 18px 16px;
  background: linear-gradient(180deg, var(--blue-pale) 0%, #fff 100%);
  border-bottom: 1px solid var(--border);
}
.waveform-label {
  font-size: 11px; color: var(--muted); letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px; font-weight: 600;
}
.live-badge {
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  background: #FEF2F2; color: #EF4444;
  border: 1px solid #FECACA; border-radius: 4px; padding: 2px 7px;
}
.waveform { display: flex; align-items: center; gap: 3px; height: 50px; }
.wave-bar {
  flex: 1; background: var(--blue); border-radius: 2px; opacity: .7;
  animation: wave var(--d,.8s) ease-in-out infinite alternate;
  animation-delay: var(--delay,0s);
}
@keyframes wave { from{height:3px} to{height:var(--h,18px)} }

.transcript-area { padding: 16px 18px; }
.transcript-title {
  font-size: 11px; color: var(--muted-2); letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 13px; font-weight: 600;
}
.transcript-line { display: flex; gap: 9px; margin-bottom: 11px; align-items: flex-start; }
.speaker {
  font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 5px; white-space: nowrap; flex-shrink: 0; margin-top: 1px;
}
.speaker.agent  { background: var(--blue-pale); color: var(--blue); }
.speaker.lead   { background: #F0FDF4; color: #059669; }
.transcript-text { font-size: 13px; color: var(--text-2); line-height: 1.5; }
.typing-cursor {
  display: inline-block; width: 2px; height: 12px;
  background: var(--blue); animation: blink 1s step-end infinite;
  vertical-align: middle; margin-left: 2px;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.dash-stats { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--border); }
.dash-stat { padding: 14px; text-align: center; border-right: 1px solid var(--border); background: var(--bg-2); }
.dash-stat:last-child { border-right: none; }
.dash-stat-val { font-size: 19px; font-weight: 800; }
.dash-stat-val.green  { color: #059669; }
.dash-stat-val.blue   { color: var(--blue); }
.dash-stat-val.orange { color: #D97706; }
.dash-stat-label { font-size: 10px; color: var(--muted-2); margin-top: 3px; letter-spacing: .06em; text-transform: uppercase; }

/* ── WAITLIST SECTION ──────────────────────────────────── */
#waitlist { padding: 100px 0; }
.waitlist-box {
  background: linear-gradient(135deg, #EEF3FD 0%, #F0EFFF 100%);
  border: 1.5px solid #C7D7F9;
  border-radius: 28px; padding: 72px 64px;
  text-align: center; position: relative; overflow: hidden;
}
@media (max-width: 640px) { .waitlist-box { padding: 48px 24px; } }
.waitlist-box::before {
  content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 300px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(37,99,235,.12), transparent 70%);
  pointer-events: none;
}
.waitlist-title { font-size: clamp(28px, 4vw, 50px); font-weight: 900; letter-spacing: -.04em; position: relative; z-index: 1; }
.waitlist-sub { font-size: 17px; color: var(--muted); margin: 14px auto 0; max-width: 500px; position: relative; z-index: 1; }
.waitlist-form-wrap { max-width: 500px; margin: 36px auto 0; position: relative; z-index: 1; }
.waitlist-form-wrap .form-row { max-width: 100%; }
.waitlist-perks { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-top: 28px; position: relative; z-index: 1; }
.waitlist-perk { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted); font-weight: 500; }
.waitlist-perk svg { color: var(--blue); flex-shrink: 0; }

/* ── FOOTER ────────────────────────────────────────────── */
footer { border-top: 1.5px solid var(--border); padding: 52px 0 28px; background: var(--bg-2); }
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.footer-brand .logo { display: block; margin-bottom: 10px; }
.footer-brand p { font-size: 14px; color: var(--muted-2); line-height: 1.6; max-width: 250px; }
.footer-nav { display: flex; gap: 32px; flex-wrap: wrap; align-items: center; position: relative; }
.footer-nav a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-nav a:hover { color: var(--text); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 22px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: var(--muted-2); }
.built-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--border);
  border-radius: 8px; padding: 5px 11px; background: var(--bg);
}
.built-badge .ai-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); animation: pulse 2s infinite; }

/* ── Scroll progress bar ───────────────────────────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 200;
  background: linear-gradient(90deg, var(--blue), var(--indigo), #7C3AED);
  width: 0%; transition: width .08s linear;
  box-shadow: 0 0 8px rgba(37,99,235,.5);
}

/* ── Nav entrance ───────────────────────────────────────── */
nav.header { animation: navSlideDown .65s cubic-bezier(.23,1,.32,1) both; }
@keyframes navSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

/* ── Hero staggered entrance ────────────────────────────── */
.coming-soon-chip { animation: heroUp .7s .05s cubic-bezier(.23,1,.32,1) both; }
.hero-headline    { animation: heroUp .8s .2s  cubic-bezier(.23,1,.32,1) both; }
.hero-sub         { animation: heroUp .8s .36s cubic-bezier(.23,1,.32,1) both; }
.hero-form        { animation: heroUp .8s .5s  cubic-bezier(.23,1,.32,1) both; }
.hero-social      { animation: heroUp .8s .64s cubic-bezier(.23,1,.32,1) both; }
.hero-image-col   { animation: heroRight .9s .28s cubic-bezier(.23,1,.32,1) both; }
@keyframes heroUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroRight {
  from { opacity: 0; transform: translateX(48px) scale(.96); }
  to   { opacity: 1; transform: translateX(0)    scale(1); }
}

/* ── Animated gradient headline ────────────────────────── */
.hero-headline .gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--indigo) 40%, #7C3AED 70%, var(--blue) 100%);
  background-size: 250% 250%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
}
@keyframes gradientShift {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}

/* ── Hero image badge float ─────────────────────────────── */
.hero-img-badge {
  animation: badgeFloatA 3.2s 1s ease-in-out infinite alternate,
              badgeIn .7s .9s cubic-bezier(.23,1,.32,1) both;
}
.hero-img-badge-2 {
  animation: badgeFloatB 3.8s 1.2s ease-in-out infinite alternate,
              badgeIn .7s 1.1s cubic-bezier(.23,1,.32,1) both;
}
@keyframes badgeFloatA { from { transform: translateY(0); }   to { transform: translateY(-7px); } }
@keyframes badgeFloatB { from { transform: translateY(0); }   to { transform: translateY(6px);  } }
@keyframes badgeIn {
  from { opacity: 0; transform: scale(.8) translateY(12px); }
  to   { opacity: 1; transform: scale(1)  translateY(0); }
}

/* ── Feature card staggered reveal ─────────────────────── */
.features-grid .feature-card:nth-child(1) { transition-delay: 0s; }
.features-grid .feature-card:nth-child(2) { transition-delay: .14s; }
.features-grid .feature-card:nth-child(3) { transition-delay: .28s; }

/* ── Feat cover zoom on hover ───────────────────────────── */
.feat-cover { transition: transform .5s ease; }
.feature-card:hover .feat-cover { transform: scale(1.06); }

/* ── Pill hover ─────────────────────────────────────────── */
.pill { transition: background .2s, color .2s, border-color .2s, transform .15s; }
.pill:hover { background: var(--blue-pale); color: var(--blue); border-color: #C7D7F9; transform: translateY(-2px); }

/* ── Nav link underline slide ───────────────────────────── */
.nav-links a { position: relative; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px; background: var(--blue); border-radius: 2px;
  transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }

/* ── Stats items slide up on reveal ─────────────────────── */
.stat-item {
  opacity: 0; transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.stat-item.stat-visible { opacity: 1; transform: translateY(0); }
.stat-item:nth-child(1) { transition-delay: 0s;   }
.stat-item:nth-child(2) { transition-delay: .12s; }
.stat-item:nth-child(3) { transition-delay: .24s; }
.stat-item:nth-child(4) { transition-delay: .36s; }

/* ── Demo list items slide from left ────────────────────── */
.demo-item {
  opacity: 0; transform: translateX(-24px);
  transition: opacity .5s ease, transform .5s ease;
}
.demo-item.demo-visible { opacity: 1; transform: translateX(0); }
.demo-item:nth-child(1) { transition-delay: 0s;   }
.demo-item:nth-child(2) { transition-delay: .12s; }
.demo-item:nth-child(3) { transition-delay: .24s; }
.demo-item:nth-child(4) { transition-delay: .36s; }

/* ── Waitlist animated border ───────────────────────────── */
@property --wl-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
.waitlist-box::after {
  content: ''; position: absolute; inset: -2px;
  border-radius: 30px; z-index: -1;
  background: conic-gradient(from var(--wl-angle), #2563EB, #4F46E5, #7C3AED, #EC4899, #2563EB);
  animation: rotateBorder 5s linear infinite;
  opacity: .35;
}
@keyframes rotateBorder { to { --wl-angle: 360deg; } }

/* ── Waitlist perks stagger ─────────────────────────────── */
.waitlist-perk {
  opacity: 0; transform: translateY(14px);
  transition: opacity .4s ease, transform .4s ease;
}
.waitlist-perk.perk-visible { opacity: 1; transform: translateY(0); }
.waitlist-perk:nth-child(1) { transition-delay: 0s;   }
.waitlist-perk:nth-child(2) { transition-delay: .1s;  }
.waitlist-perk:nth-child(3) { transition-delay: .2s;  }
.waitlist-perk:nth-child(4) { transition-delay: .3s;  }

/* ── SVG sales shape path draw-on ──────────────────────── */
.geo svg path, .geo svg polyline, .geo svg polygon,
.geo svg circle, .geo svg line, .geo svg rect {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: drawPath 2.4s var(--draw-delay, 0s) ease-out forwards;
}
@keyframes drawPath { to { stroke-dashoffset: 0; } }

/* ── Scroll reveal ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Custom cursor ─────────────────────────────────────── */
* { cursor: none !important; }
#cursor-dot {
  position: fixed; width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue); pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s, opacity .3s;
}
#cursor-ring {
  position: fixed; width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(37,99,235,.45); pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .35s cubic-bezier(.23,1,.32,1),
              height .35s cubic-bezier(.23,1,.32,1),
              border-color .35s, opacity .3s;
}
body.cursor-hover #cursor-dot  { width: 12px; height: 12px; background: var(--indigo); }
body.cursor-hover #cursor-ring { width: 56px; height: 56px; border-color: rgba(79,70,229,.3); }
body.cursor-click #cursor-dot  { width: 6px; height: 6px; }
body.cursor-click #cursor-ring { width: 28px; height: 28px; border-color: rgba(37,99,235,.8); }
@media (hover: none) { #cursor-dot, #cursor-ring { display: none; } * { cursor: auto !important; } }

/* ── Sales shapes ──────────────────────────────────────── */
.geo-canvas {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.geo {
  position: absolute; pointer-events: none; will-change: transform;
  animation: geoFloat var(--gf-dur, 12s) ease-in-out infinite alternate;
  opacity: var(--geo-opacity, 1);
}
@keyframes geoFloat {
  0%   { transform: translateY(0px) rotate(var(--rot-from, 0deg)) scale(1); }
  100% { transform: translateY(var(--gf-y, -28px)) rotate(var(--rot-to, 6deg)) scale(var(--gf-scale,1)); }
}
.geo svg {
  display: block;
  stroke: rgba(37,99,235, var(--geo-stroke, .16));
  fill: rgba(37,99,235, var(--geo-fill, .04));
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 2px 6px rgba(37,99,235,.08));
}

/* ── Parallax data attrs ────────────────────────────────── */
[data-parallax] { will-change: transform; }

.img-responsive {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.nav-logo {
  height: 30px;
}
