:root {
  --ink: #1f2a47;
  --ink-deep: #161f3d;
  --ink-mid: #273252;
  --gold: #ffc83e;
  --white: #ffffff;
  --black: #000000;
  --muted: #919bb8;
  --muted-bright: #b7c3e5;
  --muted-soft: #dde6ff;
  --blue: #6785d1;
  --blue-bright: #9ab0ed;
  --green: #21d553;
  --green-bright: #8ff2ae;
  --danger: #ff3e3e;
  --surface: rgba(255, 255, 255, 0.09);
  --surface-strong: rgba(255, 255, 255, 0.14);
  --surface-dark: rgba(11, 17, 32, 0.52);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.15);
  --shadow-soft: 0 24px 60px rgba(4, 11, 25, 0.3);
  --shadow-large: 0 34px 90px rgba(5, 12, 28, 0.34);
  --shadow-glow: 0 18px 30px rgba(255, 200, 62, 0.28);
  --font-body: "Manrope", system-ui, sans-serif;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --radius-surface: 28px;
  --radius-pill: 999px;
  --page-padding: 18px;
  --section-gap: 88px;
  --container: 1360px;
  color-scheme: dark;
}

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

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--white);
  background-color: var(--ink);
  background-image:
    radial-gradient(circle at 92% 4%, rgba(255, 200, 62, 0.34), transparent 16%),
    radial-gradient(circle at 10% 18%, rgba(103, 133, 209, 0.28), transparent 16%),
    radial-gradient(circle at 74% 78%, rgba(103, 133, 209, 0.18), transparent 14%),
    linear-gradient(180deg, #303a60 0%, #273252 45%, #1f2a47 70%, #161f3d 100%);
  line-height: 1.5;
}

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

button,
input {
  font: inherit;
}

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

p,
h1,
h2,
h3,
ol,
ul {
  margin: 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;
}

.page-shell {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: var(--page-padding) var(--page-padding) 28px;
  isolation: isolate;
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 118px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent 45%);
  mask-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
  opacity: 0.75;
  z-index: -1;
}

.site-header,
.site-main,
.site-footer {
  max-width: var(--container);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand__mark,
.site-footer__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 200, 62, 0.95), rgba(255, 234, 176, 0.95));
  box-shadow: 0 16px 36px rgba(255, 200, 62, 0.18);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.brand__tagline {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}

.brand__tagline--desktop,
.status-pill__text--desktop,
.floating-card__note--desktop,
.floating-card__subtle--desktop,
.mini-card__title--desktop,
.mini-card__text--desktop,
.teaser-highlight__copy--desktop,
.teaser-detail__eyebrow--desktop,
.teaser-detail__copy--desktop {
  display: none;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.status-pill__dot,
.signal-pill__dot,
.eyebrow-pill__dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: var(--radius-pill);
}

.status-pill__dot,
.signal-pill__dot--green {
  background: var(--green);
}

.eyebrow-pill__dot--gold,
.signal-pill__dot--gold {
  background: var(--gold);
}

.signal-pill__dot--blue {
  background: var(--blue);
}

.site-main {
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
  padding-top: 30px;
}

.section {
  position: relative;
}

.hero {
  display: grid;
  gap: 28px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 50px rgba(5, 12, 28, 0.18);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.hero__title,
.section-title,
.feature-card__title,
.teaser-copy__title,
.trust-card__title,
.floating-card__value,
.mini-card__title,
.phone-screen__title,
.screen-metric__value,
.teaser-highlight__metric,
.teaser-detail__metric,
.teaser-upcoming__day {
  font-family: var(--font-display);
  letter-spacing: -0.05em;
}

.hero__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: clamp(46px, 13vw, 80px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero__title-accent {
  color: var(--gold);
}

.hero__copy {
  max-width: 36ch;
  color: var(--muted-soft);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.56;
  letter-spacing: -0.02em;
}

.capture-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 560px;
}

.capture-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.capture-form__shell {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: rgba(11, 17, 32, 0.58);
  box-shadow: 0 30px 80px rgba(5, 12, 28, 0.32);
  backdrop-filter: blur(10px);
}

.capture-form__input {
  width: 100%;
  min-height: 54px;
  padding-inline: 18px;
  border: 1px solid transparent;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
}

.capture-form__input::placeholder {
  color: var(--muted);
}

.capture-form__input:focus-visible {
  outline: none;
  border-color: rgba(255, 200, 62, 0.58);
  box-shadow: 0 0 0 3px rgba(255, 200, 62, 0.16);
}

.capture-form__input[readonly] {
  color: var(--muted-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding-inline: 24px;
  border: 0;
  border-radius: 18px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    opacity 180ms ease;
}

.button--primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: var(--shadow-glow);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 34px rgba(255, 200, 62, 0.34);
}

.button:focus-visible {
  outline: 3px solid rgba(255, 200, 62, 0.26);
  outline-offset: 2px;
}

.button:disabled {
  cursor: default;
  opacity: 0.94;
  transform: none;
}

.capture-block__note,
.capture-form__status {
  color: var(--muted-bright);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.capture-form__status {
  color: var(--green-bright);
}

.signal-list,
.teaser-status-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.signal-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  min-height: 42px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
  padding-block: 8px;
}

.hero__glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero__glow--gold {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 200, 62, 0.18) 0%, rgba(255, 200, 62, 0) 70%);
}

.hero__glow--blue {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(103, 133, 209, 0.16) 0%, rgba(103, 133, 209, 0) 72%);
}

.phone-frame {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 100%);
  box-shadow: 0 38px 90px rgba(4, 11, 25, 0.42);
}

.phone-frame--hero {
  width: 286px;
  padding: 12px;
  border-radius: 38px;
}

.hero-preview {
  position: relative;
  overflow: clip;
  width: 100%;
  aspect-ratio: 431 / 900;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: #232b4c;
}

.hero-preview__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: inherit;
}

.phone-frame--teaser {
  width: 100%;
  max-width: 320px;
  padding: 12px;
  border-radius: 24px;
}

.phone-screen {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 546px;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(21, 29, 55, 0.98) 0%, rgba(28, 37, 67, 0.98) 100%);
}

.phone-screen--teaser {
  min-height: auto;
}

.phone-screen__header,
.teaser-screen__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.phone-screen__stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.phone-screen__eyebrow,
.floating-card__eyebrow,
.mini-card__eyebrow,
.teaser-detail__eyebrow,
.teaser-upcoming__title,
.screen-metric__caption,
.rhythm-card__label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone-screen__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.05;
}

.phone-screen__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 18px;
  background: rgba(255, 200, 62, 0.16);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
}

.rhythm-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(103, 133, 209, 0.22) 0%, rgba(103, 133, 209, 0.08) 100%);
}

.rhythm-card__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.rhythm-card__score {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.rhythm-card__trend {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.rhythm-card__pill,
.teaser-screen__health {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: rgba(33, 213, 83, 0.12);
  color: #b4f2c6;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.rhythm-card__caption {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
}

.progress-track {
  overflow: hidden;
  width: 100%;
  height: 8px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
}

.progress-track--compact {
  flex: 1;
}

.progress-track__fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 200, 62, 0.92) 0%, rgba(255, 234, 176, 0.92) 100%);
}

.progress-track__fill--wide {
  width: 78%;
}

.progress-track__fill--goal {
  width: 74%;
}

.screen-metrics {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.screen-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.screen-metric__title,
.floating-card__label,
.teaser-status-row span,
.teaser-detail__copy,
.teaser-highlight__copy {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.screen-metric__caption {
  margin-top: 3px;
  letter-spacing: normal;
  text-transform: none;
  font-size: 11px;
  font-weight: 600;
}

.screen-metric__value {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.screen-metric__value--gold {
  color: var(--gold);
}

.screen-metric__bars {
  display: flex;
  align-items: center;
  gap: 8px;
}

.screen-metric__bar {
  height: 10px;
  border-radius: var(--radius-pill);
}

.screen-metric__bar--blue {
  width: 30px;
  background: var(--blue);
}

.screen-metric__bar--gold {
  width: 18px;
  background: var(--gold);
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.floating-card__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.floating-card__value {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.floating-card__value--small {
  font-size: 22px;
  line-height: 1;
}

.floating-card__note,
.floating-card__subtle,
.mini-card__text,
.teaser-upcoming__copy,
.trust-card__copy,
.feature-card__copy,
.section-copy,
.teaser-copy__text,
.teaser-detail__copy,
.teaser-highlight__copy {
  color: var(--muted-bright);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.floating-card__subtle {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
}

.floating-card--win {
  top: 32px;
  left: 0;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  background: rgba(9, 14, 28, 0.64);
}

.floating-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 14px;
  background: rgba(255, 200, 62, 0.16);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.floating-card--streak {
  right: 0;
  bottom: 46px;
}

.floating-card__bars--mobile {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 38px;
}

.floating-card--graph {
  display: none;
}

.mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 38px;
}

.mini-bars--card {
  height: 42px;
}

.mini-bars__bar {
  width: 10px;
  border-radius: 999px 999px 4px 4px;
  background: var(--blue);
}

.mini-bars__bar--gold {
  background: var(--gold);
}

.mini-bars__bar--short {
  height: 16px;
}

.mini-bars__bar--medium {
  height: 24px;
}

.mini-bars__bar--tall {
  height: 32px;
}

.mini-bars__bar--highest {
  height: 40px;
}

.mini-bars__bar--desktop {
  display: none;
}

.section-intro,
.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section-kicker,
.trust-card__kicker,
.final-cta__badge {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-title {
  max-width: 13ch;
  font-size: clamp(34px, 8vw, 56px);
  font-weight: 700;
  line-height: 0.96;
}

.section-copy {
  max-width: 38ch;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
}

.why {
  display: grid;
  gap: 24px;
}

.why-grid {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.feature-card,
.trust-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.05) 100%);
  box-shadow: 0 22px 50px rgba(5, 12, 28, 0.16);
  transition: transform 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.trust-card:hover,
.mini-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.feature-card__badge--gold {
  background: rgba(255, 200, 62, 0.14);
  color: var(--gold);
}

.feature-card__badge--blue {
  background: rgba(103, 133, 209, 0.16);
  color: var(--blue-bright);
}

.feature-card__badge--neutral {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.feature-card__badge--green {
  background: rgba(33, 213, 83, 0.14);
  color: var(--green-bright);
}

.feature-card__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.08;
}

.teaser {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.teaser-surface,
.final-cta__surface {
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(103, 133, 209, 0.08) 42%,
    rgba(255, 200, 62, 0.06) 100%
  );
  box-shadow: var(--shadow-large);
}

.teaser-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.teaser-copy__intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.teaser-copy__title {
  max-width: 14ch;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.07;
}

.teaser-copy__text {
  max-width: 34ch;
}

.teaser-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(11, 17, 32, 0.44);
}

.teaser-status-row__value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.teaser-status-row__value--gold {
  color: var(--gold);
}

.teaser-status-row__value--blue {
  color: var(--blue-bright);
}

.teaser-status-row__value--green {
  color: var(--green-bright);
}

.teaser-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.teaser-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mini-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.mini-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.mini-card__progress-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-card__metric {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
}

.mini-card__text {
  font-size: 12px;
  line-height: 1.5;
}

.teaser-highlight {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 200, 62, 0.18) 0%, rgba(103, 133, 209, 0.18) 100%);
}

.teaser-highlight__metric {
  font-size: 38px;
  font-weight: 700;
  line-height: 0.9;
}

.teaser-highlight__copy,
.teaser-detail__copy,
.teaser-upcoming__copy {
  font-size: 13px;
  line-height: 1.55;
}

.teaser-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.teaser-detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.teaser-detail__metric {
  font-size: 26px;
  font-weight: 700;
  line-height: 0.95;
}

.teaser-upcoming {
  display: none;
}

.trust {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trust-grid {
  display: grid;
  gap: 12px;
}

.trust-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-card__kicker--blue {
  color: var(--blue-bright);
}

.trust-card__kicker--green {
  color: var(--green-bright);
}

.trust-card__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.08;
}

.trust-card--privacy {
  order: 1;
}

.trust-card--launch {
  order: 2;
}

.trust-card--support {
  order: 3;
}

.final-cta__surface {
  gap: 18px;
}

.final-cta__copy,
.final-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.final-cta__shortcut-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.final-cta__shortcut-shell {
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(11, 17, 32, 0.52);
  box-shadow: 0 20px 56px rgba(5, 12, 28, 0.24);
}

.final-cta__shortcut-form .button {
  width: 100%;
}

.final-cta__shortcut-input {
  min-height: 54px;
  background: rgba(255, 255, 255, 0.06);
}

.final-cta__badge {
  display: inline-flex;
  align-self: flex-start;
  min-height: 30px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: var(--gold);
  color: var(--ink);
  letter-spacing: 0.14em;
}

.final-cta__title {
  max-width: 11ch;
}

.final-cta__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.signal-pill--meta {
  align-self: flex-start;
  background: rgba(11, 17, 32, 0.3);
}

.final-cta__meta-note {
  display: none;
  color: var(--muted-soft);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px 0 0;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-footer__mark {
  width: 32px;
  height: 32px;
  border-radius: 14px;
  background: rgba(255, 200, 62, 0.18);
  color: var(--gold);
  box-shadow: none;
}

.site-footer__name {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer__pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted-bright);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.waitlist-form--loading .capture-form__shell {
  border-color: rgba(255, 200, 62, 0.24);
}

.waitlist-form--loading .capture-form__input {
  opacity: 0.8;
}

.waitlist-form--loading .button--primary {
  box-shadow: none;
  transform: none;
}

.waitlist-form--error .capture-form__status {
  color: #ff9b9b;
}

.waitlist-form--submitted .capture-form__shell {
  border-color: rgba(33, 213, 83, 0.28);
  box-shadow: 0 30px 80px rgba(5, 12, 28, 0.24);
}

.waitlist-form--submitted .button--primary {
  background: linear-gradient(135deg, rgba(33, 213, 83, 0.92), rgba(143, 242, 174, 0.92));
  color: var(--ink);
  box-shadow: 0 18px 28px rgba(33, 213, 83, 0.22);
}

.waitlist-form--submitted .capture-form__input {
  border-color: rgba(33, 213, 83, 0.26);
}

.oauth-body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.oauth-page {
  width: min(100%, 520px);
  padding: 24px;
}

.oauth-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 32px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(103, 133, 209, 0.06));
  text-align: center;
  box-shadow: var(--shadow-large);
}

.oauth-card__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 200, 62, 0.96), rgba(255, 234, 176, 0.96));
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}

.oauth-card__title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.oauth-card__copy {
  max-width: 24ch;
  color: var(--muted-soft);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.oauth-card__link {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

@media (min-width: 720px) {
  .capture-form__shell {
    flex-direction: row;
    align-items: center;
  }

  .capture-form__input {
    min-width: 0;
    flex: 1;
  }

  .button {
    min-width: max-content;
  }

  .signal-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
  }

  .site-footer {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }

  .final-cta__meta-note {
    display: block;
  }

  .final-cta__shortcut-shell {
    align-items: center;
  }

  .final-cta__shortcut-form .button {
    width: auto;
  }
}

@media (min-width: 960px) {
  :root {
    --page-padding: 40px;
    --section-gap: 120px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
    border-radius: 16px;
    font-size: 18px;
  }

  .brand__name {
    font-size: 18px;
  }

  .brand__tagline--desktop,
  .status-pill__text--desktop,
  .floating-card__note--desktop,
  .floating-card__subtle--desktop,
  .mini-card__title--desktop,
  .mini-card__text--desktop,
  .teaser-highlight__copy--desktop,
  .teaser-detail__eyebrow--desktop,
  .teaser-detail__copy--desktop {
    display: block;
  }

  .brand__tagline--mobile,
  .status-pill__text--mobile,
  .floating-card__note--mobile,
  .floating-card__subtle--mobile,
  .mini-card__title--mobile,
  .mini-card__text--mobile,
  .teaser-highlight__copy--mobile,
  .teaser-detail__eyebrow--mobile {
    display: none;
  }

  .status-pill {
    gap: 10px;
    min-height: 44px;
    padding: 12px 16px;
    font-size: 14px;
  }

  .site-main {
    padding-top: 44px;
  }

  .hero {
    grid-template-columns: minmax(0, 640px) minmax(0, 620px);
    gap: 56px;
    align-items: start;
  }

  .hero__content {
    gap: 28px;
    padding-top: 28px;
  }

  .hero__copy {
    font-size: 22px;
    line-height: 1.55;
  }

  .capture-block__note,
  .capture-form__status {
    font-size: 15px;
    line-height: 1.6;
  }

  .capture-form__shell {
    padding: 14px;
    border-radius: 28px;
  }

  .capture-form__input {
    min-height: 58px;
    border-radius: 20px;
    font-size: 18px;
  }

  .button {
    min-height: 58px;
    padding-inline: 28px;
    border-radius: 20px;
    font-size: 18px;
  }

  .hero__visual {
    min-height: 780px;
  }

  .hero__glow--gold {
    width: 540px;
    height: 540px;
  }

  .hero__glow--blue {
    width: 680px;
    height: 680px;
  }

  .phone-frame--hero {
    width: 388px;
    padding: 14px;
    border-radius: 46px;
    box-shadow: 0 46px 110px rgba(4, 11, 25, 0.42);
  }

  .hero-preview {
    border-radius: 34px;
  }

  .phone-screen {
    min-height: 732px;
    gap: 18px;
    padding: 26px;
    border-radius: 34px;
  }

  .phone-screen__title {
    font-size: 24px;
  }

  .phone-screen__mark {
    width: 54px;
    height: 54px;
    border-radius: 22px;
    font-size: 18px;
  }

  .phone-screen__eyebrow,
  .floating-card__eyebrow,
  .mini-card__eyebrow,
  .teaser-detail__eyebrow,
  .teaser-upcoming__title,
  .screen-metric__caption,
  .rhythm-card__label {
    font-size: 12px;
  }

  .rhythm-card {
    gap: 14px;
    padding: 22px;
    border-radius: 30px;
  }

  .rhythm-card__score {
    font-size: 72px;
  }

  .rhythm-card__pill,
  .teaser-screen__health {
    min-height: 32px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .screen-metric {
    padding: 18px;
    border-radius: 24px;
  }

  .screen-metric__title {
    font-size: 15px;
  }

  .screen-metric__caption {
    font-size: 13px;
  }

  .screen-metric__value {
    font-size: 28px;
  }

  .screen-metric__bar--blue {
    width: 44px;
  }

  .screen-metric__bar--gold {
    width: 22px;
  }

  .floating-card {
    padding: 18px 20px;
    border-radius: 26px;
  }

  .floating-card__value {
    font-size: 34px;
  }

  .floating-card__value--small {
    font-size: 22px;
  }

  .floating-card__note,
  .floating-card__subtle,
  .mini-card__text,
  .teaser-upcoming__copy,
  .trust-card__copy,
  .feature-card__copy,
  .section-copy,
  .teaser-copy__text,
  .teaser-detail__copy,
  .teaser-highlight__copy {
    font-size: 16px;
  }

  .floating-card__subtle {
    font-size: 12px;
  }

  .floating-card--win {
    top: 34px;
    right: 24px;
    left: auto;
    gap: 12px;
  }

  .floating-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 16px;
    font-size: 16px;
  }

  .floating-card--streak {
    top: 302px;
    right: auto;
    bottom: auto;
    left: 10px;
  }

  .floating-card__bars--mobile {
    display: none;
  }

  .floating-card--graph {
    right: 18px;
    bottom: 86px;
    display: flex;
  }

  .mini-bars {
    gap: 8px;
    height: 54px;
  }

  .mini-bars--card {
    height: 56px;
  }

  .mini-bars__bar {
    width: 14px;
  }

  .mini-bars__bar--short {
    height: 22px;
  }

  .mini-bars__bar--medium {
    height: 30px;
  }

  .mini-bars__bar--tall {
    height: 40px;
  }

  .mini-bars__bar--highest {
    height: 48px;
  }

  .mini-bars__bar--desktop {
    display: block;
  }

  .section-head--split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    align-items: end;
    column-gap: 30px;
  }

  .section-title {
    font-size: clamp(50px, 5vw, 56px);
  }

  .why {
    grid-template-columns: 360px minmax(0, 720px);
    gap: 48px;
    align-items: start;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .feature-card {
    min-height: 194px;
    gap: 18px;
    padding: 26px;
    border-radius: 28px;
  }

  .feature-card__badge {
    width: 46px;
    height: 46px;
    border-radius: 18px;
    font-size: 18px;
  }

  .feature-card__title {
    font-size: 28px;
  }

  .teaser {
    gap: 32px;
  }

  .teaser-surface,
  .final-cta__surface {
    padding: 34px;
    border-radius: 36px;
  }

  .teaser-surface {
    grid-template-columns: 388px minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
  }

  .teaser-copy {
    gap: 24px;
  }

  .teaser-copy__title {
    font-size: 42px;
    line-height: 1.05;
  }

  .teaser-status-row {
    padding: 16px 18px;
    border-radius: 22px;
  }

  .teaser-status-row span {
    font-size: 15px;
  }

  .teaser-status-row__value {
    font-size: 24px;
  }

  .teaser-visual {
    display: grid;
    grid-template-columns: 240px minmax(0, 340px);
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .teaser-metrics {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .mini-card {
    padding: 20px;
    border-radius: 26px;
  }

  .mini-card__title {
    font-size: 28px;
  }

  .mini-card__metric {
    font-size: 24px;
  }

  .phone-frame--teaser {
    max-width: 340px;
    padding: 12px;
    border-radius: 42px;
  }

  .phone-screen--teaser {
    gap: 14px;
    padding: 22px;
    border-radius: 30px;
  }

  .teaser-highlight {
    padding: 20px;
    border-radius: 26px;
  }

  .teaser-highlight__metric {
    font-size: 54px;
  }

  .teaser-detail {
    padding: 18px;
    border-radius: 22px;
  }

  .teaser-detail__metric {
    font-size: 34px;
  }

  .teaser-upcoming {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
  }

  .teaser-upcoming__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .teaser-upcoming__title {
    color: var(--white);
    letter-spacing: normal;
    text-transform: none;
    font-size: 15px;
  }

  .teaser-upcoming__day {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
  }

  .trust {
    gap: 28px;
  }

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

  .trust-card {
    min-height: 178px;
    padding: 24px;
    border-radius: 28px;
    gap: 14px;
  }

  .trust-card__title {
    font-size: 30px;
  }

  .trust-card--support {
    order: 2;
  }

  .trust-card--launch {
    order: 3;
  }

  .final-cta__surface {
    grid-template-columns: 470px minmax(0, 500px);
    justify-content: space-between;
    align-items: center;
    gap: 28px;
  }

  .final-cta__copy,
  .final-cta__actions {
    gap: 14px;
  }

  .final-cta__shortcut-shell {
    padding: 8px;
    border-radius: 24px;
  }

  .final-cta__badge {
    min-height: 32px;
  }

  .oauth-page {
    padding: 40px;
  }

  .oauth-card {
    padding: 42px 36px;
  }

}

@media (prefers-reduced-motion: no-preference) {
  .hero__content > * {
    animation: rise-in 700ms ease both;
  }

  .hero__content > :nth-child(2) {
    animation-delay: 70ms;
  }

  .hero__content > :nth-child(3) {
    animation-delay: 120ms;
  }

  .hero__content > :nth-child(4) {
    animation-delay: 180ms;
  }

  .hero__content > :nth-child(5) {
    animation-delay: 240ms;
  }

  .hero__visual {
    animation: float-in 900ms ease both;
    animation-delay: 140ms;
  }
}

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

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

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

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