:root {
  color-scheme: light;
  --bg: #eef4ef;
  --bg-strong: #e5efe7;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-solid: rgba(255, 255, 255, 0.92);
  --surface-deep: rgba(20, 31, 25, 0.92);
  --text: #142019;
  --muted: #5d6b62;
  --muted-strong: #415047;
  --line: rgba(20, 32, 25, 0.08);
  --line-strong: rgba(20, 32, 25, 0.12);
  --accent: #2da56d;
  --accent-deep: #1f7f53;
  --accent-soft: rgba(45, 165, 109, 0.12);
  --shadow-hero: 0 28px 90px rgba(13, 20, 16, 0.08);
  --shadow-card: 0 16px 36px rgba(13, 20, 16, 0.05);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --space-1: 0.4rem;
  --space-2: 0.65rem;
  --space-3: 0.9rem;
  --space-4: 1.2rem;
  --space-5: 1.6rem;
  --space-6: 2.2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --container: 1160px;
  --text-h1: clamp(2.8rem, 8vw, 5.7rem);
  --text-h2: clamp(2rem, 4vw, 3.4rem);
  --text-h3: clamp(1.1rem, 1rem + 0.45vw, 1.45rem);
  --text-body: clamp(1rem, 0.94rem + 0.32vw, 1.16rem);
  --text-small: clamp(0.88rem, 0.84rem + 0.16vw, 0.96rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(122, 224, 164, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(182, 227, 204, 0.18), transparent 22%),
    linear-gradient(180deg, #f8fbf8 0%, var(--bg) 52%, #e9f0eb 100%);
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at center, black 34%, transparent 86%);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

.page {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  padding-bottom: var(--space-7);
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(22px);
  pointer-events: none;
  opacity: 0.72;
  animation: drift 14s ease-in-out infinite;
  z-index: 0;
}

.ambient-one {
  width: clamp(12rem, 28vw, 18rem);
  height: clamp(12rem, 28vw, 18rem);
  top: 1rem;
  left: -2rem;
  background: rgba(96, 200, 126, 0.2);
}

.ambient-two {
  width: clamp(13rem, 32vw, 22rem);
  height: clamp(13rem, 32vw, 22rem);
  top: 18rem;
  right: -4rem;
  background: rgba(157, 225, 197, 0.18);
}

.ambient-three {
  width: clamp(9rem, 20vw, 14rem);
  height: clamp(9rem, 20vw, 14rem);
  bottom: 5rem;
  left: 46%;
  background: rgba(97, 188, 126, 0.12);
}

.shell {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  position: relative;
  z-index: 1;
}

.topbar,
.hero,
.proof,
.apps,
.footer {
  animation: rise-in 650ms ease both;
}

.topbar {
  padding-top: clamp(1rem, 3vw, 1.5rem);
}

.topbar-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  width: clamp(3.8rem, 12vw, 5rem);
  height: auto;
  display: block;
  flex-shrink: 0;
}

.brand-note {
  display: none;
  font-size: 0.82rem;
  color: var(--muted-strong);
  letter-spacing: 0.02em;
}

.launch-pill,
.eyebrow,
.stage-label,
.stage-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.launch-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  max-width: 15.5rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(242, 249, 245, 0.92);
  border: 1px solid rgba(45, 165, 109, 0.14);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--accent-deep);
}

.launch-pill-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #5fd28c, var(--accent-deep));
  box-shadow: 0 0 0 5px rgba(45, 165, 109, 0.14);
  flex-shrink: 0;
}

.hero {
  padding-top: 1rem;
}

.hero-surface {
  display: grid;
  gap: var(--space-5);
  padding: clamp(1.3rem, 4vw, 2.25rem);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(246, 250, 247, 0.82)),
    linear-gradient(140deg, rgba(45, 165, 109, 0.1), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-hero);
  backdrop-filter: blur(16px);
}

.eyebrow,
.stage-label,
.stage-kicker {
  margin: 0 0 var(--space-3);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.hero-copy h1,
.section-heading h2,
.apps-copy h2,
.stage-card-primary h2 {
  margin: 0;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero-copy h1 {
  max-width: 9ch;
  font-size: var(--text-h1);
}

.lead,
.section-heading p,
.proof-card p,
.apps-copy p,
.stage-card p,
.timeline li span,
.waitlist-meta,
.form-message {
  color: var(--muted);
}

.lead {
  margin: var(--space-4) 0 0;
  max-width: 38rem;
  font-size: clamp(1.04rem, 0.98rem + 0.3vw, 1.22rem);
}

.waitlist-form {
  margin-top: var(--space-5);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.waitlist-row {
  display: grid;
  gap: 0.8rem;
}

input,
.button,
.store-badge {
  width: 100%;
  min-height: 3.55rem;
  border-radius: 18px;
  font: inherit;
}

input {
  appearance: none;
  padding: 0 1rem;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  box-shadow: inset 0 1px 3px rgba(20, 32, 25, 0.04);
}

input::placeholder {
  color: #7b877f;
}

.button,
.store-badge {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.25rem;
  border: 0;
  text-decoration: none;
  font-weight: 600;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
  cursor: pointer;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 18px 40px rgba(45, 165, 109, 0.22);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.button:hover,
.button:focus-visible,
.proof-card:hover,
.proof-card:focus-within,
.store-badge:hover,
.store-badge:focus-visible {
  transform: translateY(-1px);
}

.button:focus-visible,
input:focus-visible,
.store-badge:focus-visible,
.footer-link:focus-visible,
.brand:focus-visible,
.text-link:focus-visible {
  outline: 2px solid rgba(45, 165, 109, 0.32);
  outline-offset: 3px;
}

.waitlist-meta,
.form-message {
  margin: 0.8rem 0 0;
  font-size: var(--text-small);
}

.form-message {
  min-height: 1.5rem;
  color: var(--accent-deep);
}

.hero-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: var(--space-4);
}

.text-link {
  color: var(--accent-deep);
  font-size: var(--text-small);
  font-weight: 600;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--text);
}

.trust-strip {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin: var(--space-5) 0 0;
  padding: 0;
}

.trust-strip li {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.1rem;
  padding: 0.8rem 0.95rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.74);
  color: var(--muted-strong);
  font-size: var(--text-small);
  font-weight: 600;
}

.trust-icon,
.proof-icon {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--accent-deep);
}

.trust-icon {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  background: var(--accent-soft);
}

.trust-icon svg,
.proof-icon svg,
.store-icon svg {
  width: 1rem;
  height: 1rem;
}

.hero-stage {
  display: grid;
  gap: 1rem;
}

.stage-grid {
  display: grid;
  gap: 1rem;
}

.stage-card,
.timeline-card,
.proof-card,
.apps-surface {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-card);
}

.stage-card,
.timeline-card {
  padding: 1.2rem;
}

.stage-card-primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 246, 0.86)),
    linear-gradient(140deg, rgba(45, 165, 109, 0.1), rgba(255, 255, 255, 0));
  border-color: rgba(45, 165, 109, 0.12);
}

.stage-card-primary h2 {
  font-size: clamp(1.6rem, 1.3rem + 2vw, 2.5rem);
  max-width: 12ch;
}

.stage-card-primary p,
.stage-card h3,
.stage-card p,
.timeline {
  margin: 0.85rem 0 0;
}

.stage-card h3 {
  font-size: var(--text-h3);
  letter-spacing: -0.03em;
}

.timeline {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  padding: 0;
}

.timeline li {
  display: grid;
  gap: 0.15rem;
}

.timeline li strong {
  font-size: 0.95rem;
}

.proof {
  padding-top: var(--space-6);
}

.section-heading {
  max-width: 40rem;
}

.section-heading h2,
.apps-copy h2 {
  font-size: var(--text-h2);
}

.section-heading p,
.apps-copy p {
  margin: var(--space-3) 0 0;
}

.proof-grid {
  display: grid;
  gap: 1rem;
  margin-top: var(--space-5);
}

.proof-card {
  padding: 1.4rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.proof-card:hover,
.proof-card:focus-within {
  border-color: rgba(45, 165, 109, 0.14);
  box-shadow: 0 20px 40px rgba(13, 20, 16, 0.07);
}

.proof-icon {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 16px;
  background: rgba(244, 250, 246, 0.96);
}

.proof-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.proof-card h3 {
  margin: 1rem 0 0;
  font-size: var(--text-h3);
  letter-spacing: -0.03em;
}

.proof-card p {
  margin: 0.85rem 0 0;
}

.apps {
  padding-top: var(--space-6);
}

.apps-surface {
  display: grid;
  gap: var(--space-5);
  padding: clamp(1.3rem, 4vw, 2rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(244, 249, 245, 0.8)),
    linear-gradient(140deg, rgba(20, 31, 25, 0.04), rgba(255, 255, 255, 0));
}

.store-grid {
  display: grid;
  gap: 0.9rem;
}

.store-badge {
  justify-content: flex-start;
  gap: 0.85rem;
  padding-inline: 1rem;
  min-height: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(22, 33, 27, 0.96), rgba(15, 24, 19, 0.96));
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(13, 20, 16, 0.12);
  text-align: left;
  cursor: not-allowed;
}

.store-icon {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  flex-shrink: 0;
}

.store-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.store-copy small,
.store-state {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.62);
}

.store-copy strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.store-state {
  margin-left: auto;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
  padding-top: var(--space-6);
  color: var(--muted);
}

.footer p {
  margin: 0;
}

.footer-socials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  order: 3;
  width: 100%;
  padding-top: 0.25rem;
}

.social-link {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -10px 20px rgba(0, 0, 0, 0.14),
    0 14px 28px rgba(12, 18, 14, 0.16);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.social-link::before {
  content: "";
  position: absolute;
  inset: 0.18rem 0.28rem auto;
  height: 38%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.social-link svg {
  position: relative;
  z-index: 1;
  width: 1.15rem;
  height: 1.15rem;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -12px 24px rgba(0, 0, 0, 0.16),
    0 18px 32px rgba(12, 18, 14, 0.2);
  filter: saturate(1.08);
}

.social-link:focus-visible {
  outline: 2px solid rgba(45, 165, 109, 0.32);
  outline-offset: 3px;
}

.social-link-linkedin {
  background:
    linear-gradient(180deg, #4aa6ff 0%, #0a66c2 52%, #084d92 100%);
}

.social-link-facebook {
  background:
    linear-gradient(180deg, #4e7bf2 0%, #1877f2 54%, #1159b5 100%);
}

.social-link-instagram {
  background:
    radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 12%, #fd5949 42%, #d6249f 66%, #285aeb 100%);
}

.social-link-x {
  background:
    linear-gradient(180deg, #4b5f5a 0%, #15201b 48%, #0a0f0d 100%);
}

.footer-link {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--accent-deep);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translate(-50%, 1rem);
  width: min(calc(100% - 2rem), 28rem);
  padding: 0.95rem 1.1rem;
  border-radius: 18px;
  background: rgba(20, 31, 25, 0.94);
  color: #ffffff;
  box-shadow: 0 24px 48px rgba(13, 20, 16, 0.18);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  text-align: center;
  z-index: 10;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

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

@media (min-width: 640px) {
  .topbar-card {
    padding-inline: 1.15rem;
  }

  .brand-note {
    display: inline;
  }

  .hero-links {
    flex-direction: row;
    align-items: center;
  }

  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer {
    flex-wrap: nowrap;
  }

  .footer-socials {
    order: 0;
    width: auto;
    padding-top: 0;
  }
}

@media (min-width: 1024px) {
  .hero-surface {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    align-items: stretch;
    gap: var(--space-6);
  }

  .waitlist-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .waitlist-button,
  .button-secondary {
    width: auto;
    min-width: 12rem;
  }

  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .apps-surface {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
