/* =============================================
   POKE LANDING PAGE — style.css
   ============================================= */

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

:root {
  --ink:       #0a0a0f;
  --ink-2:     #1a1a2e;
  --muted:     #6b6b80;
  --muted-lt:  #a0a0b8;
  --border:    #e8e8f0;
  --surface:   #f7f7fb;
  --white:     #ffffff;
  --primary:   #5b4cf5;
  --primary-d: #4236d9;
  --primary-lt:#ede9ff;
  --accent:    #f5a623;
  --green:     #00c48c;
  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:    0 4px 16px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl: 0 32px 80px rgba(0,0,0,.16), 0 8px 24px rgba(0,0,0,.08);
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --transition: 200ms cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  border-radius: var(--radius-sm);
  line-height: 1;
}

.btn--sm  { font-size: .8125rem; padding: 8px 16px; }
.btn--lg  { font-size: 1rem; padding: 14px 28px; border-radius: var(--radius-sm); }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(91,76,245,.3);
}
.btn--primary:hover {
  background: var(--primary-d);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(91,76,245,.35);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn--outline:hover { border-color: var(--muted); background: var(--surface); }

.btn--ghost {
  background: transparent;
  color: var(--muted);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover { color: var(--ink); border-color: var(--muted); background: var(--surface); }

.btn--white {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow);
}
.btn--white:hover { background: var(--primary-lt); transform: translateY(-1px); }

/* =============================================
   SECTION LABELS
   ============================================= */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-lt);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.section-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 56px;
}

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(232,232,240,.7);
  transition: box-shadow var(--transition);
}

.nav.scrolled { box-shadow: var(--shadow); }

.nav__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__logo {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -.04em;
  color: var(--ink);
}
.nav__dot { color: var(--primary); }

.nav__links {
  display: flex;
  gap: 32px;
  flex: 1;
}
.nav__links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--ink); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  padding: 160px 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, #faf9ff 0%, #ffffff 60%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(91,76,245,.12) 0%, transparent 70%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,.1) 0%, transparent 70%);
  top: 100px; right: -100px;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,196,140,.08) 0%, transparent 70%);
  top: 200px; left: -80px;
}

.hero__content {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-lt);
  border: 1px solid rgba(91,76,245,.2);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero__badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(0,196,140,.2);
}

.hero__headline {
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.04em;
  color: var(--ink);
  margin-bottom: 24px;
}

.hero__headline em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  color: var(--primary);
}

.hero__sub {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--muted);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: .875rem;
  color: var(--muted);
  font-weight: 500;
}

.avatars {
  display: flex;
}
.avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  object-fit: cover;
}
.avatars img:first-child { margin-left: 0; }

/* SMS MOCKUP */
.hero__mockup-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 72px;
  padding-bottom: 0;
}

.sms-window {
  width: 100%;
  max-width: 560px;
  background: #fff;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  border-bottom: none;
  overflow: hidden;
}

.sms-window__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.sms-window__dots {
  display: flex;
  gap: 6px;
}
.sms-window__dots span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.sms-window__dots span:nth-child(1) { background: #ff5f57; }
.sms-window__dots span:nth-child(2) { background: #febc2e; }
.sms-window__dots span:nth-child(3) { background: #28c840; }

.sms-window__title {
  flex: 1;
  text-align: center;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--muted);
}

.sms-window__body {
  padding: 24px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sms-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sms-row--recv { align-items: flex-start; }
.sms-row--sent { align-items: flex-end; }

.sms-bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: .9375rem;
  line-height: 1.5;
  font-weight: 400;
}
.sms-row--recv .sms-bubble {
  background: var(--surface);
  color: var(--ink);
  border-radius: 4px 18px 18px 18px;
}
.sms-row--sent .sms-bubble {
  background: var(--primary);
  color: #fff;
  border-radius: 18px 4px 18px 18px;
}

.sms-time {
  font-size: .75rem;
  color: var(--muted-lt);
  padding: 0 4px;
}

.sms-typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 16px;
  background: var(--surface);
  border-radius: 4px 18px 18px 18px;
  width: fit-content;
}
.sms-typing span {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted-lt);
  animation: bounce 1.2s infinite ease-in-out;
}
.sms-typing span:nth-child(2) { animation-delay: .15s; }
.sms-typing span:nth-child(3) { animation-delay: .3s; }

@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
}

/* =============================================
   LOGOS
   ============================================= */
.logos {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.logos__label {
  text-align: center;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--muted-lt);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.logos__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-lt);
  font-size: .9375rem;
  font-weight: 600;
  transition: color var(--transition);
  cursor: default;
}
.logo-item:hover { color: var(--muted); }
.logo-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how {
  padding: 120px 0;
  background: var(--white);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  padding: 40px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.step__num {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -.04em;
  color: var(--primary-lt);
  margin-bottom: 20px;
  line-height: 1;
  -webkit-text-stroke: 1.5px var(--primary);
  -webkit-text-fill-color: transparent;
  text-stroke: 1.5px var(--primary);
  color: transparent;
  background: linear-gradient(135deg, var(--primary) 0%, rgba(91,76,245,.3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.step__desc {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.65;
}

.step__connector {
  flex-shrink: 0;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--border) 0%, var(--primary) 50%, var(--border) 100%);
  margin-top: 72px;
}

/* =============================================
   FEATURES
   ============================================= */
.features {
  padding: 120px 0;
  background: var(--surface);
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.feat-card {
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.feat-card--wide { grid-column: span 2; }

.feat-card--light { background: var(--white); }

.feat-card--dark {
  background: var(--ink-2);
  border-color: rgba(255,255,255,.05);
  color: #fff;
}
.feat-card--dark .feat-card__desc { color: rgba(255,255,255,.6); }
.feat-card--dark .feat-card__title { color: #fff; }

.feat-card--gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #7c5cbf 50%, #a855f7 100%);
  border-color: transparent;
  color: #fff;
}
.feat-card--gradient .feat-card__desc { color: rgba(255,255,255,.75); }
.feat-card--gradient .feat-card__title { color: #fff; }

.feat-card__icon {
  width: 48px;
  height: 48px;
  background: var(--primary-lt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
}
.feat-card__icon svg { width: 24px; height: 24px; }

.feat-card__icon--accent { background: rgba(245,166,35,.12); color: var(--accent); }
.feat-card__icon--warm { background: rgba(0,196,140,.1); color: var(--green); }
.feat-card__icon--white { background: rgba(255,255,255,.15); color: #fff; }

.feat-card__title {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -.025em;
  margin-bottom: 12px;
  color: var(--ink);
}

.feat-card__desc {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 480px;
}

.feat-card__pill {
  display: inline-block;
  margin-top: 24px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(91,76,245,.12);
  padding: 5px 12px;
  border-radius: 999px;
}

.feat-card__integrations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.feat-card__integrations span {
  font-size: .8125rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
  padding: 4px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: 120px 0;
  background: var(--white);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.testimonial__quote {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  flex: 1;
}
.testimonial__quote::before { content: '\201C'; }
.testimonial__quote::after  { content: '\201D'; }

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial__author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial__author strong {
  display: block;
  font-size: .9375rem;
  font-weight: 600;
}
.testimonial__author span {
  display: block;
  font-size: .8125rem;
  color: var(--muted);
}

/* =============================================
   PRICING
   ============================================= */
.pricing {
  padding: 120px 0;
  background: var(--surface);
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.pricing-card--featured {
  background: var(--ink-2);
  border-color: transparent;
  box-shadow: var(--shadow-xl);
}
.pricing-card--featured h3,
.pricing-card--featured .pricing-card__price,
.pricing-card--featured .pricing-card__features li { color: #fff; }
.pricing-card--featured p { color: rgba(255,255,255,.6); }
.pricing-card--featured .pricing-card__features svg { color: var(--green); }

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, var(--primary) 0%, #a855f7 100%);
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-card__header { margin-bottom: 32px; }
.pricing-card__header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.pricing-card__header p {
  font-size: .9375rem;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}
.pricing-card__price span {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -.04em;
  color: var(--ink);
  line-height: 1;
}

.pricing-card--featured .pricing-card__price span { color: #fff; }

.pricing-card__features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9375rem;
  color: var(--ink);
}
.pricing-card__features svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--primary);
}

/* =============================================
   WAITLIST
   ============================================= */
.waitlist {
  position: relative;
  padding: 120px 0;
  background: var(--ink);
  overflow: hidden;
}

.waitlist__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.waitlist__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.waitlist__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(91,76,245,.3) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.waitlist__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(168,85,247,.2) 0%, transparent 70%);
  bottom: -100px; right: -50px;
}

.waitlist__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.waitlist__headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
}

.waitlist__sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,.6);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.waitlist__form { max-width: 680px; margin: 0 auto; }

.waitlist__fields {
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 8px 8px 8px 16px;
  flex-wrap: wrap;
  backdrop-filter: blur(8px);
}

.waitlist__handle {
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 600;
  background: transparent;
  border: none;
  color: #fff;
  outline: none;
  width: 120px;
  min-width: 80px;
}
.waitlist__handle::placeholder { color: rgba(255,255,255,.3); }

.waitlist__at {
  font-size: .9375rem;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
}

.waitlist__email {
  flex: 1;
  font-size: 1rem;
  font-family: var(--font-sans);
  background: transparent;
  border: none;
  border-left: 1px solid rgba(255,255,255,.12);
  color: #fff;
  outline: none;
  padding-left: 16px;
  min-width: 180px;
}
.waitlist__email::placeholder { color: rgba(255,255,255,.3); }

.waitlist__disclaimer {
  font-size: .8125rem;
  color: rgba(255,255,255,.3);
  margin-top: 16px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 64px 0 32px;
}

.footer__inner {
  display: flex;
  gap: 80px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.footer__brand {
  flex: 1;
  min-width: 200px;
}
.footer__brand .nav__logo { font-size: 1.25rem; color: #fff; margin-bottom: 12px; }
.footer__brand p { font-size: .9375rem; color: rgba(255,255,255,.4); line-height: 1.6; }

.footer__nav {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 100px;
}
.footer__col h4 {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 4px;
}
.footer__col a {
  font-size: .9375rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer__col a:hover { color: #fff; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .8125rem;
  color: rgba(255,255,255,.25);
  flex-wrap: wrap;
  gap: 12px;
}

/* =============================================
   WAITLIST SUCCESS STATE
   ============================================= */
.waitlist-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px;
  animation: fadeIn .4s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
.waitlist-success__icon svg {
  width: 56px;
  height: 56px;
  color: var(--green);
  stroke-width: 1.5;
}
.waitlist-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.03em;
}
.waitlist-success p {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
}
.waitlist-success strong { color: rgba(255,255,255,.9); }

/* =============================================
   SCROLL-TRIGGERED ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.fade-up.visible { opacity: 1; transform: none; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .features__grid { grid-template-columns: 1fr; }
  .feat-card--wide { grid-column: span 1; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step__connector { width: 1px; height: 32px; margin: 0 0 0 72px; background: linear-gradient(180deg, var(--border) 0%, var(--primary) 50%, var(--border) 100%); }
  .pricing__grid { grid-template-columns: 1fr; max-width: 440px; }
  .nav__links { display: none; }
  .footer__inner { gap: 48px; }
  .footer__nav { gap: 40px; }
  .waitlist__fields { justify-content: center; }
  .waitlist__email { border-left: none; padding-left: 0; }
}

@media (max-width: 600px) {
  .hero { padding: 120px 0 0; }
  .hero__headline { font-size: 2.5rem; }
  .section-headline { font-size: 1.875rem; margin-bottom: 40px; }
  .hero__cta { flex-direction: column; align-items: center; }
  .logos__row { gap: 24px; }
  .feat-card { padding: 28px; }
  .step { padding: 28px; }
  .pricing-card { padding: 28px; }
  .testimonial { padding: 24px; }
  .waitlist__headline { font-size: 2.25rem; }
  .footer__inner { flex-direction: column; gap: 32px; }
}
