:root {
  --ink: #111111;
  --ink-muted: #626260;
  --ink-subtle: #7b7b78;
  --canvas: #f5f1ec;
  --surface-1: #ffffff;
  --surface-2: #ebe7e1;
  --inverse-surface-1: #313130;
  --inverse-ink: #ffffff;
  --inverse-ink-muted: #9c9fa5;
  --hairline: #d3cec6;
  --hairline-soft: #ebe7e1;
  --report-blue: #65b5ff;
  --report-green: #0bdf50;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --page-padding: clamp(20px, 5.55vw, 80px);
  --content-width: 1440px;
  --section-air: 350px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--surface-1);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.legal-page {
  min-height: 100vh;
  background: var(--canvas);
}

.legal-page main {
  min-height: 100vh;
  padding: var(--page-padding);
  display: grid;
  place-items: center;
}

.legal-page__content {
  width: min(100%, 1100px);
}

.legal-page__eyebrow {
  display: block;
  margin-bottom: 28px;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-page h1 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-wrap: balance;
}

.legal-page__lead {
  max-width: 680px;
  margin: 40px 0 56px;
  color: var(--ink-muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

.legal-page__details {
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.legal-page__details p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.5;
}

.legal-page__details strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 500;
}

.legal-page__back {
  width: fit-content;
  margin-top: 56px;
  display: inline-block;
  color: var(--ink);
  font-weight: 500;
  text-underline-offset: 4px;
}

.privacy-page main {
  padding-block: clamp(40px, 7vw, 96px);
}

.privacy-page .legal-page__content {
  max-width: 760px;
}

.privacy-page__home {
  display: inline-block;
  margin-bottom: 64px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 500;
  text-decoration: none;
}

.privacy-page h1 {
  font-size: clamp(48px, 7vw, 72px);
  line-height: 1.05;
}

.privacy-page__updated {
  margin: 20px 0 40px;
  color: var(--ink-muted);
  font-size: 14px;
}

.privacy-page__body {
  color: var(--ink-muted);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.privacy-page__body section + section {
  margin-top: 40px;
}

.privacy-page__body h2,
.privacy-page__body h3,
.privacy-page__body strong {
  color: var(--ink);
  font-weight: 500;
}

.privacy-page__body h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 28px);
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.privacy-page__body h3 {
  margin: 24px 0 8px;
  font-size: 17px;
}

.privacy-page__body p {
  margin: 0 0 16px;
}

.privacy-page__body ul {
  padding-left: 24px;
}

.privacy-page__body li + li {
  margin-top: 12px;
}

.privacy-page__body a,
.waitlist-form__privacy a {
  color: inherit;
  text-underline-offset: 3px;
}

.privacy-page__summary {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hairline);
}

@media (max-width: 560px) {
  .legal-page__details {
    grid-template-columns: 1fr;
  }
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--report-blue);
  outline-offset: 3px;
}

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

.site-header {
  position: relative;
  z-index: 10;
}

.site-header__inner {
  position: relative;
  width: min(100%, var(--content-width));
  min-height: 80px;
  margin: 0 auto;
  padding: 24px var(--page-padding) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  color: var(--ink);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.25;
  text-decoration: none;
}

.site-nav {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.8vw, 28px);
  margin: 0 auto;
  padding-inline: clamp(28px, 4vw, 64px);
  transform: translateX(-50%);
}

.site-nav a {
  position: relative;
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 160ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.7);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--surface-1);
  background: var(--ink);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.button:hover {
  background: var(--inverse-surface-1);
}

.button:active {
  transform: translateY(1px);
}

.button--compact {
  min-height: 44px;
  padding-inline: 18px;
}

.hero {
  min-height: clamp(640px, calc(100svh - 80px), 820px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  width: 100%;
  min-height: clamp(640px, calc(100svh - 80px), 820px);
  margin: 0 auto;
  padding: 48px var(--page-padding) 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.hero__copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 920px;
  text-align: center;
}

.hero__copy h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(64px, 6.6vw, 92px);
  font-weight: 500;
  letter-spacing: -4.6px;
  line-height: 0.98;
  text-wrap: balance;
}

.hero__eyebrow {
  display: block;
  margin-bottom: 20px;
}

.hero__copy p {
  max-width: 660px;
  margin: 32px auto 34px;
  color: var(--ink-muted);
  font-size: 20px;
  line-height: 1.5;
}

.hero__photo-card {
  position: absolute;
  z-index: 1;
  border: 0;
  border-radius: 0;
  background-position: center;
  background-size: cover;
}

.hero__photo-stack {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}

.hero__photo-stack--left {
  left: 0;
  width: calc(2.8vw + clamp(190px, 12.25vw, 250px));
  height: calc(198px + clamp(270px, 16.85vw, 345px));
}

.hero__photo-stack--right {
  right: 0;
  width: clamp(220px, 13.7vw, 280px);
  height: calc(clamp(212px, 13.2vw, 270px) + clamp(182px, 11vw, 225px));
}

.hero__photo-card--left-top {
  top: 0;
  left: 2.8vw;
  width: clamp(190px, 12.25vw, 250px);
  height: clamp(270px, 16.85vw, 345px);
  background-image: url("./assets/study3.jpg");
  background-position: center;
}

.hero__photo-card--left-bottom {
  top: 198px;
  left: 0;
  width: clamp(132px, 8vw, 164px);
  height: clamp(270px, 16.85vw, 345px);
  background-image: url("./assets/study1.jpg");
  background-position: 44% center;
}

.hero__photo-card--right-top {
  top: 0;
  right: 0;
  width: clamp(220px, 13.7vw, 280px);
  height: clamp(212px, 13.2vw, 270px);
  background-image: url("./assets/study4.jpg");
  background-position: center 48%;
}

.hero__photo-card--right-bottom {
  top: clamp(212px, 13.2vw, 270px);
  right: 0;
  width: clamp(144px, 8.7vw, 178px);
  height: clamp(182px, 11vw, 225px);
  background-image: url("./assets/study2.jpg");
  background-position: 52% 62%;
}

.product-preview {
  padding: clamp(40px, 5vw, 72px) var(--page-padding);
  background: #faf9f5;
}

.product-preview picture {
  display: block;
}

.product-preview img {
  width: min(100%, 1280px);
  height: auto;
  margin: 0 auto;
  border: 10px solid #c8c8c8;
  border-radius: 20px;
  display: block;
}

.journey-demo {
  width: 100%;
  max-width: 672px;
  margin: 0 auto;
}

.journey-demo__scene {
  position: relative;
  width: 100%;
  aspect-ratio: 672 / 660;
  isolation: isolate;
}

.journey-demo__block {
  position: absolute;
  border-radius: var(--radius-xl);
}

.journey-demo__block--blue {
  z-index: -1;
  top: 22%;
  left: 0;
  width: 75%;
  height: 73%;
  background: url("./assets/hero-green.jpg") center / cover;
}

.journey-demo__block--charcoal {
  z-index: -2;
  top: 1.5%;
  right: 3.5%;
  width: 66%;
  height: 96%;
  background: url("./assets/hero-red.jpg") center / cover;
}

.plan-card,
.branch-card {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  background: var(--surface-1);
}

.plan-card {
  position: absolute;
  z-index: 1;
  top: 7.5%;
  left: 4%;
  width: 71.5%;
  height: 86%;
  padding: clamp(16px, 2vw, 24px);
  display: flex;
  flex-direction: column;
}

.eyebrow {
  display: block;
  color: var(--ink-muted);
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 500;
  line-height: 1.35;
}

.plan-card__intro h2 {
  margin: 20px 0 8px;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.7px;
  line-height: 1.15;
}

.plan-card__intro p {
  margin: 0;
  color: var(--ink-muted);
  font-size: clamp(11px, 1.2vw, 15px);
  line-height: 1.45;
}

.route-list {
  min-height: 0;
  margin: clamp(18px, 2.2vw, 28px) 0 0;
  padding: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  list-style: none;
}

.route-stage {
  min-height: 0;
  padding: clamp(10px, 1.6vw, 18px);
  border: 1px solid var(--hairline-soft);
  display: grid;
  flex: 1;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 8px;
  color: var(--ink-subtle);
}

.route-stage:first-child {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.route-stage:last-child {
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.route-stage + .route-stage {
  border-top: 0;
}

.route-stage--active {
  color: var(--ink);
  background: var(--surface-2);
}

.route-stage__marker {
  align-self: start;
  font-size: clamp(11px, 1.1vw, 14px);
  line-height: 1.45;
}

.route-stage strong,
.route-stage small {
  display: block;
  font-size: clamp(11px, 1.15vw, 14px);
  font-weight: 400;
  line-height: 1.45;
}

.route-stage small {
  color: var(--ink-muted);
}

.branch-connector {
  position: absolute;
  z-index: 2;
  top: 52.8%;
  left: 70.2%;
  width: 7.5%;
  height: 1px;
  background: var(--hairline);
}

.branch-card {
  position: absolute;
  z-index: 3;
  top: 40%;
  right: 0;
  width: 53%;
  min-height: 38%;
  padding: clamp(16px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  background: var(--canvas);
}

.branch-card h3 {
  margin: clamp(12px, 1.5vw, 18px) 0 10px;
  font-size: clamp(18px, 2.15vw, 26px);
  font-weight: 500;
  letter-spacing: -0.45px;
  line-height: 1.14;
  text-wrap: balance;
}

.branch-card p {
  margin: 0 0 16px;
  color: var(--ink-muted);
  font-size: clamp(11px, 1.15vw, 14px);
  line-height: 1.45;
}

.branch-card__status {
  width: 100%;
  margin-top: auto;
  padding: 9px 12px;
  border-radius: 999px;
  display: block;
  color: var(--ink);
  background: var(--surface-2);
  font-size: clamp(10px, 1.05vw, 13px);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.problem-section {
  background: var(--canvas);
}

.problem-section__inner {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 112px var(--page-padding) 120px;
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.problem-section__intro {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.problem-section__eyebrow {
  margin: 0;
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

.problem-section__lead {
  display: grid;
  grid-template-columns: 800px 400px;
  align-items: end;
  justify-content: space-between;
}

.problem-section__lead h2 {
  margin: 0;
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -1.4px;
  line-height: 62px;
}

.problem-section__lead > p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 18px;
  letter-spacing: -0.1px;
  line-height: 27px;
}

.problem-section__problems {
  display: grid;
  grid-template-columns: 342px 1px 342px 1px 342px;
  align-items: start;
  justify-content: space-between;
}

.problem-item {
  width: 342px;
}

.problem-item h3 {
  min-height: 56px;
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 28px;
}

.problem-item p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 24px;
}

.problem-section__divider {
  width: 1px;
  height: 192px;
  background: var(--hairline);
}

.problem-section__transition {
  margin: 0;
  padding-top: 48px;
  border-top: 1px solid var(--hairline);
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.8px;
  line-height: 46px;
}

.metalearning {
  background: var(--surface-1);
}

.metalearning__inner {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: var(--section-air) var(--page-padding);
}

.metalearning__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.metalearning__header h2 {
  max-width: 1120px;
  margin: 0 auto;
  font-size: 68px;
  font-weight: 500;
  letter-spacing: -3.4px;
  line-height: 1.03;
  text-wrap: balance;
}

.metalearning__title-accent {
  color: #a0a0a0;
}

.metalearning__title-accent--person {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.metalearning__title-accent--person::after {
  position: absolute;
  right: 0.5em;
  bottom: -0.06em;
  left: 0;
  height: 0.08em;
  border-radius: 0.04em;
  background: currentColor;
  content: "";
}

.metalearning__principles {
  position: relative;
  margin-top: var(--section-air);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 20px;
}

.metalearning__principle {
  min-width: 0;
  min-height: 250px;
  padding: 36px 32px 32px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #faf9f5;
}

.metalearning__principle:nth-of-type(2) {
  margin-top: 56px;
}

.metalearning__principle:nth-of-type(3) {
  margin-top: 112px;
}

.metalearning__arrow {
  position: absolute;
  z-index: 2;
  width: 260px;
  height: 130px;
  overflow: visible;
  pointer-events: none;
}

.metalearning__arrow--first {
  top: -72px;
  left: calc(33.333% - 100px);
}

.metalearning__arrow--second {
  top: -16px;
  left: calc(66.666% - 100px);
}

.metalearning__arrow path {
  fill: none;
  stroke: var(--ink);
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.metalearning__principle-name {
  color: var(--ink-muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}

.metalearning__principle h3 {
  margin: 18px 0 0;
  font-size: clamp(28px, 2.25vw, 34px);
  font-weight: 500;
  letter-spacing: -1.4px;
  line-height: 1.06;
  text-wrap: balance;
}

.metalearning__principle p {
  max-width: 360px;
  margin: 16px 0 0;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 23px;
}

.product-experience {
  padding-top: calc(var(--section-air) * 0.4);
  background: #ffffff;
}

.product-experience__inner {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 0 var(--page-padding) 120px;
}

.product-experience__title {
  max-width: 820px;
  margin: 0 auto calc(var(--section-air) * 1.4);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.12;
  text-align: center;
  text-wrap: balance;
}

.journey-scroll {
  margin-top: 0;
  display: grid;
  gap: clamp(120px, 14vw, 220px);
}

.journey-moment {
  min-height: 720px;
  padding: 88px 0;
  display: grid;
  grid-template-columns: minmax(0, 440px) minmax(0, 660px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(64px, 8vw, 120px);
}

.journey-moment:first-child {
  min-height: 620px;
  padding-top: 0;
  align-items: start;
}

.journey-moment--visual-first {
  grid-template-columns: minmax(0, 660px) minmax(0, 440px);
}

.journey-moment__copy {
  max-width: 440px;
}

.journey-moment__number {
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  text-transform: uppercase;
}

.journey-moment__copy h3 {
  margin: 28px 0 24px;
  font-size: clamp(42px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 1.04;
  text-wrap: balance;
}

.journey-moment__copy p {
  max-width: 420px;
  margin: 0;
  color: var(--ink-muted);
  font-size: 18px;
  line-height: 27px;
}

.journey-ui {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface-1);
}

.journey-ui__header {
  min-height: 62px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
}

.journey-ui__status,
.lesson-ui__progress {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ink-muted);
  background: var(--canvas);
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
}

.journey-ui__status--approved {
  color: var(--ink);
  background: var(--report-green);
}

.ui-label {
  color: var(--ink-muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
}

.journey-prompt {
  width: 100%;
  min-height: 360px;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface-1);
}

.journey-new-plan {
  width: fit-content;
  min-height: 44px;
  margin: 0 auto 18px;
  padding: 10px 12px;
  border: 0;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  background: transparent;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 140ms ease;
}

.journey-new-plan:hover {
  background: var(--canvas);
}

.journey-new-plan:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.journey-new-plan svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.journey-composer {
  width: 100%;
  padding: 12px 12px 12px 16px;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-1);
}

.journey-composer:focus-within {
  border-color: var(--ink-muted);
}

.journey-composer__goal {
  position: relative;
  min-width: 0;
  flex: 1;
}

.journey-composer textarea,
.journey-composer__typing {
  width: 100%;
  min-width: 0;
  min-height: 32px;
  padding: 5px 0;
  border: 0;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  line-height: 1.5;
}

.journey-composer textarea {
  max-height: 120px;
  display: block;
  field-sizing: content;
  outline: 0;
  resize: none;
  background: transparent;
}

.journey-composer__typing {
  position: absolute;
  inset: 0;
  display: none;
  overflow: hidden;
  white-space: pre-wrap;
  overflow-wrap: break-word;
  pointer-events: none;
}

[data-typewriter] .journey-composer__send {
  transition: opacity 280ms ease, transform 280ms ease;
}

@media (prefers-reduced-motion: no-preference) {
  .journey-composer.is-typewriter textarea {
    color: transparent;
    caret-color: transparent;
  }

  .is-typewriter .journey-composer__typing {
    display: block;
  }

  .is-typewriter .journey-composer__send {
    opacity: 0.35;
    transform: scale(0.92);
  }

  .is-typing .journey-composer__typing::after {
    border-right: 1.5px solid var(--ink);
    content: "";
    animation: journey-typing-caret 650ms step-end infinite;
  }
}

@keyframes journey-typing-caret {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.journey-composer__send {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-md);
  display: grid;
  flex: 0 0 32px;
  place-items: center;
  color: var(--surface-1);
  background: var(--ink);
}

.journey-composer__send svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.journey-prompt > span {
  margin-top: 10px;
  color: var(--ink-subtle);
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
}

.journey-plan-nav {
  width: 100%;
  min-width: 0;
  border: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface-1);
}

.journey-plan-nav__header {
  min-height: 88px;
  padding: 24px 18px 18px 22px;
  border-bottom: 1px solid var(--hairline-soft);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.journey-plan-nav__label {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.journey-plan-nav__progress {
  margin: 0;
  color: var(--ink-subtle);
  font-size: 12px;
  line-height: 1.4;
}

.journey-plan-nav__more {
  min-width: 28px;
  color: var(--ink-subtle);
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1;
  text-align: center;
}

.journey-stage-list {
  padding: 12px 10px 24px;
}

.journey-stage {
  margin-bottom: 4px;
}

.journey-stage__row {
  width: 100%;
  padding: 10px 8px;
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) 16px;
  align-items: start;
  gap: 8px;
  color: var(--ink);
  text-align: left;
}

.journey-stage__status {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.journey-stage--current .journey-stage__status {
  border: 4px solid var(--ink);
}

.journey-stage__title {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.journey-stage--current .journey-stage__title {
  font-weight: 500;
}

.journey-stage__chevron {
  color: var(--ink-subtle);
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
}

.journey-stage__children {
  position: relative;
  padding: 1px 0 7px 34px;
}

.journey-stage__children::before {
  position: absolute;
  top: 0;
  bottom: 11px;
  left: 16px;
  width: 1px;
  background: var(--hairline);
  content: "";
}

.journey-stage__chat,
.journey-stage__new-chat {
  width: 100%;
  min-width: 0;
  padding: 7px 8px;
  border-radius: 4px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 1.45;
  text-align: left;
}

.journey-stage__chat--active {
  color: var(--ink);
  background: var(--surface-1);
  font-weight: 500;
}

.journey-stage__chat-icon {
  position: relative;
  width: 12px;
  height: 10px;
  margin-top: 3px;
  border: 1px solid currentColor;
  border-radius: 3px;
  flex: 0 0 auto;
}

.journey-stage__chat-icon::after {
  position: absolute;
  bottom: -3px;
  left: 2px;
  width: 4px;
  height: 4px;
  border-bottom: 1px solid currentColor;
  border-left: 1px solid currentColor;
  content: "";
  transform: skewY(-35deg);
}

.journey-stage__new-chat span:first-child {
  width: 11px;
  flex: 0 0 auto;
  font-size: 15px;
  line-height: 1.1;
  text-align: center;
}

.journey-chat {
  width: 100%;
  min-width: 0;
  border: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface-1);
}

.journey-chat__header {
  margin: 0 28px;
  padding: 28px 0 24px;
  border-bottom: 1px solid var(--hairline-soft);
}

.journey-chat__meta {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-subtle);
  font-size: 12px;
  line-height: 1.4;
}

.journey-chat__header h4 {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.journey-chat__header p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.5;
}

.journey-chat__messages {
  padding: 0 28px 28px;
}

.journey-message {
  padding-top: 26px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
}

.journey-message__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--surface-1);
  background: var(--ink);
  font-size: 11px;
  font-weight: 500;
}

.journey-message__body {
  min-width: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
}

.journey-message__body p {
  margin: 0 0 12px;
}

.journey-message__body p:last-child {
  margin-bottom: 0;
}

.journey-message--learner {
  grid-template-columns: minmax(0, 1fr);
  justify-items: end;
}

.journey-message--learner .journey-message__body {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: var(--radius-lg);
  background: var(--canvas);
}

.journey-practice-card {
  margin-top: 18px;
  padding: 4px 0 4px 16px;
  border-left: 2px solid var(--ink);
}

.journey-practice-card__label {
  margin-bottom: 6px !important;
  font-size: 12px;
  font-weight: 500;
}

.journey-chat__composer-wrap {
  padding: 12px 28px 18px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--surface-1) 18%);
}

.journey-chat__composer {
  min-height: 58px;
  padding: 12px 12px 12px 16px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #9c9fa5;
  background: var(--surface-1);
  font-size: 14px;
  line-height: 1.5;
}

.journey-chat__send {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  display: grid;
  flex: 0 0 32px;
  place-items: center;
  color: var(--surface-1);
  background: var(--ink);
}

.journey-chat__send svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.journey-chat__composer-wrap > p {
  margin: 7px 0 0;
  color: var(--ink-subtle);
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
}

.branch-demo {
  width: 100%;
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(210px, 0.8fr);
  align-items: stretch;
  gap: 18px;
}

.branch-demo__conversation {
  min-width: 0;
  padding: 22px 28px 34px;
  border: 0;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: flex-start;
  background: var(--surface-1);
}

.branch-demo__message {
  width: 100%;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
}

.branch-demo__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--surface-1);
  background: var(--ink);
  font-size: 11px;
  font-weight: 500;
}

.branch-demo__message-body {
  min-width: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
}

.branch-demo__message-body p {
  margin: 0 0 14px;
}

.branch-demo__message-body p:nth-child(2) {
  margin-bottom: 0;
}

.branch-demo__actions {
  margin: 4px 0 0 -6px;
  display: flex;
  gap: 2px;
}

.branch-demo__actions button {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: var(--ink-muted);
  background: transparent;
  cursor: pointer;
}

.branch-demo__actions button:hover {
  color: var(--ink);
  background: #f2f2f2;
}

.branch-demo__actions button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.branch-demo__actions svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.branch-demo__composer {
  width: 100%;
  min-height: 44px;
  margin-top: 12px;
  padding: 5px 6px 5px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  background: var(--surface-1);
}

.branch-demo__input {
  width: 100%;
  min-width: 0;
  padding: 4px 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
}

.branch-demo__composer:focus-within {
  border-color: var(--ink-muted);
}

.branch-demo__sidebar {
  min-width: 0;
  border: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface-1);
}

.branch-demo__sidebar-header {
  padding: 22px 18px 16px;
  border-bottom: 1px solid var(--hairline-soft);
}

.branch-demo__sidebar-header p {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.branch-demo__sidebar-header span {
  color: var(--ink-subtle);
  font-size: 12px;
  line-height: 1.4;
}

.branch-demo__stage {
  margin: 12px 10px;
}

.journey-stage--complete .journey-stage__status {
  border-color: var(--ink);
  color: var(--surface-1);
  background: var(--ink);
  font-size: 10px;
  line-height: 1;
}

.journey-stage__branch {
  width: 100%;
  min-width: 0;
  padding: 6px 8px 6px 26px;
  border-radius: 6px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--ink-subtle);
  font-size: 12px;
  line-height: 1.45;
}

.journey-stage__branch > span:first-child {
  flex: 0 0 auto;
  color: var(--hairline);
  font-size: 13px;
}

.why-skelivo {
  color: var(--ink);
  background: var(--canvas);
}

.why-skelivo__inner {
  width: min(100%, var(--content-width));
  min-height: 1480px;
  margin: 0 auto;
  padding: 112px var(--page-padding) 134px;
}

.why-skelivo__intro {
  margin: 0 0 122px;
}

.why-skelivo__eyebrow {
  margin: 0 0 32px;
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

.why-skelivo__heading-row {
  display: grid;
  grid-template-columns: 800px 400px;
  gap: 80px;
  align-items: start;
}

.why-skelivo__heading-row h2,
.why-skelivo__heading-row p,
.why-skelivo__closing,
.comparison-row h3,
.comparison-row div {
  margin: 0;
}

.why-skelivo__heading-row h2 {
  max-width: 800px;
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -1.4px;
  line-height: 62px;
}

.why-skelivo__heading-row p {
  max-width: 400px;
  color: var(--ink-muted);
  font-size: 18px;
  letter-spacing: -0.1px;
  line-height: 27px;
}

.comparison-table {
  position: relative;
  overflow: hidden;
}

.comparison-table::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 27.5%;
  background: var(--surface-1);
  border-top: 4px solid var(--report-blue);
  content: "";
}

.comparison-table__headers,
.comparison-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 17.5% repeat(3, 27.5%);
}

.comparison-table__headers {
  min-height: 84px;
  align-items: center;
}

.comparison-table__headers [role="columnheader"] {
  padding: 0 24px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 28px;
}

.comparison-row {
  min-height: 132px;
  border-top: 1px solid var(--hairline);
}

.comparison-row h3,
.comparison-row div {
  padding: 28px 24px;
  font-size: 16px;
  line-height: 24px;
}

.comparison-row h3 {
  padding-left: 0;
  font-weight: 500;
}

.comparison-row div {
  color: var(--ink-muted);
  font-weight: 400;
}

.comparison-row .comparison-row__skelivo {
  color: var(--ink);
}

.why-skelivo__closing {
  margin-top: 56px;
  padding: 47px 240px 0 0;
  border-top: 1px solid var(--hairline);
  font-size: 20px;
  letter-spacing: -0.2px;
  line-height: 28px;
}

.trust-section {
  color: var(--inverse-ink);
  background: var(--inverse-surface-1);
}

.trust-section__inner {
  width: min(100%, var(--content-width));
  min-height: 1643px;
  margin: 0 auto;
  padding: 112px var(--page-padding) 96px;
  display: flex;
  flex-direction: column;
  gap: 112px;
}

.trust-section__hero {
  height: 660px;
  display: grid;
  grid-template-columns: 520px 680px;
  gap: 80px;
  overflow: hidden;
}

.trust-section__copy {
  width: 520px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.trust-section__eyebrow {
  margin: 0;
  color: var(--inverse-ink-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

.trust-section__copy h2 {
  margin: 0;
  color: var(--inverse-ink);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -1.4px;
  line-height: 62px;
}

.trust-section__intro {
  max-width: 500px;
  margin: 0;
  color: var(--inverse-ink-muted);
  font-size: 18px;
  letter-spacing: -0.1px;
  line-height: 27px;
}

.revision-visual {
  position: relative;
  width: 680px;
  height: 660px;
}

.revision-visual__backdrop {
  position: absolute;
  top: 40px;
  left: 48px;
  width: 632px;
  height: 620px;
  border-radius: var(--radius-xl);
  background: var(--report-blue);
}

.revision-card {
  position: relative;
  z-index: 1;
  width: 648px;
  height: 620px;
  padding: 28px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--ink);
  background: var(--surface-1);
}

.revision-card__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.revision-card__journey-row {
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 17px;
  text-transform: uppercase;
}

.status-chip {
  padding: 8px 12px;
  border-radius: 9999px;
  color: var(--ink);
  background: var(--report-blue);
  text-transform: none;
  white-space: nowrap;
}

.revision-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 28px;
}

.revision-card__header > p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 21px;
}

.revision-card__divider {
  width: 100%;
  height: 1px;
  flex: 0 0 1px;
  background: var(--hairline);
}

.revision-reason,
.revision-change {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.revision-reason {
  gap: 10px;
}

.revision-reason h4,
.revision-change h4 {
  margin: 0;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
  text-transform: uppercase;
}

.revision-reason > p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
}

.revision-evidence {
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-muted);
  background: var(--canvas);
  font-size: 14px;
  line-height: 21px;
}

.revision-evidence__marker {
  width: 4px;
  height: 26px;
  flex: 0 0 4px;
  border-radius: 2px;
  background: var(--report-blue);
}

.revision-change__route {
  min-height: 82px;
  padding: 12px 14px 12px 12px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-2);
}

.revision-change__marker {
  width: 6px;
  height: 58px;
  flex: 0 0 6px;
  border-radius: 3px;
  background: var(--report-blue);
}

.revision-change__route > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.revision-change__route strong {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.revision-change__route span:not(.revision-change__marker) {
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 21px;
}

.revision-preserved {
  min-height: 44px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-muted);
  background: var(--canvas);
  font-size: 14px;
  line-height: 21px;
}

.revision-preserved__marker {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--report-green);
}

.revision-actions {
  min-height: 48px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.revision-action {
  height: 48px;
  padding: 0 20px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
  white-space: nowrap;
}

.revision-action--secondary {
  min-width: 170px;
  border: 1px solid var(--hairline);
  background: var(--surface-1);
}

.revision-action--primary {
  min-width: 164px;
  color: var(--surface-1);
  background: var(--ink);
}

.trust-commitments {
  min-height: 443px;
  border-top: 1px solid var(--inverse-ink-muted);
  border-bottom: 1px solid var(--inverse-ink-muted);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.trust-commitment {
  min-height: 220px;
  padding: 36px 56px 36px 0;
}

.trust-commitment:nth-child(even) {
  padding-right: 0;
  padding-left: 56px;
  border-left: 1px solid var(--inverse-ink-muted);
}

.trust-commitment:nth-child(n + 3) {
  border-top: 1px solid var(--inverse-ink-muted);
}

.trust-commitment h3 {
  margin: 0 0 16px;
  color: var(--inverse-ink);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 28px;
}

.trust-commitment p {
  max-width: 584px;
  margin: 0;
  color: var(--inverse-ink-muted);
  font-size: 16px;
  line-height: 24px;
}

.trust-section__closing {
  min-height: 108px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.trust-section__closing > span {
  width: 8px;
  height: 92px;
  flex: 0 0 8px;
  border-radius: 4px;
  background: var(--report-blue);
}

.trust-section__closing p {
  max-width: 1040px;
  margin: 0;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.8px;
  line-height: 46px;
}

.faq__inner {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 0 var(--page-padding) clamp(80px, 10vw, 144px);
}

.faq h2 {
  text-align: center;
  margin: 0 0 40px;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.faq details {
  padding: 24px 0;
  border-top: 1px solid var(--hairline-soft);
}

.faq details:last-child {
  border-bottom: 1px solid var(--hairline-soft);
}

.faq summary {
  display: flex;
  align-items: baseline;
  gap: 8px;
  list-style: none;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::before {
  content: "▸" / "";
  flex: none;
}

.faq details[open] > summary::before {
  transform: rotate(90deg);
}

.faq__answer {
  min-height: 0;
  overflow: hidden;
}

@media (prefers-reduced-motion: no-preference) {
  .faq summary::before {
    transition: transform 280ms ease;
  }

  .faq details::details-content {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 280ms ease, opacity 280ms ease,
      content-visibility 280ms allow-discrete;
  }

  .faq details[open]::details-content {
    grid-template-rows: 1fr;
    opacity: 1;
  }
}

.faq p {
  margin: 16px 0 0;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.6;
}

.final-cta {
  color: var(--ink);
  background: #faf9f5;
}

.final-cta__inner {
  width: min(100%, var(--content-width));
  min-height: 640px;
  margin: 0 auto;
  padding: 96px var(--page-padding) 112px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.final-cta__content {
  width: 100%;
  max-width: 920px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.final-cta__content h2 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(64px, 6.6vw, 92px);
  font-weight: 500;
  letter-spacing: -4.6px;
  line-height: 0.98;
  text-wrap: balance;
}

.final-cta__content h2 > span {
  display: inline-block;
}

.final-cta__content > p {
  max-width: 660px;
  margin: 32px auto 34px;
  color: var(--ink-muted);
  font-size: 20px;
  line-height: 1.5;
}

.final-cta__button {
  width: 158px;
  padding-inline: 0;
}

.site-footer {
  background: #faf9f5;
}

.site-footer__inner {
  position: relative;
  width: min(100%, var(--content-width));
  min-height: 112px;
  margin: 0 auto;
  padding: 32px var(--page-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-footer__inner::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(450px, calc(100% - var(--page-padding) - var(--page-padding)));
  height: 1px;
  border-radius: 999px;
  background: var(--hairline);
  content: "";
  transform: translateX(-50%);
}

.site-footer__identity,
.site-footer__links {
  display: flex;
  align-items: center;
}

.site-footer__identity {
  gap: 28px;
}

.site-footer__wordmark {
  color: var(--ink);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.25;
  text-decoration: none;
}

.site-footer__copyright {
  margin: 0;
  color: var(--ink-subtle);
  font-size: 14px;
  line-height: 1.5;
}

.site-footer__links {
  gap: 28px;
}

.site-footer__links a {
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--ink);
}

.waitlist-dialog {
  width: min(460px, calc(100vw - 40px));
  padding: 0;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  color: var(--ink);
  background: var(--surface-1);
}

.waitlist-dialog::backdrop {
  background: rgba(17, 17, 17, 0.36);
}

@media (prefers-reduced-motion: no-preference) {
  .waitlist-dialog {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
    transition: opacity 180ms ease, transform 180ms ease,
      display 180ms allow-discrete, overlay 180ms allow-discrete;
  }

  .waitlist-dialog[open] {
    opacity: 1;
    transform: none;
  }

  .waitlist-dialog::backdrop {
    background: transparent;
    transition: background-color 180ms ease,
      display 180ms allow-discrete, overlay 180ms allow-discrete;
  }

  .waitlist-dialog[open]::backdrop {
    background: rgba(17, 17, 17, 0.36);
  }

  @starting-style {
    .waitlist-dialog[open] {
      opacity: 0;
      transform: translateY(16px) scale(0.97);
    }

    .waitlist-dialog[open]::backdrop {
      background: transparent;
    }
  }
}

.waitlist-form {
  position: relative;
  padding: 34px;
}

.waitlist-dialog__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink-muted);
  background: transparent;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.waitlist-dialog__close:hover {
  color: var(--ink);
  background: var(--surface-2);
}

.waitlist-form__content h2 {
  margin: 18px 24px 12px 0;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.12;
}

.waitlist-form__content p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.5;
}

.waitlist-form__fields {
  margin-top: 26px;
  display: grid;
  gap: 10px;
}

.waitlist-form input[readonly] + .button {
  color: var(--surface-1);
  background: var(--report-green);
  border-color: var(--report-green);
  cursor: default;
}

.waitlist-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  color: var(--ink);
  background: var(--surface-1);
  font-size: 15px;
}

.waitlist-form input::placeholder {
  color: var(--ink-subtle);
}

.waitlist-form input:invalid:not(:placeholder-shown) {
  border-color: var(--ink-subtle);
}

.waitlist-form__note,
.waitlist-form__privacy {
  margin: 12px 0 0;
  color: var(--ink-subtle);
  font-size: 12px;
  line-height: 1.45;
}

.waitlist-form__privacy {
  text-align: center;
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 16px;
    padding-inline: 24px;
  }

  .site-nav a {
    font-size: 13px;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    min-height: auto;
    padding-top: 72px;
  }

  .hero__copy {
    max-width: 960px;
  }

  .hero__copy h1 {
    max-width: 940px;
    letter-spacing: -3.5px;
  }

  .problem-section__lead {
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
    gap: 56px;
  }

  .problem-section__lead h2 {
    font-size: clamp(46px, 5vw, 56px);
    line-height: 1.1;
  }

  .problem-section__problems {
    grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr) 1px minmax(0, 1fr);
    gap: 32px;
  }

  .problem-item {
    width: auto;
  }
}

@media (max-width: 1180px) {
  .hero__photo-stack {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }
}

@media (max-width: 700px) {
  .site-header__inner {
    min-height: 72px;
    padding-top: 18px;
  }

  .button--compact {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 14px;
  }

  .hero__inner {
    padding-top: 52px;
    padding-bottom: 56px;
    display: grid;
    grid-template-columns: 1fr 1.4fr 1.1fr;
    gap: 56px clamp(16px, 6vw, 32px);
    align-items: start;
  }

  .hero__copy {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .hero__photo-stack {
    display: contents;
  }

  .hero__photo-card {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .hero__photo-card--left-top {
    display: none;
  }

  .hero__photo-card--left-bottom {
    margin-top: 8px;
  }

  .hero__photo-card--right-top {
    margin-top: 24px;
    aspect-ratio: 3 / 2;
  }

  .hero__copy h1 {
    font-size: clamp(43px, 13vw, 58px);
    letter-spacing: -1.8px;
    line-height: 1.03;
  }

  .hero__copy p {
    margin-top: 24px;
    margin-bottom: 28px;
    font-size: 16px;
  }

  .product-preview picture {
    position: relative;
    width: min(100%, 360px);
    margin-inline: auto;
    padding: 0 0 24px;
    overflow: hidden;
    border: 7px solid #171717;
    border-radius: 44px;
    background:
      url("./assets/skelivo-mobile.png") center bottom 24px / 100% auto no-repeat,
      linear-gradient(#f2f2f2 50%, #ffffff 50%);
    box-shadow: 0 0 0 2px #777774, 0 0 0 3px #d0ceca,
      0 18px 40px -16px rgb(0 0 0 / 30%);
  }

  .product-preview picture::before,
  .product-preview picture::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 999px;
    background: #111111;
    pointer-events: none;
  }

  .product-preview picture::before {
    top: 0;
    margin-top: calc(6.4% - 11px);
    width: 28%;
    height: 22px;
  }

  .product-preview picture::after {
    bottom: 8px;
    width: 34%;
    height: 4px;
  }

  .product-preview img {
    border: 0;
    border-radius: 0;
    /* ponytail: crop offsets match this screenshot; update them when it changes.
       The background preserves the input/footer below the removed blank band. */
    clip-path: inset(0 0 18%);
    margin-bottom: -13.3%;
  }

  .plan-card {
    width: 74%;
    padding: 14px;
  }

  .plan-card__intro h2 {
    margin-top: 12px;
  }

  .route-list {
    margin-top: 14px;
  }

  .route-stage {
    padding: 8px;
    grid-template-columns: 14px 1fr;
    gap: 5px;
  }

  .branch-card {
    top: 39%;
    width: 56%;
    padding: 14px;
  }

  .branch-card h3 {
    margin: 10px 0 7px;
  }

  .branch-card p {
    margin-bottom: 10px;
  }

  .problem-section__inner {
    padding-top: 80px;
    padding-bottom: 80px;
    gap: 64px;
  }

  .problem-section__intro {
    gap: 24px;
  }

  .problem-section__lead {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .problem-section__lead h2 {
    font-size: 40px;
    letter-spacing: -0.8px;
    line-height: 46px;
  }

  .problem-section__lead > p {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 24px;
  }

  .problem-section__problems {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .problem-item {
    width: 100%;
  }

  .problem-item h3 {
    min-height: auto;
  }

  .problem-section__divider {
    width: 100%;
    height: 1px;
  }

  .problem-section__transition {
    padding-top: 32px;
    font-size: 28px;
    letter-spacing: -0.5px;
    line-height: 34px;
  }
}

@media (max-width: 440px) {
  .wordmark {
    font-size: 19px;
  }

  .journey-demo {
    width: calc(100% + 8px);
    margin-left: -4px;
  }

  .plan-card__intro h2 {
    font-size: 18px;
  }

  .plan-card__intro p,
  .route-stage small {
    font-size: 9px;
  }

  .route-stage strong,
  .route-stage__marker,
  .eyebrow,
  .branch-card p {
    font-size: 10px;
  }

  .branch-card h3 {
    font-size: 17px;
  }

  .branch-card__status {
    padding: 7px 8px;
    font-size: 9px;
  }

  .waitlist-form {
    padding: 28px 22px 24px;
  }

  .waitlist-form__content h2 {
    font-size: 28px;
  }
}

@media (max-width: 1100px) {
  :root {
    --section-air: 160px;
  }

  .metalearning__header h2 {
    font-size: 68px;
    letter-spacing: -3.4px;
  }

  .metalearning__principles {
    margin-top: var(--section-air);
    gap: 14px;
  }

  .metalearning__principle {
    min-height: 270px;
    padding: 30px 24px;
  }

  .metalearning__arrow--first {
    left: calc(33.333% - 90px);
  }

  .metalearning__arrow--second {
    left: calc(66.666% - 90px);
  }

  .metalearning__arrow {
    width: 230px;
    height: 130px;
  }
}

@media (max-width: 900px) {
  .metalearning__principles {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .metalearning__principle {
    min-height: 0;
    padding: 32px;
  }

  .metalearning__principle:nth-of-type(2),
  .metalearning__principle:nth-of-type(3) {
    margin-top: 0;
  }

  .metalearning__arrow {
    display: none;
  }
}

@media (max-width: 700px) {
  :root {
    --section-air: 112px;
  }

  .metalearning__header h2 {
    font-size: clamp(46px, 12vw, 58px);
    letter-spacing: -2.2px;
    line-height: 1.04;
  }

  .metalearning__principles {
    margin-top: var(--section-air);
  }

  .metalearning__principle {
    min-height: 0;
    padding: 28px 24px 32px;
  }

  .metalearning__principle h3 {
    font-size: 32px;
    letter-spacing: -1.2px;
  }

  .metalearning__principle p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 24px;
  }

}

@media (max-width: 460px) {
  .metalearning__header h2 {
    font-size: 43px;
    letter-spacing: -1.8px;
  }

}

@media (max-width: 1200px) {
  .product-experience__inner {
    padding-top: 0;
    padding-bottom: 104px;
  }

  .journey-scroll {
    margin-top: 0;
  }

  .journey-moment {
    min-height: 660px;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 64px;
  }

  .journey-moment--visual-first {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  }
}

@media (max-width: 900px) {
  .product-experience__inner {
    padding-top: 0;
    padding-bottom: 80px;
  }

  .journey-scroll {
    margin-top: 0;
  }

  .journey-moment,
  .journey-moment--visual-first {
    min-height: 0;
    padding: 72px 0;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .journey-moment:first-child {
    min-height: 0;
    padding-top: 0;
  }

  .journey-moment--visual-first .journey-moment__copy {
    order: 1;
  }

  .journey-moment--visual-first .journey-ui {
    order: 2;
  }

  .journey-moment--visual-first .journey-plan-nav {
    order: 2;
  }

  .journey-moment--visual-first .branch-demo {
    order: 2;
  }

  .journey-moment__copy,
  .journey-moment__copy p {
    max-width: 560px;
  }

  .journey-moment__copy h3 {
    font-size: clamp(40px, 7vw, 52px);
  }

  .journey-ui,
  .journey-prompt,
  .journey-plan-nav,
  .journey-chat,
  .branch-demo {
    max-width: 680px;
  }
}

@media (max-width: 560px) {
  .journey-moment {
    padding: 56px 0;
    gap: 36px;
  }

  .journey-moment:first-child {
    padding-top: 0;
  }

  .journey-moment__copy h3 {
    margin-top: 22px;
    font-size: 38px;
    letter-spacing: -1.4px;
  }

  .journey-moment__copy p {
    font-size: 16px;
    line-height: 24px;
  }

  .journey-prompt {
    padding: 20px;
  }

  .journey-chat__header {
    margin: 0 20px;
  }

  .journey-chat__messages {
    padding: 0 20px 20px;
  }

  .journey-chat__composer-wrap {
    padding-right: 20px;
    padding-left: 20px;
  }

  .journey-composer textarea,
  .journey-composer__typing {
    font-size: 14px;
  }

  .journey-plan-nav {
    min-height: 0;
  }

  .branch-demo {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .branch-demo__conversation {
    padding: 28px 20px;
  }

  .branch-demo__sidebar {
    min-height: 300px;
  }
}

@media (max-width: 1200px) {
  .why-skelivo__inner {
    min-height: 0;
  }

  .why-skelivo__heading-row {
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 56px;
  }

  .why-skelivo__heading-row h2 {
    font-size: clamp(46px, 5vw, 56px);
    line-height: 1.1;
  }

  .comparison-table__headers,
  .comparison-row {
    grid-template-columns: 19% repeat(3, 27%);
  }

  .comparison-row h3,
  .comparison-row div {
    padding-inline: 18px;
  }

  .comparison-row h3 {
    padding-left: 0;
  }

  .comparison-table::before {
    width: 27%;
  }

  .trust-section__inner {
    min-height: 0;
    gap: 80px;
  }

  .trust-section__hero {
    height: auto;
    grid-template-columns: 1fr;
    gap: 64px;
    overflow: visible;
  }

  .trust-section__copy {
    width: min(100%, 680px);
  }

  .revision-visual {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .why-skelivo__inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .why-skelivo__intro {
    margin-bottom: 64px;
  }

  .why-skelivo__heading-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .why-skelivo__heading-row h2 {
    font-size: clamp(40px, 12vw, 52px);
    letter-spacing: -1px;
    line-height: 1.08;
  }

  .why-skelivo__heading-row p {
    font-size: 16px;
    line-height: 24px;
  }

  .comparison-table {
    overflow: visible;
  }

  .comparison-table::before,
  .comparison-table__headers {
    display: none;
  }

  .comparison-table__body {
    display: grid;
    gap: 16px;
  }

  .comparison-row {
    min-height: 0;
    display: block;
    overflow: hidden;
    border: 1px solid var(--hairline);
    border-radius: var(--radius-lg);
    background: var(--surface-1);
  }

  .comparison-row h3 {
    padding: 20px;
    border-bottom: 1px solid var(--hairline);
    font-size: 18px;
    line-height: 24px;
  }

  .comparison-row div {
    position: relative;
    min-height: 96px;
    padding: 40px 20px 20px;
    border-bottom: 1px solid var(--hairline-soft);
  }

  .comparison-row div::before {
    position: absolute;
    top: 15px;
    left: 20px;
    color: var(--ink-subtle);
    content: attr(data-column);
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
  }

  .comparison-row .comparison-row__skelivo {
    border-bottom: 0;
    border-left: 4px solid var(--report-blue);
    background: var(--surface-1);
  }

  .why-skelivo__closing {
    margin-top: 64px;
    padding: 40px 0 0;
    font-size: 18px;
    line-height: 27px;
  }

  .trust-section__inner {
    padding-top: 80px;
    padding-bottom: 80px;
    gap: 72px;
  }

  .trust-section__copy {
    width: 100%;
  }

  .trust-section__copy h2 {
    font-size: clamp(40px, 12vw, 52px);
    letter-spacing: -1px;
    line-height: 1.08;
  }

  .trust-section__intro {
    font-size: 16px;
    line-height: 24px;
  }

  .revision-visual {
    width: 100%;
    height: auto;
    padding-bottom: 24px;
  }

  .revision-visual__backdrop {
    top: 24px;
    right: 0;
    bottom: 0;
    left: 24px;
    width: auto;
    height: auto;
  }

  .revision-card {
    width: calc(100% - 24px);
    height: auto;
    padding: 20px;
  }

  .revision-card__journey-row {
    height: auto;
    gap: 12px;
  }

  .revision-reason > p {
    font-size: 14px;
    line-height: 21px;
  }

  .revision-evidence,
  .revision-preserved {
    align-items: flex-start;
    font-size: 13px;
  }

  .revision-change__route strong {
    font-size: 14px;
    line-height: 21px;
  }

  .revision-change__route span:not(.revision-change__marker) {
    font-size: 13px;
    line-height: 19px;
  }

  .revision-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .revision-action {
    min-width: 0;
    padding-inline: 8px;
    font-size: 13px;
  }

  .trust-commitments {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .trust-commitment,
  .trust-commitment:nth-child(even) {
    min-height: 0;
    padding: 32px 0;
    border-left: 0;
  }

  .trust-commitment:nth-child(n + 2) {
    border-top: 1px solid var(--inverse-ink-muted);
  }

  .trust-section__closing {
    align-items: stretch;
    gap: 20px;
  }

  .trust-section__closing > span {
    height: auto;
    min-height: 96px;
  }

  .trust-section__closing p {
    font-size: 28px;
    letter-spacing: -0.5px;
    line-height: 34px;
  }

  .final-cta__inner {
    min-height: 0;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .final-cta__content {
    max-width: 680px;
  }

  .final-cta__content h2 {
    font-size: clamp(43px, 13vw, 58px);
    letter-spacing: -1.8px;
    line-height: 1.03;
  }

  .final-cta__content > p {
    margin-top: 24px;
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 430px) {
  .revision-card {
    padding: 16px;
  }

  .revision-card__journey-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .revision-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-footer__inner {
    min-height: 0;
    padding-top: 28px;
    padding-bottom: 32px;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .site-footer__identity {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .site-footer__links {
    flex-wrap: wrap;
    gap: 12px 24px;
  }
}

/* Only JavaScript-enhanced targets wait for an entrance. Without JS, all
   content keeps its normal visible state. Animation never changes layout. */
@media (prefers-reduced-motion: no-preference) {
  .product-experience__title {
    opacity: var(--title-opacity, 1);
    transform: translateY(calc((var(--title-opacity, 1) - 1) * 40px));
    transition: opacity 180ms ease-out, transform 180ms ease-out;
  }

  .is-motion-pending {
    opacity: 0;
  }
}

@media print {
  .product-experience__title,
  [data-motion] {
    opacity: 1 !important;
    transform: none !important;
  }

  [data-motion="draw"] path {
    opacity: 1 !important;
    stroke-dashoffset: 0 !important;
  }

  .journey-composer.is-typewriter textarea {
    color: var(--ink) !important;
  }

  .journey-composer__typing {
    display: none !important;
  }

  [data-typewriter] .journey-composer__send {
    opacity: 1 !important;
    transform: none !important;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
