@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700;800;900&display=swap");

:root {
  --color-ink: #121212;
  --color-ink-muted: rgba(18, 18, 18, 0.68);
  --color-white: #ffffff;
  --color-cream-top: #fbf7f4;
  --color-cream-bottom: #efe3dc;
  --color-circle: #efac65;
  --color-circle-soft: #f4c89e;
  --color-border: rgba(18, 18, 18, 0.14);
  --color-focus: #1d4ed8;
  --shadow-pill: 0 10px 22px rgba(18, 18, 18, 0.22);
  --font-body: "Rubik", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --site-pad: clamp(1.5rem, 5vw, 4.75rem);
  --header-height: 90px;
  --content-width: 1180px;
  --legal-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--color-ink);
  background: linear-gradient(180deg, var(--color-cream-top) 0%, var(--color-cream-bottom) 100%);
  font-family: var(--font-body);
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--color-cream-top) 0%, var(--color-cream-bottom) 100%);
}

::selection {
  background: var(--color-ink);
  color: var(--color-cream-top);
}

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

a {
  color: inherit;
  text-underline-offset: 0.16em;
}

a:hover {
  text-decoration-thickness: 0.14em;
}

a.primary-button,
a.secondary-button,
a.text-link {
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-140%);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--color-ink);
  color: var(--color-white);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: transparent;
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.site-header__inner,
.site-footer__inner {
  width: min(100%, var(--content-width));
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--site-pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.site-header__brand {
  justify-self: start;
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-ink);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header__brand-text {
  font-size: clamp(0.82rem, 1.4vw, 0.96rem);
}

.site-header__cta {
  justify-self: end;
  grid-column: 3;
}

.site-footer__cta {
  justify-self: end;
}

.site-footer {
  margin-top: auto;
  min-height: var(--header-height);
  padding-top: 1.15rem;
  background: transparent;
}

.site-footer__identity {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.site-footer__links {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem;
  font-weight: 800;
}

.site-footer__links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-footer__links a:hover {
  text-decoration: underline;
}

.site-footer__links a + a::before {
  content: "I";
  position: absolute;
  left: -0.9rem;
  color: var(--color-ink);
  font-weight: 800;
  text-decoration: none;
  pointer-events: none;
}

.site-footer__copyright {
  margin: 0;
  font-size: 0.95rem;
  white-space: nowrap;
}

.primary-button {
  min-height: 48px;
  padding: 0.95rem 1.35rem;
  border: 0;
  border-radius: 16px;
  background: #2a2a2a;
  color: var(--color-white);
  box-shadow: var(--shadow-pill);
  font: 900 0.94rem/1 var(--font-body);
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

button.primary-button {
  cursor: default;
}

a.primary-button {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.secondary-button {
  min-height: 48px;
  padding: 0.95rem 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(18, 18, 18, 0.18);
  border-radius: 16px;
  background: transparent;
  color: var(--color-ink);
  font: 900 0.94rem/1 var(--font-body);
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mascot-logo,
.footer-mascot {
  --face-x: 0px;
  --face-y: 0px;
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
}

.footer-mascot {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

.mascot-logo__head,
.mascot-logo__face {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.mascot-logo__head {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mascot-logo__face {
  top: 51%;
  left: 51%;
  width: 43%;
  height: 43%;
  object-fit: contain;
  transform: translate(calc(-50% + var(--face-x)), calc(-50% + var(--face-y)));
  transition: transform 120ms ease-out;
}

.hero {
  position: relative;
  min-height: 430px;
  padding: calc(var(--header-height) + 7.6rem) var(--site-pad) 0;
  overflow: hidden;
  display: grid;
  place-items: start center;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -720px;
  left: 50%;
  width: min(1900px, 148vw);
  height: 1110px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--color-circle);
}

.hero__title {
  max-width: min(980px, 100%);
  margin: 0;
  color: var(--color-white);
  font-size: clamp(3rem, 7vw, 5.3rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  -webkit-text-stroke: 2px var(--color-ink);
  text-shadow:
    0 2px 0 var(--color-ink),
    0 4px 0 var(--color-ink);
}

.main {
  flex: 1;
}

.legal-shell,
.home-shell {
  width: min(100%, var(--legal-width));
  margin: 0 auto;
  padding: 0 var(--site-pad) 7rem;
}

.last-updated {
  margin: 0 0 2.3rem;
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.document-meta {
  margin: 0 0 1.4rem;
  font-size: 1rem;
  line-height: 1.25;
}

.document-meta a {
  font-weight: 500;
}

.legal-content {
  font-size: clamp(1rem, 1.5vw, 1.08rem);
}

.legal-content h2 {
  margin: 1.45rem 0 0.7rem;
  font-size: clamp(1.55rem, 2.4vw, 1.95rem);
  font-weight: 900;
  line-height: 1.15;
}

.legal-content h3 {
  margin: 1.1rem 0 0.45rem;
  font-size: 1.12rem;
  font-weight: 800;
}

.legal-content p {
  margin: 0 0 0.85rem;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 1rem 1.35rem;
  padding: 0;
}

.legal-content li {
  margin: 0.25rem 0;
}

.legal-content strong {
  font-weight: 800;
}

.legal-content code {
  padding: 0.08rem 0.25rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.62);
  font: 700 0.92em/1.2 ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.note-box {
  margin: 1.25rem 0;
  padding: 1rem 1.1rem;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
}

.home-shell {
  display: grid;
  gap: 1rem;
  text-align: center;
}

.home-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.home-links a {
  min-height: 48px;
  padding: 0.82rem 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  font-weight: 800;
  text-decoration: none;
}

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

.home-page .site-header {
  opacity: 0;
  transform: translateY(-18px);
  pointer-events: none;
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.home-page .site-header.is-header-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.marketing-hero {
  position: relative;
  min-height: 860px;
  padding: 5rem var(--site-pad) clamp(4rem, 8vw, 6.5rem);
  overflow: hidden;
  display: grid;
  place-items: start center;
  isolation: isolate;
}

.marketing-hero__circle {
  position: absolute;
  z-index: -1;
  top: -2705px;
  left: 50%;
  width: min(3115px, 216vw);
  height: min(3115px, 216vw);
  min-width: 1640px;
  min-height: 1640px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--color-circle);
}

.marketing-hero__inner {
  width: 100%;
  max-width: 1050px;
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 2.2rem;
  text-align: center;
}

.marketing-hero__mascot-stage {
  min-height: 154px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1.2rem;
}

.speech-bubble {
  position: relative;
  width: auto;
  min-width: min(100%, 480px);
  min-height: 0;
  padding: 0.72rem 1.45rem;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--color-ink);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: -3px 6px 0 var(--color-ink);
  backdrop-filter: blur(18px) saturate(1.05);
  -webkit-backdrop-filter: blur(18px) saturate(1.05);
  transition:
    opacity 360ms ease,
    transform 520ms ease;
}

.speech-bubble::after {
  content: none;
}

.speech-bubble.is-fading {
  opacity: 0;
  transform: translateY(6px);
}

.speech-bubble__text {
  min-height: 1.5em;
  color: var(--color-ink);
  font-size: clamp(1rem, 2vw, 1.875rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.05em;
}

.hero-mascot {
  --face-x: 0px;
  --face-y: 0px;
  width: 72px;
  height: 72px;
  filter: none;
}

.marketing-hero__copy {
  min-height: 0;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 1.2rem;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 780ms ease,
    transform 780ms ease;
}

.marketing-hero.is-copy-visible .marketing-hero__copy {
  opacity: 1;
  transform: translateY(0);
}

.marketing-hero__title {
  max-width: 860px;
  margin: 0;
  color: var(--color-cream-bottom);
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-text-stroke: 2px var(--color-ink);
  text-shadow:
    0 2px 0 var(--color-ink),
    -2px 4px 0 var(--color-ink);
}

.marketing-hero__subtitle {
  max-width: 744px;
  margin: 2.35rem 0 0;
  color: var(--color-ink);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.hero-actions {
  margin-top: 0.55rem;
  display: grid;
  justify-content: center;
  gap: 1rem;
}

.hero-actions a {
  min-width: 288px;
}

.trust-line {
  margin: 0;
  color: rgba(18, 18, 18, 0.58);
  font-size: clamp(0.92rem, 1.4vw, 1rem);
  font-weight: 500;
}

.story-section,
.feature-section,
.demo-section,
.waitlist-section {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding-right: var(--site-pad);
  padding-left: var(--site-pad);
}

.story-section {
  display: grid;
  gap: 0;
  width: 100%;
  max-width: none;
  padding-top: 0;
  padding-bottom: 0;
}

.story-block {
  --story-progress: 0;
  --support-progress: 0;
  min-height: 190svh;
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 0 var(--site-pad);
  display: block;
  opacity: calc(0.72 + (var(--story-progress) * 0.28));
}

.story-block--right {
  justify-self: center;
}

.story-block__content {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  align-content: center;
  justify-items: center;
  transform: translateY(calc((0.5 - var(--story-progress)) * 18px)) scale(calc(0.985 + (var(--story-progress) * 0.015)));
}

.story-block__statement {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(2.25rem, 4.6vw, 4.7rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-align: center;
}

.stat-letter {
  color: #929292;
  transition: color 260ms ease;
}

.stat-letter.is-active {
  color: var(--color-ink);
}

.story-block__statement > span {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.story-block__statement > span {
  display: block;
}

.story-block.is-visible .story-block__statement > span {
  opacity: 1;
  transform: translateY(0);
}

.story-block.is-visible .story-block__statement > span:nth-child(2) {
  transition-delay: 180ms;
}

.story-block.is-visible .story-block__statement > span:nth-child(3) {
  transition-delay: 360ms;
}

.story-block__support {
  max-width: 540px;
  margin: 1.25rem auto 0;
  color: rgba(18, 18, 18, calc(0.36 + (var(--support-progress) * 0.34)));
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  opacity: var(--support-progress);
  transform: translateY(calc((1 - var(--support-progress)) * 16px));
  transition:
    color 180ms linear,
    opacity 180ms linear,
    transform 180ms linear;
}

.story-block__source {
  width: 1.65rem;
  height: 1.65rem;
  margin-left: 0.4rem;
  display: inline-grid;
  place-items: center;
  vertical-align: -0.35rem;
  border: 1px solid rgba(18, 18, 18, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--color-ink);
  text-decoration: none;
}

.story-block__source svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.story-block--right .story-block__support {
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto clamp(3rem, 7vw, 5rem);
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--color-circle);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-text-stroke: 1.5px var(--color-ink);
  text-shadow: -2px 4px 0 var(--color-ink);
}

.section-heading p {
  max-width: 650px;
  margin: 1rem auto 0;
  color: rgba(18, 18, 18, 0.64);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  font-weight: 500;
  line-height: 1.5;
}

.feature-section {
  padding-top: clamp(5rem, 10vw, 8rem);
  padding-bottom: clamp(7rem, 12vw, 10rem);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 338px;
  align-items: center;
  gap: clamp(2rem, 6vw, 4.6rem);
  min-height: 0;
  padding: clamp(2.5rem, 7vw, 5rem) 0;
}

.feature-row .feature-media {
  order: 2;
}

.feature-row .feature-copy {
  order: 1;
}

.feature-row + .feature-row {
  margin-top: clamp(4rem, 8vw, 6.5rem);
}

.feature-row--reverse {
  grid-template-columns: 338px minmax(0, 1fr);
}

.feature-row--reverse .feature-media {
  order: 1;
}

.feature-row--reverse .feature-copy {
  order: 2;
}

.feature-media {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: visible;
  background: transparent;
  border: 0;
  filter: drop-shadow(0 0 16px rgba(0, 0, 0, 0.16));
}

.feature-media::before {
  content: none;
}

.feature-media img {
  position: relative;
  z-index: 1;
  width: min(100%, 338px);
  max-height: 520px;
  object-fit: contain;
  filter: none;
  border-radius: 16px 16px 0 0;
  -webkit-mask:
    linear-gradient(#000 0 0) top / 100% 86% no-repeat,
    radial-gradient(135% 100% at 50% 0%, #000 72%, transparent 72.35%) bottom / 100% 22% no-repeat;
  mask:
    linear-gradient(#000 0 0) top / 100% 86% no-repeat,
    radial-gradient(135% 100% at 50% 0%, #000 72%, transparent 72.35%) bottom / 100% 22% no-repeat;
}

.feature-copy h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.feature-copy p {
  max-width: 600px;
  margin: 1rem 0 1rem;
  color: rgba(18, 18, 18, 0.54);
  font-size: clamp(1.05rem, 1.9vw, 1.5rem);
  font-weight: 250;
  line-height: 1.5;
}

.feature-copy strong {
  color: var(--color-ink);
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--color-ink);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  width: 2.35rem;
  height: 2px;
  margin-left: 0.75rem;
  background: currentColor;
  transition: width 220ms ease;
}

.text-link:hover::after {
  width: 3.2rem;
}

.demo-section {
  padding-top: clamp(6rem, 12vw, 10rem);
  padding-bottom: clamp(7rem, 12vw, 10rem);
}

#introducing,
#demo,
#waitlist,
#lead-capture {
  scroll-margin-top: calc(var(--header-height) + 2rem);
}

.section-heading--demo {
  max-width: 960px;
}

.demo-panel {
  width: min(100%, 960px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
  justify-items: center;
}

.demo-controls,
.coach-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.demo-controls {
  width: min(100%, 650px);
  padding: 0;
  display: grid;
  grid-template-columns: 180px 1fr;
  align-content: start;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.demo-controls label {
  display: grid;
  gap: 0.55rem;
}

.demo-controls span,
.coach-card__label {
  color: var(--color-ink);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.demo-controls select,
.waitlist-form input {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 26px;
  background: var(--color-white);
  color: var(--color-ink);
  font: 400 1rem/1.25 var(--font-body);
}

.demo-controls select {
  padding: 0 2.5rem 0 1rem;
}

.coach-card {
  width: min(100%, 650px);
  min-height: 486px;
  padding: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
}

.coach-card__header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  justify-self: center;
  width: min(100%, 520px);
  margin: 0.5rem 0 0.25rem;
}

.coach-card__mascot {
  width: 80px;
  height: 80px;
  background: transparent;
}

.coach-card h3 {
  margin: 0.22rem 0 0;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 900;
  line-height: 1;
  text-align: left;
}

.coach-card__body {
  min-height: 242px;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 0;
}

.coach-response-line {
  min-height: 0;
  margin: 0;
  padding: 1rem;
  display: flex;
  align-items: center;
  border-radius: 16px;
  background: transparent;
  color: var(--color-ink);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  line-height: 1.18;
  opacity: 0.2;
  transform: translateY(8px);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

.coach-response-line.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.quiet-button {
  justify-self: center;
  min-height: 44px;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-ink);
  font: 900 0.95rem/1 var(--font-body);
  text-transform: uppercase;
  cursor: pointer;
}

.quiet-button::after {
  content: "";
  width: 2.35rem;
  height: 2px;
  margin-left: 0.75rem;
  display: inline-block;
  vertical-align: 0.18em;
  background: currentColor;
  transition: width 220ms ease;
}

.quiet-button:hover::after {
  width: 3.2rem;
}

.waitlist-section {
  --waitlist-progress: 0;
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: 0;
}

.waitlist-panel {
  position: relative;
  min-height: 0;
  padding: 1.5rem 2.5rem calc(1.5rem + var(--header-height));
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: transparent;
  isolation: isolate;
}

.waitlist-panel__background {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: calc(100% + ((100vw - 100%) * var(--waitlist-progress)));
  height: calc(100% + (var(--waitlist-progress) * 120px));
  transform: translate(-50%, -50%);
  border-radius: calc(24px - (var(--waitlist-progress) * 24px));
  background: var(--color-circle);
  transition:
    width 160ms linear,
    height 160ms linear,
    border-radius 160ms linear;
}

.waitlist-panel__content {
  width: min(100%, 790px);
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 1rem;
}

.waitlist-mascot {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.waitlist-panel h2 {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.waitlist-panel p {
  max-width: 640px;
  margin: 0;
  color: rgba(18, 18, 18, 0.72);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.1;
}

.waitlist-form {
  width: min(100%, 532px);
  margin-top: 0.65rem;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  align-items: center;
  border-radius: 108px;
  background: var(--color-white);
  box-shadow: 0 2px 12px rgba(20, 20, 43, 0.08);
}

.waitlist-form input {
  min-height: 72px;
  padding: 0 1.5rem;
  border: 0;
  border-radius: 108px;
  background: transparent;
}

.waitlist-form button {
  min-height: 56px;
  margin-right: 8px;
  border-radius: 96px;
  cursor: pointer;
}

.waitlist-confetti {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.waitlist-confetti span {
  position: absolute;
  width: 7px;
  height: 11px;
  border-radius: 2px;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation: waitlist-confetti-pop 900ms cubic-bezier(0.18, 0.78, 0.22, 1) var(--delay) forwards;
}

@keyframes waitlist-confetti-pop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5) rotate(0deg);
  }

  18% {
    opacity: 0.95;
  }

  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y) + 72px)) scale(0.9) rotate(var(--r));
  }
}

@media (prefers-reduced-motion: reduce) {
  .waitlist-confetti {
    display: none;
  }
}

.waitlist-panel .form-note {
  color: rgba(18, 18, 18, 0.58);
  font-size: 0.94rem;
}

.home-page .site-footer {
  position: relative;
  z-index: 2;
  margin-top: calc(var(--header-height) * -1);
  background: transparent;
}

.quiz-intro {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  padding: calc(var(--header-height) + 4rem) var(--site-pad) 5rem;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.quiz-intro__circle {
  position: absolute;
  z-index: -1;
  top: -980px;
  left: 50%;
  width: 1480px;
  height: 1480px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--color-circle);
}

.quiz-intro__inner {
  width: min(100%, 980px);
  display: grid;
  grid-template-columns: minmax(240px, 338px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 5rem);
}

.quiz-intro__asset {
  width: min(100%, 338px);
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(0, 0, 0, 0.16));
  border-radius: 16px 16px 0 0;
  -webkit-mask:
    linear-gradient(#000 0 0) top / 100% 86% no-repeat,
    radial-gradient(135% 100% at 50% 0%, #000 72%, transparent 72.35%) bottom / 100% 22% no-repeat;
  mask:
    linear-gradient(#000 0 0) top / 100% 86% no-repeat,
    radial-gradient(135% 100% at 50% 0%, #000 72%, transparent 72.35%) bottom / 100% 22% no-repeat;
}

.quiz-intro__copy {
  display: grid;
  gap: 1rem;
}

.quiz-intro__kicker {
  margin: 0;
  color: rgba(18, 18, 18, 0.72);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quiz-intro__copy .hero__title {
  max-width: 620px;
  text-align: left;
  font-size: clamp(2.8rem, 5.8vw, 5rem);
}

.quiz-intro__copy > p:not(.quiz-intro__kicker) {
  max-width: 570px;
  margin: 0;
  color: rgba(18, 18, 18, 0.7);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.25;
}

.quiz-intro .hero-actions {
  justify-content: start;
}

.quiz-funnel-page {
  --quiz-surface: rgba(255, 252, 246, 0.72);
  --quiz-surface-strong: #ffffff;
  --quiz-orange: #efac65;
  --quiz-orange-soft: #f6d2ae;
  --quiz-shadow: 0 18px 44px rgba(62, 36, 18, 0.12);
  background: transparent;
}

.quiz-funnel {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  padding: calc(var(--header-height) + 0.45rem) var(--site-pad) 3rem;
  display: grid;
  align-items: start;
  justify-items: center;
  isolation: isolate;
}

.quiz-funnel__halo {
  display: none;
}

.quiz-shell {
  width: min(100%, 620px);
  display: grid;
  align-items: start;
}

.quiz-shell__brand {
  min-height: 560px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1.1rem;
  text-align: center;
}

.quiz-shell__brand h1,
.quiz-screen h2 {
  margin: 0;
  color: var(--color-white);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-text-stroke: 1.5px var(--color-ink);
  text-shadow:
    0 2px 0 var(--color-ink),
    -2px 4px 0 var(--color-ink);
}

.quiz-shell__brand h1 {
  max-width: 520px;
  font-size: clamp(2.45rem, 4.2vw, 4rem);
}

.quiz-shell__brand p {
  max-width: 390px;
  margin: 0.6rem auto 0;
  color: rgba(18, 18, 18, 0.68);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.18;
}

.quiz-shell__small,
.quiz-step-kicker {
  margin: 0;
  color: var(--color-ink);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.quiz-shell__mascot {
  width: min(68%, 250px);
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(18, 18, 18, 0.18));
}

.quiz-card {
  width: 100%;
  min-height: min(700px, calc(100svh - var(--header-height) - 1.25rem));
  padding: clamp(1rem, 2.4vw, 1.35rem);
  display: grid;
  grid-template-rows: auto 1fr;
  border: 2px solid rgba(18, 18, 18, 0.16);
  border-radius: 28px;
  background: var(--quiz-surface);
  box-shadow: var(--quiz-shadow);
}

.quiz-card__topline {
  min-height: 42px;
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 0.65rem;
}

.quiz-back {
  min-height: 36px;
  border: 2px solid rgba(18, 18, 18, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--color-ink);
  font: 900 0.78rem/1 var(--font-body);
  text-transform: uppercase;
  cursor: pointer;
}

.quiz-link-button {
  min-height: 36px;
  padding: 0 0.2rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(18, 18, 18, 0.62);
  font: 900 0.78rem/1 var(--font-body);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
}

.quiz-progress {
  display: grid;
  gap: 0.36rem;
  color: rgba(18, 18, 18, 0.66);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quiz-back[hidden] + .quiz-progress {
  grid-column: 1 / -1;
}

.quiz-progress__track {
  height: 10px;
  overflow: hidden;
  border: 2px solid rgba(18, 18, 18, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.quiz-progress__track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--quiz-orange);
  transition: width 260ms ease;
}

.quiz-card__body {
  min-height: 0;
}

.quiz-screen {
  min-height: 100%;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: clamp(0.62rem, 1.6vw, 0.9rem);
  padding: clamp(0.85rem, 2.4vw, 1.15rem) 0.1rem 0;
  text-align: center;
}

.quiz-screen h2 {
  width: min(100%, 540px);
  font-size: clamp(1.7rem, 5.2vw, 2.85rem);
}

.quiz-copy,
.quiz-note,
.quiz-result-tagline,
.quiz-error {
  width: min(100%, 340px);
  margin: 0;
}

.quiz-copy {
  color: rgba(18, 18, 18, 0.7);
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.3;
}

.quiz-note {
  color: rgba(18, 18, 18, 0.55);
  font-size: 0.82rem;
  font-weight: 700;
}

.quiz-error {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(160, 33, 33, 0.3);
  border-radius: 14px;
  background: rgba(255, 238, 238, 0.72);
  color: #8d1f1f;
  font-size: 0.9rem;
  font-weight: 800;
}

.quiz-hero-asset,
.quiz-loading-asset,
.quiz-result-badge {
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(18, 18, 18, 0.14));
}

.quiz-hero-asset {
  width: min(48%, 150px);
}

.quiz-loading-asset {
  width: min(54%, 220px);
}

.quiz-result-badge {
  width: min(72%, 224px);
  max-height: 282px;
}

.quiz-result-tagline {
  color: var(--color-ink);
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quiz-option-grid {
  width: min(100%, 520px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.quiz-option-grid--count-2 {
  width: min(100%, 380px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quiz-choice {
  min-height: 154px;
  padding: 0.7rem 0.45rem;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.45rem;
  border: 2px solid rgba(18, 18, 18, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--color-ink);
  cursor: pointer;
}

.quiz-choice.is-selected {
  background: var(--quiz-orange-soft);
  box-shadow: -3px 5px 0 var(--color-ink);
  transform: translate(2px, -2px);
}

.quiz-choice img {
  width: 78px;
  height: 84px;
  object-fit: contain;
  filter: grayscale(1) saturate(0.2);
  transition: filter 180ms ease;
}

.quiz-choice.is-selected img {
  filter: none;
}

.quiz-choice span {
  color: #6f6f6f;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.quiz-choice.is-selected span {
  color: var(--color-ink);
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.quiz-choice small {
  color: rgba(18, 18, 18, 0.68);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.05;
}

.quiz-choice--wide {
  min-height: 168px;
}

.quiz-answer-list,
.goal-section,
.plan-list,
.auth-stack {
  width: min(100%, 520px);
  display: grid;
  gap: 0.72rem;
}

.quiz-answer,
.goal-card,
.auth-button {
  width: 100%;
  min-height: 64px;
  padding: 0.68rem 0.75rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.72rem;
  border: 2px solid rgba(18, 18, 18, 0.28);
  border-radius: 18px;
  background: var(--quiz-surface-strong);
  color: var(--color-ink);
  font: 900 0.84rem/1.1 var(--font-body);
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.quiz-answer.is-selected,
.goal-card.is-selected {
  background: var(--quiz-orange-soft);
  box-shadow: -3px 5px 0 var(--color-ink);
}

.quiz-answer__letter,
.quiz-answer__check,
.goal-card__icon,
.goal-card__check,
.auth-button span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(18, 18, 18, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 900;
}

.quiz-answer__check,
.goal-card__check {
  border-radius: 9px;
}

.goal-section {
  text-align: left;
}

.goal-section h3 {
  margin: 0.35rem 0 0;
  color: var(--color-ink);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.goal-card {
  min-height: 56px;
}

.goal-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", var(--font-body);
  font-size: 1.05rem;
  text-transform: none;
}

.goal-card__check {
  color: var(--color-ink);
  font-size: 1rem;
}

.quiz-screen--goals {
  gap: 0.58rem;
}

.quiz-screen--goals h2,
.quiz-screen--sneak h2 {
  font-size: clamp(1.55rem, 4.5vw, 2.45rem);
}

.coach-preview {
  width: min(100%, 520px);
  min-height: 250px;
  display: grid;
  grid-template-rows: 1fr;
  justify-items: center;
}

.coach-preview__messages {
  width: 100%;
  display: grid;
  align-content: end;
  gap: 0;
}

.coach-preview__messages p {
  margin: 0;
  width: 100%;
  padding: 0.72rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--color-ink);
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  font-weight: 700;
  line-height: 1.22;
  text-align: left;
  opacity: 0;
  transform: translateY(10px);
  animation: quiz-message-in 520ms ease forwards;
  animation-delay: var(--delay);
}

.coach-preview__messages p:nth-child(odd) {
  justify-self: stretch;
}

.coach-preview__messages p:nth-child(even) {
  justify-self: stretch;
  background: transparent;
}

@keyframes quiz-message-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.plan-list {
  max-height: 348px;
  overflow: auto;
  padding: 0 0.25rem 0.7rem 0;
}

.plan-week {
  padding: 0.85rem;
  border: 2px solid rgba(18, 18, 18, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.48);
  text-align: left;
}

.plan-week.is-unlocked {
  background: #ffffff;
  border-color: var(--color-ink);
  box-shadow: none;
}

.plan-week.is-locked .plan-week__top {
  grid-template-columns: 1fr;
}

.plan-week__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  color: rgba(18, 18, 18, 0.62);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-week.is-locked .plan-week__top {
  display: block;
}

.plan-week h3,
.plan-week p,
.plan-week small {
  margin: 0.5rem 0 0;
}

.plan-week h3 {
  color: var(--color-ink);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.plan-week p,
.plan-week small,
.plan-week li span {
  color: rgba(18, 18, 18, 0.66);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.28;
}

.plan-week ul {
  margin: 0.7rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
  list-style: none;
}

.plan-week li {
  display: grid;
  gap: 0.2rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(18, 18, 18, 0.12);
}

.plan-week li strong {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-week--teaser {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-color: transparent;
  background: transparent;
}

.plan-week--teaser .plan-week__top {
  display: block;
  justify-content: start;
}

.plan-week--teaser img {
  width: 82px;
  height: 98px;
  object-fit: contain;
}

.auth-button {
  min-height: 58px;
  border-color: rgba(18, 18, 18, 0.24);
  text-align: center;
}

.auth-button--apple {
  background: #161616;
  color: #ffffff;
}

.auth-button--apple span {
  color: var(--color-ink);
}

.quiz-primary {
  width: min(100%, 520px);
  min-height: 54px;
  padding: 0.95rem 1.2rem;
  border: 0;
  border-radius: 16px;
  background: #222222;
  color: var(--color-white);
  box-shadow: var(--shadow-pill);
  font: 900 0.9rem/1 var(--font-body);
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.quiz-primary:disabled,
.auth-button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  box-shadow: none;
}

.quiz-primary--link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.quiz-spinner {
  width: 34px;
  height: 34px;
  border: 4px solid rgba(18, 18, 18, 0.16);
  border-top-color: var(--color-ink);
  border-radius: 999px;
  animation: quiz-spin 760ms linear infinite;
}

@keyframes quiz-spin {
  to {
    transform: rotate(360deg);
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(38px) scale(0.985);
  filter: blur(6px);
  transition:
    opacity 920ms ease,
    transform 920ms ease,
    filter 920ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media (max-width: 720px) {
  :root {
    --header-height: 80px;
    --site-pad: 1.5rem;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .site-header__brand {
    justify-self: start;
    grid-column: 1;
  }

  .site-header__cta {
    grid-column: 3;
  }

  .primary-button {
    min-height: 46px;
    padding: 0.78rem 1rem;
    font-size: 0.82rem;
  }

  .mascot-logo {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: 360px;
    padding-top: calc(var(--header-height) + 5rem);
  }

  .hero::before {
    top: -382px;
    width: 820px;
    height: 760px;
  }

  .hero__title {
    font-size: clamp(3rem, 12vw, 4rem);
    line-height: 1.12;
    -webkit-text-stroke-width: 1.5px;
    text-shadow:
      0 2px 0 var(--color-ink),
      0 3px 0 var(--color-ink);
  }

  .legal-shell,
  .home-shell {
    padding-bottom: 4rem;
  }

  .last-updated {
    margin-bottom: 1.8rem;
    text-align: left;
  }

  .document-meta {
    font-size: 0.98rem;
  }

  .site-footer__inner {
    min-height: 220px;
    padding-top: 2rem;
    padding-bottom: 1.5rem;
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: center;
    text-align: center;
  }

  .site-footer__identity,
  .site-footer__links,
  .site-footer__cta {
    justify-self: center;
  }

  .site-footer__identity {
    flex-direction: column;
    gap: 0.65rem;
  }

  .site-footer__copyright {
    white-space: normal;
  }

  .home-page .site-footer {
    margin-top: 0;
    padding-top: 0;
    background: var(--color-circle);
  }

  .home-page .site-footer__inner {
    min-height: 360px;
  }

  .secondary-button {
    min-height: 46px;
    padding: 0.78rem 1rem;
    font-size: 0.82rem;
  }

  .marketing-hero {
    min-height: 760px;
    padding-top: 4.5rem;
    padding-bottom: 3rem;
  }

  .marketing-hero__circle {
    top: -780px;
    width: 1160px;
    height: 1160px;
    min-width: 0;
    min-height: 0;
  }

  .marketing-hero__mascot-stage {
    min-height: 136px;
  }

  .speech-bubble {
    min-width: min(100%, 342px);
    padding: 0.65rem 1rem;
  }

  .marketing-hero__copy {
    min-height: 0;
    gap: 0.95rem;
  }

  .marketing-hero__title,
  .waitlist-panel h2 {
    -webkit-text-stroke-width: 1.5px;
    text-shadow:
      0 2px 0 var(--color-ink),
      0 3px 0 var(--color-ink);
  }

  .marketing-hero__title {
    font-size: 3.35rem;
    line-height: 1.02;
  }

  .marketing-hero__subtitle {
    font-size: 1.45rem;
    margin-top: 2.4rem;
  }

  .hero-actions {
    width: 100%;
    display: grid;
    gap: 0.7rem;
  }

  .hero-actions a {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .story-section {
    gap: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .story-block {
    min-height: 185svh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .story-block,
  .story-block--right {
    justify-self: center;
  }

  .story-block--right .story-block__support {
    margin-left: auto;
    margin-right: auto;
  }

  .story-block__statement {
    font-size: clamp(1.85rem, 8vw, 3rem);
    line-height: 1.02;
  }

  .section-heading {
    margin-bottom: 2.4rem;
    text-align: center;
  }

  .section-heading h2 {
    font-size: clamp(2.6rem, 12vw, 4.25rem);
    line-height: 1;
  }

  .section-heading p {
    margin-left: auto;
  }

  .feature-row,
  .feature-row--reverse {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 1.35rem;
  }

  .feature-row + .feature-row {
    margin-top: 5rem;
  }

  .feature-row--reverse .feature-media {
    order: 1;
  }

  .feature-row .feature-media,
  .feature-row--reverse .feature-media {
    order: 1;
  }

  .feature-row .feature-copy,
  .feature-row--reverse .feature-copy {
    order: 2;
  }

  .feature-media {
    min-height: 290px;
  }

  .feature-copy h3 {
    font-size: clamp(1.45rem, 7vw, 2.15rem);
    line-height: 1;
  }

  .demo-panel {
    grid-template-columns: 1fr;
  }

  .demo-controls {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .coach-card {
    width: 100%;
    min-height: 540px;
  }

  .coach-card__body {
    min-height: 324px;
  }

  .coach-response-line {
    min-height: 96px;
  }

  .waitlist-section {
    padding-right: 0;
    padding-left: 0;
  }

  .waitlist-panel {
    min-height: 0;
    padding-right: var(--site-pad);
    padding-bottom: calc(2rem + var(--header-height));
    padding-left: var(--site-pad);
  }

  .waitlist-panel__background {
    width: calc((100% - (var(--site-pad) * 2)) + ((100vw - (100% - (var(--site-pad) * 2))) * var(--waitlist-progress)));
  }

  .waitlist-panel h2 {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
    line-height: 1;
    text-shadow: none;
  }

  .waitlist-form {
    grid-template-columns: 1fr;
    padding: 0.5rem;
    border-radius: 28px;
  }

  .waitlist-form .primary-button {
    width: 100%;
  }

  .waitlist-form input {
    min-height: 56px;
  }

  .waitlist-form button {
    margin-right: 0;
  }

  .quiz-intro {
    padding-top: calc(var(--header-height) + 3rem);
  }

  .quiz-intro__circle {
    top: -640px;
    width: 980px;
    height: 980px;
  }

  .quiz-intro__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .quiz-intro__copy {
    justify-items: center;
  }

  .quiz-intro__copy .hero__title {
    text-align: center;
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

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

  .quiz-funnel {
    padding: calc(var(--header-height) + 0.75rem) 0.9rem 2rem;
  }

  .quiz-shell {
    width: min(100%, 430px);
  }

  .quiz-card {
    min-height: calc(100svh - var(--header-height) - 2.75rem);
    border-radius: 24px;
    box-shadow: 0 12px 34px rgba(62, 36, 18, 0.12);
  }

  .quiz-card__topline {
    grid-template-columns: 58px 1fr;
  }

  .quiz-screen {
    align-content: start;
    padding-top: 0.9rem;
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
  }

  .quiz-screen h2 {
    font-size: clamp(1.7rem, 8.4vw, 2.45rem);
  }

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

  .quiz-option-grid--count-2 {
    width: min(100%, 330px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quiz-choice {
    min-height: 142px;
  }

  .quiz-choice img {
    width: 62px;
    height: 72px;
  }

  .quiz-hero-asset {
    width: min(44%, 132px);
  }

  .quiz-loading-asset {
    width: min(50%, 172px);
  }

  .quiz-choice span {
    font-size: 0.86rem;
  }

  .quiz-answer-list,
  .goal-section,
  .plan-list,
  .auth-stack,
  .coach-preview {
    width: 100%;
  }

  .plan-list {
    max-height: min(300px, 42svh);
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
  }

  .quiz-screen--plan {
    gap: 0.7rem;
    padding-bottom: max(8rem, calc(env(safe-area-inset-bottom) + 8rem));
  }

  .quiz-screen--plan > .quiz-link-button {
    margin-bottom: max(5rem, calc(env(safe-area-inset-bottom) + 5rem));
  }
}

@media (max-width: 430px) {
  .site-header__inner {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .site-header__brand-text {
    display: none;
  }

  .primary-button {
    padding-right: 0.85rem;
    padding-left: 0.85rem;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 360px;
    padding-top: calc(var(--header-height) + 5.2rem);
  }

  .hero__title {
    font-size: clamp(2.6rem, 13vw, 3.8rem);
  }

  .marketing-hero__circle {
    top: -598px;
    width: 980px;
    height: 980px;
  }

  .hero-mascot {
    width: 72px;
    height: 72px;
  }

  .marketing-hero__title {
    font-size: 2.5rem;
  }

  .marketing-hero__mascot-stage {
    min-height: 136px;
  }

  .speech-bubble__text {
    font-size: 1.1rem;
  }

  .marketing-hero__copy {
    min-height: 408px;
  }

  .coach-card__header {
    grid-template-columns: 1fr;
  }

  .coach-card__mascot {
    width: 52px;
    height: 52px;
  }
}

@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;
  }
}
