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

:root {
  --background: 0 0% 100%;
  --foreground: 0 0% 9%;
  --primary: 217 91% 60%;
  --primary-foreground: 0 0% 98%;
  --muted: 0 0% 93%;
  --muted-foreground: 0 0% 40%;
  --card: 0 0% 98%;
  --card-border: 0 0% 94%;
  --border: 0 0% 90%;
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Satoshi', 'Inter', -apple-system, sans-serif;
  --max-w: 1120px;
  color-scheme: light;
}

html.dark {
  --background: 0 0% 7%;
  --foreground: 0 0% 98%;
  --muted: 0 0% 15%;
  --muted-foreground: 0 0% 60%;
  --card: 0 0% 10%;
  --card-border: 0 0% 14%;
  --border: 0 0% 16%;
  color-scheme: dark;
}

html {
  font-family: var(--font-body);
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body { line-height: 1.6; overflow-x: hidden; }

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

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

/* ===== Utility ===== */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 120ms; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 240ms; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 360ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-anim, .hero-anim-mockup { animation: none !important; opacity: 1 !important; transform: none !important; filter: none !important; }
}

/* ===== Gradient Orbs ===== */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 500px; height: 500px;
  background: hsla(var(--primary) / 0.15);
  top: -100px; left: -150px;
  animation: float1 20s ease-in-out infinite;
}

.orb-2 {
  width: 400px; height: 400px;
  background: hsla(280 70% 60% / 0.1);
  bottom: -50px; right: -100px;
  animation: float2 25s ease-in-out infinite;
}

.orb-3 {
  width: 500px; height: 500px;
  background: hsla(var(--primary) / 0.12);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: float3 18s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.08); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 20px) scale(1.05); }
  66% { transform: translate(25px, -35px) scale(0.92); }
}

@keyframes float3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.15); }
}

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: hsla(var(--background) / 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}

.nav-brand {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
}

.nav-brand svg { width: 24px; height: 24px; }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 600; font-size: 0.875rem;
  border-radius: var(--radius); border: none; cursor: pointer;
  transition: all 0.2s ease;
  padding: 0.5rem 1.25rem; min-height: 2.25rem;
}

.btn-primary {
  background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
}
.btn-primary:hover { filter: brightness(1.1); box-shadow: 0 4px 16px hsla(var(--primary) / 0.35); transform: translateY(-1px); }
.btn-primary:active { transform: scale(0.98) translateY(0); }
.btn-primary:focus-visible { outline: 2px solid hsl(var(--primary)); outline-offset: 2px; }

.btn-lg { padding: 0.625rem 2rem; min-height: 2.75rem; font-size: 1rem; }

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

/* Theme toggle */
.theme-toggle {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid hsl(var(--border));
  cursor: pointer; color: hsl(var(--foreground)); transition: background 0.15s;
}
.theme-toggle:hover { background: hsl(var(--muted)); }
.theme-toggle svg { width: 18px; height: 18px; }

html.dark .icon-sun { display: block; }
html.dark .icon-moon { display: none; }
html:not(.dark) .icon-sun { display: none; }
html:not(.dark) .icon-moon { display: block; }

/* ===== Hero ===== */
.hero {
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-layout {
  position: relative;
  z-index: 1;
}

.hero-text { text-align: center; }

.hero-label {
  font-family: var(--font-display);
  text-transform: uppercase; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; color: hsl(var(--primary));
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.08; margin-bottom: 1.25rem;
}

.hero .subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: hsl(var(--muted-foreground));
  max-width: 520px; margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* Hero entrance animation */
.hero-anim {
  animation: heroIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-anim:nth-child(1) { animation-delay: 0.05s; }
.hero-anim:nth-child(2) { animation-delay: 0.15s; }
.hero-anim:nth-child(3) { animation-delay: 0.3s; }
.hero-anim:nth-child(4) { animation-delay: 0.45s; }

.hero-anim-mockup {
  animation: heroIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* ===== Phone Mockup ===== */
.hero-mockup {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  perspective: 1000px;
}

.phone-frame {
  width: 280px;
  border-radius: 36px;
  overflow: hidden;
  background: #000;
  padding: 8px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1),
    0 25px 80px rgba(0,0,0,0.35),
    0 0 100px hsla(var(--primary) / 0.08);
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-frame:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

.phone-screen {
  background: #1C1C1E;
  border-radius: 28px;
  overflow: hidden;
  padding: 12px 16px 24px;
  min-height: 420px;
}

.mock-statusbar {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; font-weight: 600; color: #fff;
  padding: 8px 4px 12px;
}

.mock-icons { display: flex; gap: 4px; align-items: center; color: #fff; }
.mock-icons svg { display: inline; }

.mock-header {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 4px 0 16px;
}

.mock-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700; color: #fff;
}

.mock-date {
  font-size: 13px; font-weight: 500; color: hsl(var(--primary));
}

.mock-timeline {
  display: flex; flex-direction: column; gap: 10px;
}

.mock-appt {
  border-radius: 10px;
  padding: 12px 14px;
  border-left: 3px solid;
}

.mock-appt-1 { background: hsla(var(--primary) / 0.15); border-color: hsl(var(--primary)); }
.mock-appt-2 { background: hsla(280 70% 60% / 0.12); border-color: hsl(280 70% 60%); }
.mock-appt-3 { background: hsla(150 70% 50% / 0.12); border-color: hsl(150 70% 50%); }
.mock-appt-4 { background: hsla(35 90% 55% / 0.12); border-color: hsl(35 90% 55%); }

.mock-appt-time {
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
}

.mock-appt-name {
  font-size: 13px; font-weight: 500; color: #fff;
}

/* ===== Waitlist Form ===== */
.waitlist-form {
  display: flex; gap: 0.5rem;
  max-width: 440px; margin: 0 auto;
}

.waitlist-form input {
  flex: 1; min-width: 0;
  padding: 0.625rem 1rem; font-size: 1rem;
  font-family: var(--font-body);
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  transition: border-color 0.15s, box-shadow 0.15s;
}

.waitlist-form input::placeholder { color: hsl(var(--muted-foreground)); }
.waitlist-form input:focus { outline: none; border-color: hsl(var(--primary)); box-shadow: 0 0 0 3px hsla(var(--primary) / 0.15); }

.waitlist-form .btn { white-space: nowrap; }

.form-success {
  display: none; color: hsl(var(--primary)); font-weight: 600;
  font-size: 0.95rem; margin-top: 0.75rem;
}

.waitlist-form.submitted + .form-success { display: block; }

/* ===== Social Proof Bar ===== */
.proof-bar {
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
  background: hsla(var(--primary) / 0.03);
}

.proof-bar p {
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
}

/* ===== Identity Statement ===== */
.identity {
  padding: 6rem 0;
  text-align: center;
  background: hsl(var(--foreground));
  color: hsl(var(--background));
  position: relative;
  overflow: hidden;
}

.identity h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}

.identity p {
  font-size: 1.1rem;
  opacity: 0.6;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ===== Sections ===== */
section { padding: 5rem 0; }

.section-label {
  font-family: var(--font-display);
  text-transform: uppercase; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; color: hsl(var(--primary));
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800; letter-spacing: -0.025em;
  line-height: 1.12; margin-bottom: 1rem;
}

.section-subtitle {
  color: hsl(var(--muted-foreground));
  font-size: 1.05rem; max-width: 580px;
  line-height: 1.7;
}

.section-center { text-align: center; }
.section-center .section-subtitle { margin: 0 auto; }

/* ===== Value Props (3-col) ===== */
.value-grid {
  display: grid; gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--card-border));
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: hsla(var(--primary) / 0.2);
}
html.dark .value-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.value-card .icon-wrap {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: hsla(var(--primary) / 0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}

.value-card .icon-wrap svg { width: 24px; height: 24px; color: hsl(var(--primary)); }

.value-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.value-card p { color: hsl(var(--muted-foreground)); font-size: 0.95rem; line-height: 1.6; }

/* ===== Features (horizontal scroll on mobile) ===== */
.features-scroll {
  display: grid; gap: 1.5rem;
  margin-top: 3rem;
  max-width: var(--max-w);
  margin-left: auto; margin-right: auto;
  padding: 0 1.5rem;
}

.feature-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--card-border));
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: hsla(var(--primary) / 0.2);
}
html.dark .feature-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.feature-card .icon-wrap {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: hsla(var(--primary) / 0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}

.feature-card .icon-wrap svg { width: 22px; height: 22px; color: hsl(var(--primary)); }

.feature-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card p { color: hsl(var(--muted-foreground)); font-size: 0.925rem; line-height: 1.6; }

/* ===== Comparison (checklist) ===== */
.comparison-checklist {
  display: grid; gap: 1.5rem;
  margin-top: 3rem;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}

.checklist-col {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--card-border));
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.checklist-us {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 1px hsl(var(--primary)), 0 4px 20px hsla(var(--primary) / 0.1);
}

.checklist-col h3 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700; margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.5rem;
}

.checklist-us h3 { color: hsl(var(--primary)); }
.checklist-them h3 { color: hsl(var(--muted-foreground)); }

.checklist-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.7rem;
}

.checklist-col li {
  font-size: 0.925rem;
  padding-left: 1.75rem; position: relative;
}

.checklist-col li.check { color: hsl(var(--foreground)); }
.checklist-col li.x { color: hsl(var(--muted-foreground)); }

.checklist-col li.check::before {
  content: ''; position: absolute; left: 0; top: 0.2em;
  width: 16px; height: 16px;
  background: hsl(var(--primary));
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

.checklist-col li.x::before {
  content: ''; position: absolute; left: 0; top: 0.2em;
  width: 16px; height: 16px;
  background: hsl(var(--muted-foreground));
  opacity: 0.4;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ===== No Lock-In ===== */
.no-lockin {
  text-align: center; padding: 5rem 0;
  border-top: 1px solid hsl(var(--border));
}

.no-lockin .badge-row {
  display: flex; justify-content: center; gap: 0.75rem;
  flex-wrap: wrap; margin-top: 2rem;
}

.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--card-border));
  border-radius: 9999px;
  padding: 0.5rem 1.1rem; font-size: 0.875rem; font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.badge svg { width: 16px; height: 16px; color: hsl(var(--primary)); }

/* ===== Pricing ===== */
.pricing-grid {
  display: grid; gap: 1.5rem;
  margin-top: 3rem; max-width: 720px; margin-left: auto; margin-right: auto;
}

.pricing-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--card-border));
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
html.dark .pricing-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.pricing-card-featured {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 1px hsl(var(--primary)), 0 4px 20px hsla(var(--primary) / 0.15);
}

.pricing-header h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.pricing-header .pricing-desc { color: hsl(var(--muted-foreground)); font-size: 0.925rem; margin-bottom: 1.5rem; }

.pricing-price { display: flex; align-items: baseline; gap: 0.15rem; margin-bottom: 0.25rem; }
.price-amount { font-family: var(--font-display); font-size: 2.75rem; font-weight: 800; letter-spacing: -0.03em; }
.price-period { font-size: 1rem; color: hsl(var(--muted-foreground)); font-weight: 500; }

.pricing-annual { font-size: 0.85rem; color: hsl(var(--muted-foreground)); margin-bottom: 1.5rem; }

.pricing-features {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.6rem;
}

.pricing-features li {
  font-size: 0.925rem; color: hsl(var(--foreground));
  padding-left: 1.5rem; position: relative;
}

.pricing-features li::before {
  content: '✓'; position: absolute; left: 0;
  color: hsl(var(--primary)); font-weight: 700;
}

.pricing-features li:first-child::before { content: ''; }

.pricing-compare {
  margin-top: 2rem; padding: 1.25rem 1.5rem;
  background: hsla(var(--primary) / 0.04);
  border-radius: var(--radius);
  font-size: 0.925rem; color: hsl(var(--muted-foreground));
}

.pricing-compare strong { color: hsl(var(--foreground)); }

/* ===== Bottom CTA ===== */
.bottom-cta {
  text-align: center; padding: 5rem 0;
  background: hsla(var(--primary) / 0.03);
  border-top: 1px solid hsl(var(--border));
}

.bottom-cta .section-title { margin-bottom: 1rem; }
.bottom-cta .section-subtitle { margin: 0 auto 2.5rem; }

/* ===== Footer ===== */
.footer {
  border-top: 1px solid hsl(var(--border));
  padding: 2rem 0 calc(2rem + env(safe-area-inset-bottom, 0px));
  text-align: center;
  color: hsl(var(--muted-foreground));
  font-size: 0.85rem;
}

.footer-brand {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1rem; color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.footer-brand svg { width: 20px; height: 20px; }

/* ===== Mobile Sticky CTA ===== */
.mobile-cta {
  display: none;
}

/* ===== Responsive ===== */

/* Tablet+ */
@media (min-width: 768px) {
  .value-grid { grid-template-columns: repeat(3, 1fr); }
  .features-scroll { grid-template-columns: repeat(2, 1fr); }
  .comparison-checklist { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .waitlist-form { max-width: 480px; }
}

/* Desktop */
@media (min-width: 1024px) {
  .hero { padding: 6rem 0 5rem; }

  .hero-layout {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
  }

  .hero-text { text-align: left; }
  .hero .subtitle { margin-left: 0; }
  .hero-text .waitlist-form { margin-left: 0; }

  .hero-mockup { margin-top: 0; }

  section { padding: 6rem 0; }
}

/* Mobile */
@media (max-width: 767px) {
  .waitlist-form { flex-direction: column; }
  .waitlist-form .btn { width: 100%; }
  .identity h2 { font-size: 1.35rem; }

  /* Horizontal scroll feature cards */
  .features-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 0 1.5rem;
    margin-top: 2rem;
  }

  .features-scroll .feature-card {
    flex-shrink: 0;
    width: 85vw;
    scroll-snap-align: start;
  }

  /* Stagger still works on scroll cards */
  .features-scroll > .reveal:nth-child(1) { transition-delay: 0ms; }
  .features-scroll > .reveal:nth-child(2) { transition-delay: 80ms; }
  .features-scroll > .reveal:nth-child(3) { transition-delay: 160ms; }
  .features-scroll > .reveal:nth-child(4) { transition-delay: 240ms; }

  /* Mobile sticky CTA */
  .mobile-cta {
    display: block;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px));
    background: hsla(var(--background) / 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid hsl(var(--border));
    z-index: 100;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-cta.visible {
    transform: translateY(0);
  }

  .mobile-cta-btn {
    width: 100%;
  }

  /* Extra padding at bottom so content isn't hidden by sticky CTA */
  .footer { padding-bottom: calc(4rem + env(safe-area-inset-bottom, 0px)); }

  .phone-frame { width: 240px; }
  .phone-screen { min-height: 360px; }
}

/* Hide scrollbar on features scroll */
.features-scroll::-webkit-scrollbar { display: none; }
.features-scroll { scrollbar-width: none; }
