@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&family=Fraunces:ital,opsz,wght@0,9..144,800;0,9..144,900;1,9..144,800&display=swap');

:root {
  --navy:      #0E1540;
  --navy-mid:  #1B2A6B;
  --bg:        #F7F8FC;
  --bg-alt:    #EEF1FA;
  --surface:   #FFFFFF;
  --border:    #E2E6F3;
  --text:      #111827;
  --muted:     #374151;
  --magenta:   #E0357A;
  --magenta-l: #F5477F;
  --accent:    #3B5BDB;
  --emerald:   #00B894;
  --gold:      #F0B429;
  --success:   #00B894;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }

/* ── LOGO LOCKUP ─────────────────────────────────────────── */
.logo-lockup { display: inline-block; }
.logo-wordmark {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
}
.logo-wordmark-sm { font-size: 1.2rem; }
.brand-cred { color: var(--navy); }
.brand-cred-light { color: rgba(255,255,255,0.9); }
.brand-ramp { color: var(--magenta); }
.logo-ramp {
  display: block;
  height: 3px;
  background: var(--magenta);
  clip-path: polygon(4% 100%, 100% 0%, 100% 100%);
  border-radius: 0 2px 2px 0;
  margin-top: 5px;
}
.logo-ramp-sm { height: 2px; margin-top: 3px; }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.25); }
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 5%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-beta {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: var(--magenta);
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.nav-brand .logo-wordmark { font-size: 1.5rem; }
.nav-brand .brand-cred { color: #fff; }
.nav-cta {
  background: var(--magenta);
  color: #fff;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(224,53,122,0.3);
}
.nav-cta:hover { background: var(--magenta-l); transform: translateY(-1px); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background: var(--surface);
  padding: 130px 5% 80px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}
.hero-text { text-align: left; }
.hero-visual { padding-top: 62px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--magenta);
  background: rgba(224,53,122,0.08);
  border: 1px solid rgba(224,53,122,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--magenta);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }

.hero-h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 22px;
}
.hero-h1 em { font-style: italic; color: var(--magenta); }

/* Stable rotating word — ghost reserves width of longest word ("contractors") */
.rw-outer {
  display: inline-block;
  position: relative;
  font-style: italic;
  color: var(--magenta);
}
.rw-ghost {
  display: inline-block;
  visibility: hidden;
}
.rotating-word {
  position: absolute;
  left: 0;
  top: 0;
  font-style: italic;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.rotating-word.leaving  { opacity: 0; transform: translateY(-14px); }
.rotating-word.entering { opacity: 0; transform: translateY(14px); transition: none; }
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

/* ── WAITLIST FORM ─────────────────────────────────────────── */
.waitlist-form { margin-bottom: 20px; }
.waitlist-fields {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.waitlist-email, .waitlist-select {
  flex: 1 1 200px;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--surface);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.waitlist-email:focus, .waitlist-select:focus {
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(224,53,122,0.1);
}
.waitlist-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7A9F' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.waitlist-btn {
  width: 100%;
  padding: 16px;
  background: var(--magenta);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(224,53,122,0.3);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.waitlist-btn:hover { background: var(--magenta-l); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(224,53,122,0.4); }
.waitlist-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.tally-btn { display: block; text-align: center; text-decoration: none; }
.waitlist-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

/* ── SUCCESS STATE ─────────────────────────────────────────── */
.waitlist-success {
  display: none;
  text-align: center;
  padding: 32px 24px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  margin-bottom: 20px;
}
.success-icon { display: flex; justify-content: center; margin-bottom: 14px; }
.success-icon svg { width: 48px; height: 48px; }
.success-title { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.success-sub { font-size: 0.9rem; color: var(--muted); line-height: 1.6; margin-bottom: 18px; }
.share-btn {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 11px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.2s;
}
.share-btn:hover { opacity: 0.85; }
.share-btn-light { background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.25); }
.share-btn-light:hover { background: rgba(255,255,255,0.22); opacity: 1; }

.form-error { color: #e53e3e; font-size: 0.85rem; margin-top: 8px; }

/* ── TRUST BADGES ─────────────────────────────────────────── */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 28px;
  margin-bottom: 10px;
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.hero-trust svg { flex-shrink: 0; stroke: var(--magenta); }
.hero-disclaimer { font-size: 11px; color: var(--muted); margin-top: 6px; }

/* ── SECTION DEFAULTS ─────────────────────────────────────── */
.section { padding: 88px 5%; }
.section-alt { background: var(--bg-alt); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow.magenta { color: var(--magenta); }
.eyebrow.blue { color: var(--accent); }
.eyebrow.white { color: rgba(255,255,255,0.6); }
.section-h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-sub { color: var(--muted); font-size: 1rem; line-height: 1.7; max-width: 580px; margin: 0 auto; }

/* ── USE CASES ─────────────────────────────────────────────── */
.use-cases {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.use-case {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.use-case:hover { box-shadow: 0 8px 32px rgba(14,21,64,0.09); transform: translateY(-2px); }
.uc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.uc-icon svg { width: 24px; height: 24px; }
.uc-body { flex: 1; }
.uc-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.uc-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.6; margin-bottom: 10px; }
.uc-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.step {
  flex: 1;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
}
.step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 18px;
}
.step-icon {
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  border-radius: 14px;
}
.step-icon svg { width: 24px; height: 24px; }
.step-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }
.step-arrow {
  font-size: 22px;
  color: var(--border);
  margin-top: 80px;
  flex-shrink: 0;
}

/* ── NUMBERS ─────────────────────────────────────────────── */
.numbers-section { background: var(--navy); }
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.number-card {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.number-card:last-child { border-right: none; }
.number-val {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.number-label { font-size: 0.85rem; color: rgba(255,255,255,0.78); line-height: 1.5; }

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section { background: var(--bg-alt); padding: 88px 5%; }
.cta-inner {
  max-width: 660px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: 28px;
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(224,53,122,0.22), transparent 70%);
  pointer-events: none;
}
.cta-h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}
.cta-h2 em { font-style: italic; color: var(--magenta); }
.cta-sub { color: rgba(205,215,240,1); font-size: 1rem; line-height: 1.7; margin-bottom: 36px; position: relative; }
.cta-form .waitlist-email,
.cta-form .waitlist-select {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
  color: #fff;
}
.cta-form .waitlist-email::placeholder { color: rgba(255,255,255,0.4); }
.cta-form .waitlist-email:focus,
.cta-form .waitlist-select:focus {
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(224,53,122,0.2);
}
.cta-form .waitlist-select { color: rgba(255,255,255,0.6); }
.cta-form .waitlist-select option { background: var(--navy); color: #fff; }
.cta-success {
  display: none;
  text-align: center;
  padding: 16px 0;
  position: relative;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer { background: var(--navy); padding: 56px 5% 36px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { margin-bottom: 32px; }
.footer-top .logo-lockup { margin-bottom: 14px; }
.footer-desc { color: rgba(255,255,255,0.78); font-size: 14px; line-height: 1.7; max-width: 480px; }
.footer-legal {
  font-size: 11px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  margin-bottom: 18px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.58);
}

/* ── CARD STRIP ─────────────────────────────────────────── */
.card-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: -8px 0 32px;
}
.card-pill {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 100px;
  letter-spacing: 0.01em;
}
.card-pill.amex    { background: #f0f4ff; color: #1a3adb; border: 1px solid #c7d4fc; }
.card-pill.chase   { background: #fff7e6; color: #b45309; border: 1px solid #fcd48a; }
.card-pill.avios   { background: #edf9f5; color: #047857; border: 1px solid #a7f3d0; }
.card-pill.virgin  { background: #fff0f5; color: #be123c; border: 1px solid #fecdd3; }
.card-pill.generic { background: var(--bg-alt); color: var(--muted); border: 1px solid var(--border); }

/* ── HERO CARD VISUAL ────────────────────────────────────── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cards-scene {
  position: relative;
  width: 360px;
  height: 480px;
  flex-shrink: 0;
}
.cards-scene::before {
  content: '';
  position: absolute;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  width: 340px; height: 340px;
  background: radial-gradient(ellipse, rgba(59,91,219,0.1) 0%, rgba(224,53,122,0.07) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Real card image wrappers */
.card-img-wrap {
  position: absolute;
  width: 272px;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.30), 0 6px 18px rgba(0,0,0,0.14);
  transition: box-shadow 0.4s ease;
  overflow: visible;
}
.cards-scene:hover .card-img-wrap { box-shadow: 0 32px 72px rgba(0,0,0,0.36), 0 10px 24px rgba(0,0,0,0.16); }
.card-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

/* Card positions — same layout as before */
.card-pos-amex  { top: 0px;   right: 0px;  z-index: 2; transform: rotate(9deg);   animation: cfloat-a 4.8s ease-in-out infinite 0.3s; }
.card-pos-chase { top: 100px; left: 0px;   z-index: 4; transform: rotate(-5deg);  animation: cfloat-b 4.0s ease-in-out infinite; }
.card-pos-avios { top: 240px; right: 10px; z-index: 3; transform: rotate(7deg);   animation: cfloat-c 5.2s ease-in-out infinite 1.4s; }
.card-pos-virgin{ top: 310px; left: 20px;  z-index: 2; transform: rotate(-12deg); animation: cfloat-d 4.5s ease-in-out infinite 0.8s; }

@keyframes cfloat-a { 0%,100% { transform: rotate(9deg)   translateY(0);    } 50% { transform: rotate(9deg)   translateY(-11px); } }
@keyframes cfloat-b { 0%,100% { transform: rotate(-5deg)  translateY(0);    } 50% { transform: rotate(-5deg)  translateY(-14px); } }
@keyframes cfloat-c { 0%,100% { transform: rotate(7deg)   translateY(0);    } 50% { transform: rotate(7deg)   translateY(-10px); } }
@keyframes cfloat-d { 0%,100% { transform: rotate(-12deg) translateY(0);    } 50% { transform: rotate(-12deg) translateY(-8px);  } }

/* Earn overlay badge on each card */
.card-earn-overlay {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(14,21,64,0.82);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  white-space: nowrap;
  letter-spacing: 0.01em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ── REWARDS GAP TABLE ───────────────────────────────────── */
.gap-table {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 16px;
}
.gap-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.gap-row:last-child { border-bottom: none; }
.gap-header {
  background: var(--bg-alt);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 12px 24px;
}
.gap-payment {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
}
.gap-amount { font-size: 13px; color: var(--muted); }
.badge-zero {
  display: inline-block;
  background: rgba(239,68,68,0.08);
  color: #dc2626;
  border: 1px solid rgba(239,68,68,0.2);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.badge-earn {
  display: inline-block;
  background: rgba(0,184,148,0.08);
  color: #059669;
  border: 1px solid rgba(0,184,148,0.25);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.gap-note {
  font-size: 11.5px;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */

/* Collapse hero to single column below 960px */
@media (max-width: 960px) {
  .hero-inner   { grid-template-columns: 1fr; gap: 0; }
  .hero-text    { text-align: center; }
  .hero-sub     { margin-left: auto; margin-right: auto; }
  .hero-trust   { justify-content: center; }
  .hero         { overflow: visible; padding-bottom: 48px; }
  .steps        { flex-direction: column; }
  .step-arrow   { display: none; }

  /* ── Card 2×2 grid ── */
  .hero-visual {
    display: block;
    width: 100%;
    padding-top: 0;
    margin-top: 36px;
  }
  .cards-scene {
    position: static;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0;
    overflow: visible;
  }
  .cards-scene::before { display: none; }
  .hero-visual .card-img-wrap {
    position: relative;
    top: auto; left: auto; right: auto; bottom: auto;
    width: 100%;
    transform: none;
    animation: none;
    z-index: auto;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18), 0 2px 6px rgba(0,0,0,0.1);
  }
  .hero-visual .card-pos-amex,
  .hero-visual .card-pos-chase,
  .hero-visual .card-pos-avios,
  .hero-visual .card-pos-virgin {
    transform: none;
    animation: none;
    top: auto; left: auto; right: auto; bottom: auto;
  }
  .card-earn-overlay { font-size: 9px; padding: 3px 7px; bottom: 6px; right: 6px; }
}

/* Tablet portrait */
@media (max-width: 768px) {
  .hero          { padding: 96px 5% 40px; }
  .section       { padding: 56px 5%; }
  .section-header { margin-bottom: 32px; }
  .numbers-grid  { grid-template-columns: repeat(2, 1fr); }
  .number-card:nth-child(2) { border-right: none; }
  .number-card:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.08); }
  .cta-inner     { padding: 48px 32px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

/* Large phone — form stacks, table simplifies */
@media (max-width: 640px) {
  .nav-cta       { padding: 9px 16px; font-size: 13px; }

  .hero          { padding: 84px 5% 36px; }
  .hero-eyebrow  { font-size: 11px; padding: 5px 12px; white-space: normal; text-align: center; line-height: 1.5; }
  .hero-sub      { font-size: 0.95rem; }

  /* Stack form inputs */
  .waitlist-fields  { flex-direction: column; }
  .waitlist-email,
  .waitlist-select  { flex: none; width: 100%; }

  .section       { padding: 48px 5%; }
  .section-header { margin-bottom: 24px; }

  /* Gap table — payment name + earn badge only */
  .gap-row       { grid-template-columns: 1fr auto; padding: 11px 16px; gap: 10px; align-items: center; }
  .gap-header    { display: none; }
  .gap-amount,
  .gap-before    { display: none; }
  .gap-after     { justify-self: end; }
  .badge-earn    { font-size: 11px; padding: 3px 9px; white-space: nowrap; }
  .gap-payment   { font-size: 13px; }

  .cta-inner     { padding: 40px 24px; border-radius: 22px; }
  .footer        { padding: 40px 5% 28px; }
}

/* Small phone */
@media (max-width: 480px) {
  .nav-beta      { display: none; }
  .nav-cta       { padding: 8px 14px; font-size: 12px; }

  .hero          { padding: 80px 5% 32px; }
  .hero-h1       { font-size: clamp(1.8rem, 8vw, 2.3rem); }
  .hero-sub      { font-size: 0.93rem; line-height: 1.65; margin-bottom: 28px; }
  .waitlist-btn  { font-size: 15px; padding: 15px; }

  .section       { padding: 40px 5%; }
  .section-h2    { font-size: clamp(1.5rem, 5.5vw, 1.85rem); }

  .use-case      { flex-direction: column; gap: 10px; padding: 18px; }
  .uc-icon       { width: 44px; height: 44px; }
  .uc-desc       { font-size: 0.85rem; }
  .uc-title      { font-size: 0.95rem; }

  .numbers-grid  { grid-template-columns: 1fr 1fr; }
  .number-card   { border-right: none !important; padding: 28px 14px; }
  .number-val    { font-size: 1.9rem; }
  .number-label  { font-size: 0.77rem; }

  .step          { padding: 22px 18px; }
  .step-title    { font-size: 0.95rem; }
  .step-desc     { font-size: 0.84rem; }

  .cta-inner     { padding: 36px 20px; border-radius: 18px; }
  .cta-h2        { font-size: clamp(1.5rem, 6vw, 2rem); }
  .cta-sub       { font-size: 0.88rem; }

  .footer-desc   { font-size: 13px; }
  .footer-legal  { font-size: 10.5px; }
  .footer-bottom { font-size: 11px; }

}

/* iPhone SE / very small screens */
@media (max-width: 380px) {
  .hero-h1       { font-size: 1.7rem; }
  .hero-eyebrow  { font-size: 10px; }
  .section-h2    { font-size: 1.4rem; }
  .number-val    { font-size: 1.7rem; }
  .cards-scene   { gap: 8px; }
}
