/* HomeStart landing — calm fintech, mobile-first */

:root {
  --bg: #f3f6f5;
  --bg-muted: #e9eeec;
  --bg-surface: #f7f9f8;
  --surface: #ffffff;
  --text: #1c2834;
  --text-secondary: #4a5b6a;
  --text-muted: #6b7c8a;
  --border: #dce3e0;
  --brand: #1a8f84;
  --brand-hover: #15756c;
  --brand-ink: #2a6b62;
  --brand-soft: rgba(26, 143, 132, 0.14);
  --brand-soft-strong: rgba(26, 143, 132, 0.22);
  --accent: var(--brand);
  --accent-hover: var(--brand-hover);
  --ring: rgba(26, 143, 132, 0.28);
  --header-bg: rgba(243, 246, 245, 0.82);
  --success-bg: #ecfdf5;
  --success-text: #065f46;
  --error-bg: #fef2f2;
  --error-text: #991b1b;
  --radius: 18px;
  --radius-sm: 12px;
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-h: 64px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.5rem 1rem;
  background: var(--brand);
  color: #fff;
  z-index: 200;
  font-weight: 500;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease-out);
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
}

.header-inner {
  width: min(100% - 2rem, 1120px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  transition: opacity 0.15s;
}

.logo-lockup:hover {
  opacity: 0.8;
}

.logo-lockup__mark {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 0;
  box-shadow: none;
}

.logo-lockup__title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

@media (min-width: 768px) {
  .logo-lockup__title {
    font-size: 1.25rem;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover {
  color: var(--brand-ink);
}

/* Must beat `.nav-links a` (higher specificity) so label stays white on filled button */
.nav-links a.nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--brand);
  border: 1px solid var(--brand);
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
  box-shadow: 0 6px 20px -6px rgba(26, 143, 132, 0.55);
}

.nav-links a.nav-cta:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  color: #fff;
}

/* Sections */
.section {
  width: min(100% - 2rem, 1120px);
  margin: 0 auto;
  padding: 5.25rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 5.75rem 0;
  }
}

.section.section--band-muted,
.section.section--band-surface {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 5.25rem clamp(1rem, 4vw, 2rem);
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .section.section--band-muted,
  .section.section--band-surface {
    padding: 5.75rem clamp(1rem, 5vw, 2.5rem);
  }
}

.section.section--band-muted {
  background: var(--bg-muted);
}

.section.section--band-surface {
  background: var(--bg-surface);
}

.section.section--band-muted > *,
.section.section--band-surface > * {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.section--tight {
  padding: 3rem 0;
}

.section-header {
  margin-bottom: 3rem;
  max-width: 38rem;
}

.section-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-ink);
  margin: 0 0 0.75rem;
}

.section-intro--narrow {
  max-width: 32rem;
}

/* Hero */
.hero-shell {
  background:
    radial-gradient(ellipse 120% 70% at 50% -25%, rgba(26, 143, 132, 0.1), transparent 52%),
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(26, 143, 132, 0.04), transparent 45%),
    var(--bg);
  border-bottom: 1px solid rgba(28, 40, 52, 0.06);
}

.hero {
  padding-top: 1.75rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 2.5rem;
    padding-bottom: 4.5rem;
  }
}

.hero-main {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 42rem;
}

@media (min-width: 768px) {
  .hero-main {
    gap: 3rem;
    max-width: 46rem;
  }
}

.hero-hook {
  font-size: clamp(1.125rem, 2.6vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.32;
  margin: 0;
  padding: 1.2rem 1.4rem;
  border-left: 3px solid var(--brand);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text);
  box-shadow: 0 12px 40px -24px rgba(28, 40, 52, 0.2);
}

.hero-emotional {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.62;
  color: var(--text-secondary);
  max-width: 36rem;
}

.hero-copy {
  animation: fadeUp 0.7s var(--ease-out) both;
}

.hero-brand {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 0.6rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-brand {
    font-size: 1rem;
    margin-bottom: 0.65rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin: 0 0 1.25rem;
  padding: 0.4rem 0.75rem 0.4rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(28, 40, 52, 0.07);
  box-shadow: 0 1px 2px rgba(28, 40, 52, 0.04);
}

.hero-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
  flex-shrink: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: clamp(2.125rem, 5.5vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.06;
  margin: 0 0 1.25rem;
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 28rem;
  margin: 0 0 2rem;
  line-height: 1.62;
}

.hero-sub strong {
  color: var(--text);
  font-weight: 600;
}

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

@media (max-width: 599px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 19.5rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s var(--ease-out), background 0.15s, box-shadow 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--brand);
  color: #fff;
}
.btn--primary:hover {
  background: var(--brand-hover);
}

.btn--hero,
.btn--cta-solid {
  padding: 1rem 1.95rem;
  font-size: 1.0625rem;
  min-height: 54px;
  box-shadow: 0 12px 36px -10px rgba(26, 143, 132, 0.55);
}

.btn--hero:hover,
.btn--cta-solid:hover {
  box-shadow: 0 16px 44px -10px rgba(26, 143, 132, 0.58);
}

.btn--secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--secondary:hover {
  background: var(--surface);
  border-color: var(--brand-soft-strong);
  color: var(--brand-ink);
}

.hero-note {
  margin-top: 1.35rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  max-width: 26rem;
  line-height: 1.5;
}

.btn--lg {
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  min-height: 48px;
}

/* Product showcase (hero device + caption) */
.showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .showcase {
    align-items: flex-end;
    text-align: right;
  }
}

.showcase__device {
  width: 100%;
  display: flex;
  justify-content: center;
}

@media (min-width: 900px) {
  .showcase__device {
    justify-content: flex-end;
  }
}

.showcase__caption {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 20rem;
}

@media (min-width: 900px) {
  .showcase__caption {
    padding-right: 0.5rem;
  }
}

.showcase__explain {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-secondary);
  max-width: 22rem;
  text-align: center;
}

@media (min-width: 900px) {
  .showcase__explain {
    text-align: right;
    margin-left: auto;
    margin-right: 0;
  }
}

.section--preview .showcase__explain,
.app-showcase--hero .showcase__explain {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 26rem;
}

/* Problem framing (below hero) */
.section--insight {
  padding-top: 3.5rem;
  padding-bottom: 3.75rem;
}

@media (min-width: 768px) {
  .section--insight {
    padding-top: 4rem;
    padding-bottom: 4.25rem;
  }
}

.insight-inner {
  max-width: 38rem;
}

.section--insight .section-label {
  margin-bottom: 0.85rem;
}

.section--insight h2 {
  font-size: clamp(1.5rem, 3.2vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0 0 1.15rem;
}

.insight-lead {
  margin: 0 0 1.15rem;
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.62;
}

.insight-outro {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--text);
  line-height: 1.62;
}

.insight-outro strong {
  font-weight: 700;
}

.insight-outro em {
  font-style: normal;
  font-weight: 600;
  color: var(--text-secondary);
}

.insight-tight {
  margin: 0;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.62;
}

.insight-tight strong {
  color: var(--text);
  font-weight: 600;
}

/* Product preview — centerpiece */
.section--preview {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 5.5rem clamp(1rem, 4vw, 2rem) 6.25rem;
  box-sizing: border-box;
  background:
    radial-gradient(ellipse 95% 55% at 50% -5%, var(--brand-soft), transparent 58%),
    var(--bg);
}

.section--preview .preview-shell {
  max-width: 1120px;
  margin: 0 auto;
}

.preview-shell {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .preview-shell {
    gap: 3.25rem;
  }
}

.preview-header {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto;
}

.preview-tagline {
  font-size: clamp(1.375rem, 3vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 0.65rem;
}

.preview-sub {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.preview-stage {
  display: flex;
  justify-content: center;
  padding: 2.5rem 1.25rem 3rem;
  background: linear-gradient(165deg, var(--surface) 0%, var(--bg-surface) 100%);
  border-radius: calc(var(--radius) + 14px);
  border: 1px solid rgba(28, 40, 52, 0.07);
  box-shadow:
    0 44px 88px -40px rgba(28, 40, 52, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.92) inset;
}

@media (min-width: 768px) {
  .preview-stage {
    padding: 3.25rem 2.75rem 3.75rem;
  }
}

/* App screenshot preview (device frame + tabs) */
.app-showcase {
  margin: 0;
  width: 100%;
  max-width: 304px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fadeUp 0.8s var(--ease-out) 0.1s both;
}

.app-showcase--hero {
  max-width: 380px;
  gap: 1.35rem;
  animation: fadeUp 0.85s var(--ease-out) 0.05s both;
}

.mock-frame {
  margin: 0 auto;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 9 / 19;
  border-radius: 36px;
  padding: 10px;
  background: linear-gradient(155deg, #dfe8e6 0%, #eef2f1 55%, #fafafa 100%);
  box-shadow:
    0 32px 64px -24px rgba(28, 40, 52, 0.2),
    0 0 0 1px rgba(28, 40, 52, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.mock-frame--premium {
  max-width: 292px;
}

.mock-frame--stage {
  max-width: 340px;
  padding: 12px;
  border-radius: 40px;
  box-shadow:
    0 52px 100px -40px rgba(28, 40, 52, 0.32),
    0 0 0 1px rgba(28, 40, 52, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.mock-screen--photo {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  /* Light fill so rounded-rect clipping never shows dark wedges (screenshots are light UI). */
  background: #f5f5f7;
}

.app-preview-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.preview-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
}

.preview-tab {
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.85);
  color: var(--text-secondary);
  cursor: pointer;
  transition:
    background 0.15s var(--ease-out),
    color 0.15s,
    border-color 0.15s,
    box-shadow 0.15s;
}

.preview-tab:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

.preview-tab[aria-selected="true"] {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 6px 18px -6px rgba(26, 143, 132, 0.5);
}

.preview-tab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--ring), 0 6px 18px -6px rgba(26, 143, 132, 0.35);
}

/* Trust & product boundaries */
.section--trust {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}

@media (min-width: 768px) {
  .section--trust {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }
}

.trust-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.875rem;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.trust-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: 0 4px 20px -8px rgba(28, 40, 52, 0.08);
}

.trust-pill__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.trust-pill__text {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
}

.trust-pill__text a {
  color: var(--text);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.trust-pill__text a:hover {
  color: var(--brand-hover);
}

/* Features */
.features-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.65rem 1.5rem 1.75rem;
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), transform 0.2s var(--ease-out);
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), #3d9e94);
  opacity: 0;
  transition: opacity 0.25s;
}

.feature-card:hover {
  border-color: rgba(26, 143, 132, 0.22);
  box-shadow: 0 20px 44px -16px rgba(28, 40, 52, 0.14);
  transform: translateY(-2px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card--wide {
  grid-column: 1 / -1;
}

@media (min-width: 900px) {
  .feature-card--wide {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 2rem;
    align-items: start;
    padding: 1.65rem 2rem 1.75rem;
  }

  .feature-card--wide .feature-icon-wrap {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .feature-card--wide h3 {
    grid-column: 2;
    align-self: end;
    margin-bottom: 0.35rem;
  }

  .feature-card--wide p {
    grid-column: 2;
    max-width: 40rem;
  }
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, #f8fafc, #f1f5f9);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--text);
  transition: transform 0.2s var(--ease-out), border-color 0.2s;
}

.feature-card:hover .feature-icon-wrap {
  transform: scale(1.04);
  border-color: #cbd5e1;
}

.feature-icon-wrap--accent {
  background: linear-gradient(145deg, var(--brand-soft), rgba(26, 143, 132, 0.06));
  border-color: var(--brand-soft-strong);
  color: var(--brand-ink);
}

.feature-svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 0.55rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.feature-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.58;
}

/* Mid-page CTA */
.section--cta-mid {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background: var(--bg);
}

@media (min-width: 768px) {
  .section--cta-mid {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.cta-mid {
  width: min(100% - 2rem, 1120px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2.25rem 1.85rem;
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, var(--brand-soft) 48%, rgba(255, 255, 255, 0.95) 100%);
  border: 1px solid rgba(26, 143, 132, 0.14);
  box-shadow: 0 28px 56px -30px rgba(28, 40, 52, 0.18);
}

@media (min-width: 720px) {
  .cta-mid {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2.25rem 2.5rem;
    gap: 2rem;
  }
}

.cta-mid__copy {
  max-width: 32rem;
}

.cta-mid__copy h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cta-mid__copy p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.section--cta-mid .btn {
  flex-shrink: 0;
}

/* Steps */
.steps {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.step {
  position: relative;
  padding-top: 0.5rem;
}

.step-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-ink);
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.step h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.step p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Waitlist */
.waitlist {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem 1.75rem;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  box-shadow:
    0 32px 64px -36px rgba(28, 40, 52, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset;
}

.waitlist--premium {
  max-width: 540px;
  box-shadow:
    0 36px 72px -36px rgba(28, 40, 52, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset;
}

@media (min-width: 640px) {
  .waitlist {
    padding: 3rem 2.5rem;
  }
}

.waitlist__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--border);
}

.waitlist h2 {
  font-size: clamp(1.5rem, 3vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 0.75rem;
}

.waitlist__lead {
  margin: 0 0 1.35rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.58;
}

.waitlist__bullets {
  list-style: none;
  margin: 0 0 1.85rem;
  padding: 0;
  text-align: left;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}

.waitlist__bullets li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-bottom: 0.5rem;
}

.waitlist__bullets li:last-child {
  margin-bottom: 0;
}

.waitlist__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #4cb0a5);
}

.waitlist__fineprint {
  margin: 1.25rem 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 26rem;
  margin-left: auto;
  margin-right: auto;
}

.waitlist__fineprint a {
  color: var(--text-secondary);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.waitlist__fineprint a:hover {
  color: var(--text);
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .waitlist-form {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .waitlist-form .field-wrap {
    flex: 1;
    min-width: 200px;
  }
}

.field-wrap {
  text-align: left;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.waitlist-form input[type="email"] {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.waitlist-form input[type="email"]:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--ring);
}

.waitlist-form input[type="email"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn--submit {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  min-height: 48px;
}

.btn--submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.waitlist-status {
  margin-top: 1rem;
  min-height: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.waitlist-status[data-state="success"] {
  color: var(--success-text);
}

.waitlist-status[data-state="error"] {
  color: var(--error-text);
}

.waitlist-status[aria-live="polite"]:empty {
  min-height: 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2.25rem;
  margin-top: 1rem;
}

.footer-inner {
  width: min(100% - 2rem, 1120px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
    align-items: flex-start;
  }
}

.footer-brand {
  font-weight: 600;
  font-size: 0.9375rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

@media (min-width: 640px) {
  .footer-links {
    justify-content: flex-end;
  }
}

.footer-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--brand-ink);
}

.footer-meta {
  width: 100%;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

@media (min-width: 640px) {
  .footer-meta {
    width: auto;
    margin-left: auto;
  }
}

.section h2 {
  font-size: clamp(1.625rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.section-header h2 {
  margin-bottom: 0.65rem;
}

.section-intro {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 36rem;
  margin: 0 0 2.5rem;
  line-height: 1.55;
}

.section--how .section-header {
  margin-bottom: 2.25rem;
}

/* Audience positioning — first-time buyers (no press / logos) */
.section--audience .section-label {
  text-align: center;
}

.audience-inner {
  max-width: 34rem;
  margin: 0 auto;
  text-align: center;
}

.section--audience h2 {
  margin-bottom: 1rem;
}

.audience-lead {
  margin: 0 0 0.65rem;
  font-size: clamp(1.0625rem, 2.2vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.audience-outro {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--text);
  line-height: 1.55;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section--waitlist {
  padding-top: 4.25rem;
  padding-bottom: 5.5rem;
}

@media (min-width: 768px) {
  .section--waitlist {
    padding-top: 5rem;
    padding-bottom: 6rem;
  }
}
