:root {
  --ink: #241006;
  --muted: #74675b;
  --line: #e6dccd;
  --panel: #fffaf2;
  --page: #f8f3ea;
  --soft: #f0e8dc;
  --blue: #43251b;
  --blue-dark: #2d160f;
  --blue-soft: #efe4d7;
  --gold: #b88645;
  --green: #4d8069;
  --red: #ef4d62;
  --shadow: 0 18px 45px rgba(61, 36, 20, 0.1);
  --max: 1128px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--page);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--page);
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

a {
  color: var(--blue-dark);
  font-weight: 650;
}

.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.home-shell {
  display: block;
  min-height: 100vh;
  background: #fffaf2;
}

.home-main {
  width: 100%;
}

.home-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 25;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  padding: 30px clamp(20px, 5vw, 48px);
}

.home-brand {
  justify-self: center;
  color: #fff;
  font-size: 24px;
  font-weight: 860;
  letter-spacing: 0;
  text-shadow: 0 2px 14px rgba(36, 16, 6, 0.24);
}

.home-menu {
  width: 56px;
  height: 56px;
  border: 0;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.95);
  font-size: 23px;
}

.home-page {
  min-height: 100vh;
  background: #fffaf2;
}

.home-hero {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  background: #ded5ca;
}

.home-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 16, 6, 0.2), transparent 22%, transparent 78%);
  content: "";
  pointer-events: none;
}

.home-slider {
  position: relative;
  min-height: inherit;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.home-slider:active {
  cursor: grabbing;
}

.home-slider:focus-visible {
  outline: 3px solid rgba(67, 37, 27, 0.42);
  outline-offset: -3px;
}

.home-slider img {
  width: 100%;
  height: 70vh;
  min-height: 540px;
  display: block;
  object-fit: cover;
  object-position: var(--home-pos, center top);
  pointer-events: none;
}

.home-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.82);
  font-size: 36px;
  line-height: 1;
  transform: translateY(-50%);
  opacity: 0;
  transition:
    opacity 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.home-arrow:hover {
  background: rgba(255, 250, 242, 0.96);
  transform: translateY(-50%) scale(1.04);
}

.home-slider:hover .home-arrow,
.home-slider:focus-within .home-arrow {
  opacity: 1;
}

.home-arrow-left {
  left: 18px;
}

.home-arrow-right {
  right: 18px;
}

.home-dots {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.home-dots button {
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-radius: 50%;
  padding: 0;
  background: transparent;
  opacity: 0.95;
}

.home-dots button.is-active {
  background: #fff;
}

.home-copy {
  max-width: 620px;
  padding: 32px clamp(20px, 5vw, 48px) 46px;
}

.home-copy h1 {
  max-width: 520px;
  margin: 0;
  color: #172b43;
  font-size: clamp(29px, 7vw, 45px);
  font-weight: 840;
  line-height: 1.15;
  letter-spacing: 0;
}

.home-start {
  min-width: 160px;
  min-height: 56px;
  margin-top: 34px;
  border: 0;
  border-radius: 999px;
  padding: 0 28px;
  color: #fff;
  background: #161616;
  font-size: 15px;
  font-weight: 820;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.home-start:hover {
  transform: translateY(-1px);
  background: var(--blue-dark);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 243, 234, 0.95);
  backdrop-filter: blur(14px);
}

.age-topbar {
  background: rgba(255, 250, 242, 0.98);
}

.age-topbar-inner {
  width: min(var(--max), calc(100% - 48px));
  min-height: 86px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  gap: 12px;
}

.age-brand {
  justify-self: center;
}

.profile-topbar {
  background: rgba(255, 250, 242, 0.98);
}

.profile-topbar-inner {
  width: min(var(--max), calc(100% - 48px));
  min-height: 86px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  gap: 14px;
}

.profile-head {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.profile-brand {
  color: var(--ink);
  font-size: 30px;
  font-weight: 760;
  letter-spacing: 0;
}

.profile-progress {
  width: min(340px, 64vw);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.profile-progress span {
  height: 8px;
  border-radius: 999px;
  background: #eee8df;
}

.profile-progress span.is-active {
  background: var(--blue);
}

.topbar-inner {
  width: min(var(--max), calc(100% - 48px));
  min-height: 86px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(165px, 1fr) auto auto minmax(180px, 250px) 52px;
  align-items: center;
  gap: 18px;
}

.quiz-topbar-inner {
  width: min(var(--max), calc(100% - 48px));
  min-height: 86px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 14px;
}

.topbar-spacer {
  display: block;
  width: 48px;
  height: 48px;
}

.header-left {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.back-button {
  flex: 0 0 auto;
}

.brand {
  color: var(--ink);
  font-size: 30px;
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
}

.deal-copy {
  color: var(--ink);
  font-size: 18px;
  font-weight: 820;
  text-align: center;
  white-space: nowrap;
}

.timer {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--blue-dark);
}

.timer-block {
  display: grid;
  justify-items: center;
  line-height: 1;
}

.timer-block strong {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.timer-block small {
  margin-top: 3px;
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 650;
}

.timer-sep {
  color: #b9aa99;
  font-size: 31px;
  font-weight: 800;
  line-height: 0.95;
}

.top-cta {
  min-height: 52px;
  border: 6px solid #d8d0c7;
  border-radius: 999px;
  padding: 0 28px;
  color: #fffaf2;
  background: var(--blue);
  font-size: 15px;
  font-weight: 890;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.top-cta:hover {
  transform: translateY(-1px);
  background: var(--blue-dark);
}

.icon-button {
  width: 48px;
  height: 48px;
  border: 1px solid #ddcfbe;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fffaf2;
  color: var(--ink);
  font-size: 25px;
  line-height: 1;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.icon-button:hover {
  transform: translateY(-1px);
  border-color: #c0a98f;
  background: #f3eadf;
}

.menu-button {
  justify-self: end;
  font-size: 22px;
}

.progress-track {
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, var(--blue-dark) var(--progress), #e9dfd1 0);
}

.main {
  flex: 1;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.first-main {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.quiz-page {
  padding: 66px 0 34px;
}

.quiz-photo-page {
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(26px, 5vw, 64px);
}

.quiz-no-visual-page {
  min-height: auto;
  display: block;
  padding-top: 30px;
}

.quiz-no-visual-page .quiz-content-panel {
  width: min(560px, 100%);
  margin: 0 auto;
}

.quiz-visual-card {
  position: sticky;
  top: 112px;
  min-height: min(670px, calc(100vh - 152px));
  overflow: hidden;
  border-radius: 8px;
  background: #e6d9c9;
  box-shadow: 0 20px 46px rgba(61, 36, 20, 0.12);
}

.quiz-visual-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--quiz-pos, center center);
}

.quiz-visual-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 44%, rgba(36, 16, 6, 0.7)),
    linear-gradient(90deg, rgba(36, 16, 6, 0.22), transparent 56%);
}

.quiz-visual-copy {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  color: #fffaf2;
}

.quiz-visual-copy span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quiz-visual-copy strong {
  display: block;
  max-width: 360px;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.02;
}

.quiz-content-panel {
  min-width: 0;
}

.quiz-content-panel .page-title {
  margin-left: 0;
  text-align: left;
}

.quiz-content-panel .choice-wrap,
.quiz-content-panel .metric-panel {
  margin-right: 0;
  margin-left: 0;
}

.quiz-kicker {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-page {
  padding: 68px 0 36px;
}

.age-page {
  max-width: 760px;
  margin: 0 auto;
  padding-top: 58px;
}

.age-title {
  max-width: 700px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(34px, 4.8vw, 54px);
  font-weight: 880;
  line-height: 1.05;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
}

.age-title span {
  display: block;
}

.age-subtitle {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 820;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: none;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}

.page-title {
  max-width: 760px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 48px);
  font-weight: 860;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: center;
}

.page-subtitle {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 650;
  line-height: 1.34;
  text-align: center;
}

.quiz-note {
  margin: 30px 0 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.age-grid {
  display: grid;
  width: min(760px, 100%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
  margin: 34px auto 0;
}

.age-card {
  position: relative;
  min-height: 0;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 26px;
  background: #efe7dc;
  box-shadow: 0 14px 36px rgba(61, 36, 20, 0.07);
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease;
}

.age-card:hover,
.age-card.is-selected {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(61, 36, 20, 0.16);
}

.age-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--pos, center top);
}

.age-cta {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 28px 0 24px;
  border-radius: 0 0 26px 26px;
  color: #fffaf2;
  background: var(--blue);
  font-size: 24px;
  font-weight: 830;
  text-align: left;
}

.arrow-pill {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: var(--blue);
  background: #fffaf2;
  font-size: 25px;
  line-height: 1;
}

.legal-line {
  max-width: 760px;
  margin: 36px auto 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(18px, 2.6vw, 30px);
  line-height: 1.22;
  text-align: center;
}

.choice-wrap {
  max-width: 560px;
  margin: 42px auto 0;
}

.choice-card {
  width: 100%;
  min-height: 82px;
  margin: 0 0 14px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 46px 1fr 28px;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.88);
  text-align: left;
  box-shadow: none;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.choice-card:hover,
.choice-card.is-selected {
  transform: translateY(-1px);
  border-color: var(--blue);
  background: #fff8ed;
}

.choice-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  background: #eee3d2;
  font-size: 21px;
  font-weight: 850;
}

.choice-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.choice-copy {
  min-width: 0;
}

.choice-title {
  color: var(--ink);
  font-size: 18px;
  font-weight: 790;
  line-height: 1.22;
}

.choice-desc {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.radio-dot,
.check-dot {
  width: 25px;
  height: 25px;
  border: 1.5px solid #c3b5a5;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: #fffaf2;
  transition:
    background 160ms ease,
    border-color 160ms ease;
}

.check-dot {
  border-radius: 7px;
}

.choice-card.is-selected .radio-dot,
.choice-card.is-selected .check-dot {
  border-color: var(--blue);
  background: var(--blue);
}

.choice-card.is-selected .radio-dot::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.choice-card.is-selected .check-dot::after {
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  content: "✓";
}

.multi-hint {
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.issue-page {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 44px 0 28px;
}

.issue-title {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(34px, 5.8vw, 54px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: center;
}

.issue-hint {
  margin: 26px auto 0;
  color: #6f6258;
  font-size: clamp(20px, 3.6vw, 30px);
  font-weight: 560;
  line-height: 1.25;
  text-align: center;
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.issue-card {
  min-height: 124px;
  border: 1px solid #e0d3c3;
  border-radius: 26px;
  display: grid;
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.92);
  text-align: left;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.issue-card:hover,
.issue-card.is-selected {
  transform: translateY(-1px);
  border-color: var(--blue);
  box-shadow: 0 16px 34px rgba(67, 37, 27, 0.1);
}

.issue-card-row {
  min-height: 124px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 14px;
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.98);
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 820;
  line-height: 1.12;
}

.issue-card-row > span:nth-child(2) {
  min-width: 0;
  overflow-wrap: anywhere;
}

.issue-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  background: #eee3d2;
  font-size: 20px;
  font-weight: 850;
}

.issue-check {
  width: 31px;
  height: 31px;
  border: 2px solid #cfc1b1;
  border-radius: 8px;
  display: grid;
  place-items: center;
  justify-self: end;
  background: #fffaf2;
}

.issue-card.is-selected .issue-check {
  border-color: var(--blue);
  background: var(--blue);
}

.issue-card.is-selected .issue-check::after {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  content: "✓";
}

.issue-body-tension .issue-card-row {
  grid-template-columns: minmax(0, 1fr) 34px;
}

.issue-body-tension .issue-icon {
  display: none;
}

.bottom-action {
  position: sticky;
  bottom: 0;
  z-index: 15;
  margin-top: 34px;
  padding: 20px 0 22px;
  border-top: 1px solid var(--line);
  background: rgba(248, 243, 234, 0.92);
  backdrop-filter: blur(14px);
}

.primary-button {
  width: min(360px, 100%);
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: #fffaf2;
  background: var(--blue);
  font-size: 16px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    background 160ms ease,
    opacity 160ms ease;
}

.primary-button:hover {
  transform: translateY(-1px);
  background: var(--blue-dark);
}

.primary-button:disabled {
  opacity: 0.38;
  transform: none;
}

.center {
  text-align: center;
}

.story-layout {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  align-items: center;
  gap: 64px;
  padding: 68px 0 34px;
}

.story-copy {
  max-width: 430px;
}

.story-title {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 840;
  line-height: 1.03;
  letter-spacing: 0;
}

.story-text {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.3;
}

.story-media {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-radius: 8px;
  background: #efe5d7;
}

.story-media img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  display: block;
  object-fit: cover;
}

.story-card {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}

.story-card .story-title {
  color: var(--ink);
  font-size: clamp(32px, 4vw, 43px);
}

.story-card .story-text {
  color: var(--muted);
  font-size: 18px;
}

.story-card .story-media {
  min-height: 330px;
  margin-top: 28px;
  border: 1px solid var(--line);
}

.transformation-page {
  width: min(560px, 100%);
  margin: 0 auto;
  padding: 42px 0 28px;
}

.transformation-title {
  max-width: 480px;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(40px, 6vw, 58px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.transformation-slider {
  position: relative;
  overflow: hidden;
  border: 1px solid #e4d6c6;
  border-radius: 28px;
  background: #efe5d7;
  box-shadow: 0 18px 38px rgba(75, 45, 26, 0.1);
}

.transformation-image {
  width: 100%;
  aspect-ratio: 0.8;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.transformation-arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(96, 67, 47, 0.18);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.86);
  box-shadow: 0 10px 24px rgba(61, 36, 20, 0.18);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}

.transformation-dots {
  min-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.transformation-dots button {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: #d7ccbd;
}

.transformation-dots button.is-active {
  width: 26px;
  height: 6px;
  background: #000;
}

.transformation-proof {
  margin: 8px 0 12px;
  color: #9b8f7d;
  font-size: clamp(17px, 3.4vw, 22px);
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
}

.transformation-reviews {
  display: grid;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid #eadfcc;
  border-radius: 16px;
  background: #fffaf2;
  box-shadow: 0 10px 24px rgba(64, 39, 22, 0.06);
}

.transformation-review-row {
  margin: 0;
  padding: 10px 14px;
  border-bottom: 1px solid #eadfcc;
  background: transparent;
}

.transformation-review-row:last-child {
  border-bottom: 0;
}

.transformation-review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
}

.transformation-review-head strong {
  font-size: 15px;
  font-weight: 900;
}

.transformation-review-head span {
  color: #e99a20;
  font-size: 13px;
  letter-spacing: 1px;
}

.transformation-review-row p {
  margin: 4px 0 0;
  color: #524840;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.38;
}

.transformation-page + .bottom-action {
  margin-top: 0;
  border-top: 0;
  background: linear-gradient(180deg, rgba(248, 243, 234, 0.96), var(--page) 24%);
}

.transformation-page + .bottom-action .primary-button {
  width: min(520px, calc(100% - 32px));
  min-height: 58px;
  border-radius: 999px;
  background: var(--blue);
  font-size: 17px;
  text-transform: none;
}

.transformation-page + .bottom-action .primary-button:hover {
  background: var(--blue-dark);
}

.social-proof-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 34px 0 38px;
  text-align: center;
}

.social-proof-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(46px, 6vw, 70px);
  font-weight: 850;
  line-height: 1.03;
  letter-spacing: 0;
}

.social-proof-text {
  max-width: 720px;
  margin: 18px auto 0;
  color: #5f554d;
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 520;
  line-height: 1.35;
}

.social-proof-media {
  width: 100%;
  margin-top: 42px;
  overflow: hidden;
  border-radius: 28px;
  background: #f1eadf;
}

.social-proof-media img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
}

.press-strip {
  margin-top: 38px;
}

.press-strip p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 840;
  line-height: 1.05;
}

.press-logos {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  color: #766e66;
  opacity: 0.72;
}

.press-logos span {
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 0 14px;
  border-right: 1px solid var(--line);
  font-size: clamp(18px, 2.4vw, 30px);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  line-height: 0.9;
}

.press-logos span:nth-child(2) {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(14px, 2vw, 23px);
  line-height: 0.9;
}

.press-logos span:last-child {
  border-right: 0;
}

.social-proof-action {
  margin-top: 40px;
}

.social-proof-action .primary-button {
  width: min(640px, 100%);
  min-height: 78px;
  font-size: 26px;
  text-transform: uppercase;
}

.session-showcase-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 34px 0 42px;
}

.session-showcase-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(44px, 6vw, 66px);
  font-weight: 820;
  line-height: 1.08;
  letter-spacing: 0;
}

.session-showcase-copy {
  margin-top: 28px;
  display: grid;
  gap: 22px;
  color: #5f554d;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 500;
  line-height: 1.36;
}

.session-showcase-copy p {
  margin: 0;
}

.session-showcase-copy strong {
  color: var(--ink);
  font-weight: 850;
}

.device-showcase {
  position: relative;
  min-height: 520px;
  margin-top: 44px;
  overflow: hidden;
  border-radius: 30px;
  display: flex;
  align-items: flex-end;
  padding: 64px 36px 48px;
  background:
    radial-gradient(circle at 76% 24%, rgba(255, 250, 242, 0.9), transparent 34%),
    #f1eee5;
}

.device-showcase::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 250, 242, 0.72), transparent 48%);
  content: "";
  pointer-events: none;
}

.device-showcase-caption {
  display: none;
}

.laptop-frame {
  position: relative;
  z-index: 1;
  width: 74%;
  max-width: 580px;
}

.laptop-screen {
  position: relative;
  overflow: hidden;
  border: 8px solid #1b1714;
  border-bottom-width: 18px;
  border-radius: 18px 18px 8px 8px;
  aspect-ratio: 16 / 10;
  background: #1b1714;
  box-shadow: 0 26px 46px rgba(36, 16, 6, 0.22);
}

.laptop-screen::before {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 62px;
  height: 13px;
  border-radius: 0 0 10px 10px;
  background: #111;
  content: "";
  transform: translateX(-50%);
}

.laptop-screen img,
.phone-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.screen-timer {
  position: absolute;
  top: 28px;
  right: 0;
  left: 0;
  color: rgba(36, 16, 6, 0.22);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.screen-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding-left: 5px;
  color: #fffaf2;
  background: rgba(255, 250, 242, 0.42);
  font-size: 34px;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(3px);
}

.screen-progress {
  position: absolute;
  right: 16px;
  bottom: 13px;
  left: 16px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.72);
}

.screen-progress span {
  width: 19%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--blue);
}

.laptop-base {
  width: 86%;
  height: 20px;
  margin: 0 auto;
  border-radius: 0 0 22px 22px;
  background: linear-gradient(180deg, #d7d1c7, #a8a099);
  box-shadow: 0 18px 26px rgba(36, 16, 6, 0.18);
}

.phone-frame {
  position: absolute;
  right: 42px;
  bottom: 52px;
  z-index: 2;
  width: 27%;
  min-width: 138px;
  max-width: 210px;
  overflow: hidden;
  border: 8px solid #1b1714;
  border-radius: 32px;
  aspect-ratio: 9 / 18.4;
  background: #d8d6cf;
  box-shadow: 0 24px 38px rgba(36, 16, 6, 0.28);
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 3;
  width: 54px;
  height: 16px;
  border-radius: 999px;
  background: #111;
  transform: translateX(-50%);
}

.phone-video-panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #c9c9c5;
}

.phone-video-panel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  background: #c9c9c5;
}

.phone-player-ui {
  position: absolute;
  right: 12px;
  bottom: 14px;
  left: 12px;
  display: grid;
  gap: 6px;
  color: rgba(36, 16, 6, 0.82);
  font-size: 10px;
  font-weight: 650;
  line-height: 1;
}

.phone-progress-line {
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(36, 16, 6, 0.16);
}

.phone-progress-line span {
  width: 19%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--blue);
}

.phone-time-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 8px;
}

.phone-time-row span:nth-child(2) {
  text-align: right;
}

.session-showcase-action {
  margin-top: 44px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.session-showcase-action .primary-button {
  width: min(690px, 100%);
  min-height: 78px;
  border-radius: 999px;
  font-size: 25px;
}

.profile-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 0 60px;
}

.profile-question {
  max-width: 700px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(39px, 5.2vw, 58px);
  font-weight: 790;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: center;
}

.build-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 32px;
  margin-top: 54px;
}

.build-photo-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e8dfd2;
  border-radius: 26px;
  padding: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  aspect-ratio: 1 / 1.18;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.78);
  text-align: left;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.build-photo-card:hover,
.build-photo-card.is-selected {
  transform: translateY(-2px);
  border-color: var(--blue);
  box-shadow: 0 18px 42px rgba(61, 36, 20, 0.13);
}

.build-photo-media {
  min-height: 0;
  display: block;
  overflow: hidden;
  background: #f3ece4;
}

.build-photo-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.build-photo-copy {
  min-height: 112px;
  display: grid;
  grid-template-columns: 1fr 44px;
  align-items: center;
  gap: 16px;
  padding: 18px 24px 22px;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.96);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 720;
  line-height: 1.15;
}

.build-radio {
  width: 44px;
  height: 44px;
  border: 2px solid #d6c9b8;
  border-radius: 50%;
  display: block;
  background: #fffaf2;
}

.build-photo-card.is-selected .build-radio {
  border: 12px solid var(--blue);
}

.zones-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 52px 0 122px;
}

.zones-title {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(38px, 5.1vw, 56px);
  font-weight: 790;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: center;
}

.zones-hint {
  margin: 24px 0 0;
  color: #5f554d;
  font-size: clamp(18px, 2.7vw, 30px);
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
}

.zones-list {
  display: grid;
  gap: 22px;
  margin-top: 48px;
}

.zone-image-card {
  position: relative;
  min-height: 152px;
  overflow: hidden;
  border: 1px solid #e6ded2;
  border-radius: 30px;
  display: flex;
  align-items: center;
  padding: 0 230px 0 34px;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.78);
  text-align: left;
  box-shadow: 0 12px 34px rgba(61, 36, 20, 0.04);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.zone-image-card:hover,
.zone-image-card.is-selected {
  transform: translateY(-1px);
  border-color: var(--blue);
  box-shadow: 0 16px 38px rgba(61, 36, 20, 0.12);
}

.zone-name {
  position: relative;
  z-index: 2;
  color: var(--ink);
  font-size: clamp(23px, 2.9vw, 29px);
  font-weight: 760;
  line-height: 1.1;
}

.zone-check {
  position: absolute;
  top: 50%;
  left: 34px;
  z-index: 2;
  width: 0;
  height: 0;
  opacity: 0;
}

.zone-image-card.is-selected .zone-name::after {
  width: 28px;
  height: 28px;
  margin-left: 14px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #fffaf2;
  background: var(--blue);
  font-size: 17px;
  font-weight: 900;
  vertical-align: middle;
  content: "✓";
}

.zone-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 230px;
  overflow: hidden;
}

.zone-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--zone-pos, center center);
}

.experts-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 44px 0 42px;
}

.experts-title {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(38px, 5.2vw, 58px);
  font-weight: 790;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: center;
}

.experts-list {
  display: grid;
  gap: 24px;
  margin-top: 54px;
}

.expert-card {
  min-height: 178px;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 146px 1fr;
  align-items: center;
  gap: 28px;
  padding: 18px 26px 18px 18px;
  background: #f1e9df;
}

.expert-card img {
  width: 128px;
  height: 128px;
  border-radius: 18px;
  display: block;
  object-fit: cover;
  object-position: center top;
  background: #fffaf2;
}

.expert-copy {
  min-width: 0;
}

.expert-copy h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 790;
  line-height: 1.05;
}

.expert-copy ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #5f554d;
  font-size: clamp(18px, 2.5vw, 25px);
  font-weight: 500;
  line-height: 1.2;
}

.expert-copy li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.expert-check {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  margin-top: 4px;
  color: #fffaf2;
  background: var(--blue);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.experts-action {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.experts-action .primary-button {
  width: min(670px, 100%);
  min-height: 78px;
  border-radius: 999px;
  font-size: 25px;
}

.metric-panel {
  max-width: 560px;
  margin: 38px auto 0;
  padding: 38px 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.9);
}

.unit-toggle {
  width: 150px;
  height: 34px;
  margin: 0 auto 28px;
  padding: 3px;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--soft);
}

.unit-toggle span {
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.unit-toggle .active {
  color: var(--ink);
  background: #fffaf2;
  box-shadow: 0 2px 8px rgba(61, 36, 20, 0.08);
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 18px;
  border-bottom: 1.5px solid var(--blue-dark);
}

.metric-input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: clamp(44px, 8vw, 72px);
  font-weight: 820;
  line-height: 1;
  text-align: center;
}

.metric-unit {
  padding-bottom: 10px;
  color: var(--ink);
  font-size: clamp(31px, 5vw, 44px);
  font-weight: 820;
}

.consent-row {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  color: #3f434d;
  font-size: 13px;
  line-height: 1.36;
}

.consent-row input {
  width: 22px;
  height: 22px;
  accent-color: var(--blue);
}

.error-line {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--red);
  font-size: 14px;
  font-weight: 750;
}

.stats-page {
  width: min(560px, 100%);
  min-height: calc(100svh - 160px);
  margin: 0 auto;
  padding: 28px 0 110px;
}

.stats-content {
  width: 100%;
}

.stats-content .page-title {
  max-width: 430px;
  margin-inline: auto;
  text-align: center;
}

.stats-picker-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 34px;
}

.stats-picker-column {
  min-width: 0;
  text-align: center;
}

.stats-picker-column h2 {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 850;
}

.stats-picker-shell {
  position: relative;
  overflow: hidden;
}

.stats-picker-highlight {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 52px;
  border-radius: 999px;
  background: #eee6d4;
  transform: translateY(-50%);
  pointer-events: none;
}

.stats-picker-list {
  height: 268px;
  padding: 108px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-padding-block: 108px;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 18%,
    #000 82%,
    transparent
  );
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.stats-picker-list::-webkit-scrollbar {
  display: none;
}

.stats-picker-value {
  position: relative;
  z-index: 1;
  flex: 0 0 52px;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  color: rgba(61, 48, 40, 0.36);
  background: transparent;
  font-size: 18px;
  font-weight: 650;
  text-align: center;
  scroll-snap-align: center;
}

.stats-picker-value.is-selected {
  color: var(--ink);
  background: transparent;
  font-size: 23px;
  font-weight: 920;
}

.weight-picker-page {
  width: min(560px, 100%);
  margin: 0 auto;
  padding: 28px 0 110px;
}

.weight-picker-content {
  width: 100%;
}

.target-weight-picker {
  width: min(330px, 100%);
  margin: 38px auto 0;
}

.target-weight-picker .stats-picker-highlight {
  height: 54px;
}

.target-weight-picker .stats-picker-list {
  height: 320px;
  padding: 133px 0;
  scroll-padding-block: 133px;
}

.target-weight-picker .stats-picker-value {
  flex-basis: 54px;
  min-height: 54px;
  font-size: 18px;
}

.target-weight-picker .stats-picker-value.is-selected {
  font-size: 24px;
}

.first-name-page {
  min-height: calc(100svh - 160px);
  display: grid;
  align-items: center;
  padding: 34px 0 50px;
}

.first-name-content {
  width: min(520px, 100%);
  margin: 0 auto;
}

.first-name-page .page-title span {
  display: block;
  white-space: nowrap;
}

.first-name-page .page-title {
  font-size: clamp(28px, 5.5vw, 42px);
}

.first-name-subtitle {
  margin: 12px auto 0;
  color: #83858b;
  font-size: 17px;
  font-weight: 780;
  line-height: 1.22;
  text-align: center;
}

.first-name-panel {
  margin-top: 28px;
}

.first-name-input {
  width: 100%;
  height: 64px;
  border: 1px solid #dacdbb;
  border-radius: 18px;
  padding: 0 18px;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 12px 30px rgba(61, 36, 20, 0.05);
  font-size: 24px;
  font-weight: 760;
  outline: 0;
  text-align: center;
}

.first-name-input:focus {
  border-color: var(--blue);
  box-shadow:
    0 0 0 4px rgba(67, 37, 27, 0.1),
    0 12px 30px rgba(61, 36, 20, 0.06);
}

.first-name-help {
  margin: 12px auto 0;
  color: #83858b;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
}

.clarity-page {
  width: min(560px, 100%);
  margin: 0 auto;
  padding: 42px 0 30px;
}

.clarity-copy h1 {
  margin: 0;
  color: #111217;
  font-size: clamp(32px, 6vw, 50px);
  font-weight: 920;
  line-height: 1.08;
  letter-spacing: 0;
}

.clarity-copy p {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(16px, 3vw, 21px);
  font-weight: 600;
  line-height: 1.35;
}

.clarity-copy p strong,
.clarity-note strong {
  color: var(--ink);
  font-weight: 900;
}

.clarity-card {
  margin-top: 28px;
  padding: 26px 22px 22px;
  border: 1px solid #eadfcc;
  border-radius: 28px;
  background: #f7f7fb;
  box-shadow: 0 22px 44px rgba(72, 43, 24, 0.08);
}

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

.clarity-column {
  min-height: 308px;
  display: grid;
  justify-items: center;
  align-content: space-between;
  gap: 16px;
  padding: 24px 15px 20px;
  border-radius: 20px;
  background: #fff;
  text-align: center;
}

.clarity-column h2 {
  margin: 0;
  color: #050506;
  font-size: clamp(24px, 5vw, 34px);
  font-weight: 920;
  line-height: 1.08;
  letter-spacing: 0;
}

.clarity-column p {
  margin: 0;
  color: #8b8b91;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.25;
}

.clarity-low-gauge {
  width: 100%;
  display: grid;
  gap: 8px;
}

.clarity-low-gauge strong {
  color: #050506;
  font-size: 27px;
  font-weight: 900;
}

.clarity-low-gauge > span {
  height: 20px;
  overflow: hidden;
  border-radius: 999px;
  background: #e1e1e5;
}

.clarity-low-gauge > span span {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: #c9c9ce;
}

.clarity-fill-box {
  position: relative;
  width: 100%;
  height: 132px;
  overflow: hidden;
  border-radius: 18px;
  background: #e7efe4;
}

.clarity-fill {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, #59bf82, #2e9f68);
}

.clarity-fill-box strong {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.clarity-note {
  max-width: 470px;
  margin: 20px auto 0;
  color: #777780;
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 780;
  line-height: 1.35;
  text-align: center;
}

.clarity-page + .bottom-action {
  margin-top: 0;
  border-top: 0;
  background: linear-gradient(180deg, rgba(248, 243, 234, 0.96), var(--page) 24%);
}

.clarity-page + .bottom-action .primary-button {
  width: min(520px, calc(100% - 32px));
  min-height: 58px;
  border-radius: 999px;
  background: var(--blue);
  font-size: 17px;
  text-transform: none;
}

.clarity-page + .bottom-action .primary-button:hover {
  background: var(--blue-dark);
}

.analysis-loading-page {
  min-height: calc(100svh - 82px);
  display: grid;
  place-items: center;
  padding: clamp(34px, 8vh, 90px) 0 48px;
}

.analysis-loading-inner {
  width: min(100%, 620px);
  margin: 0 auto;
  text-align: center;
}

.analysis-percent {
  color: #111217;
  font-size: clamp(76px, 14vw, 118px);
  font-weight: 920;
  line-height: 0.92;
  letter-spacing: 0;
}

.analysis-loading-inner h1 {
  margin: 24px 0 0;
  color: #111217;
  font-size: clamp(30px, 5.3vw, 48px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

.analysis-loading-bar {
  width: 100%;
  height: 13px;
  margin: 42px auto 0;
  overflow: hidden;
  border-radius: 999px;
  background: #ebe4d1;
}

.analysis-loading-bar span {
  width: 0;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, #88cf3e, #45bd84);
  transition: width 90ms linear;
}

.analysis-status {
  margin: 30px 0 0;
  color: #111217;
  font-size: clamp(18px, 2.8vw, 24px);
  font-weight: 740;
  line-height: 1.25;
}

.analysis-checklist {
  width: min(100%, 460px);
  margin: 36px auto 0;
  color: #111217;
  text-align: left;
}

.analysis-checklist strong {
  display: block;
  margin-bottom: 16px;
  font-size: clamp(20px, 3.2vw, 26px);
  font-weight: 880;
  line-height: 1.1;
}

.analysis-checklist ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.analysis-checklist li {
  min-height: 35px;
  display: grid;
  grid-template-columns: 1fr 30px;
  align-items: center;
  gap: 14px;
  color: #111217;
  font-size: clamp(18px, 2.6vw, 24px);
  font-weight: 620;
  line-height: 1.25;
}

.analysis-checklist li span:first-child::before {
  content: "· ";
}

.analysis-checkmark {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fffaf2;
  background: #48bd83;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  opacity: 0;
  transform: scale(0.72);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.analysis-checklist li.is-ready .analysis-checkmark {
  opacity: 1;
  transform: scale(1);
}

.prep-intro-page {
  min-height: calc(100svh - 82px);
  display: grid;
  place-items: center;
  padding: clamp(42px, 10vh, 118px) 0 44px;
}

.prep-intro-inner {
  width: min(100%, 560px);
  margin: 0 auto;
  text-align: center;
}

.prep-intro-animation {
  width: min(176px, 48vw);
  aspect-ratio: 1;
  margin: 0 auto 34px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--page);
}

.prep-intro-animation video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.prep-intro-inner h1 {
  max-width: 520px;
  margin: 0 auto;
  color: #111217;
  font-size: clamp(44px, 8vw, 68px);
  font-weight: 920;
  line-height: 1.04;
  letter-spacing: 0;
}

.prep-intro-inner > p {
  max-width: 430px;
  margin: 26px auto 0;
  color: #111217;
  font-size: clamp(20px, 3.6vw, 28px);
  font-weight: 620;
  line-height: 1.35;
}

.prep-intro-card {
  margin-top: 40px;
  padding: 30px 28px;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: center;
  background: linear-gradient(135deg, rgba(246, 255, 240, 0.98), rgba(255, 255, 255, 0.92));
  box-shadow: 0 18px 46px rgba(61, 36, 20, 0.07);
  text-align: left;
}

.prep-intro-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #eee6d4;
}

.prep-intro-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.prep-intro-card strong {
  display: block;
  color: #111217;
  font-size: clamp(23px, 4vw, 31px);
  font-weight: 900;
  line-height: 1.08;
}

.prep-intro-card span {
  display: block;
  margin-top: 12px;
  color: #818287;
  font-size: clamp(18px, 3vw, 23px);
  font-weight: 650;
  line-height: 1.3;
}

.prep-intro-page + .bottom-action {
  border-top: 0;
  background: linear-gradient(180deg, rgba(248, 243, 234, 0.96), var(--page) 24%);
}

.prep-intro-page + .bottom-action .primary-button {
  width: min(520px, calc(100% - 32px));
  min-height: 58px;
  border-radius: 999px;
  background: var(--blue);
  font-size: 17px;
  text-transform: none;
}

.prep-intro-page + .bottom-action .primary-button:hover {
  background: var(--blue-dark);
}

.result-summary-page {
  width: min(560px, 100%);
  margin: 0 auto;
  padding: 28px 0 46px;
}

.result-page-head {
  margin: 0 0 26px;
  display: grid;
  grid-template-columns: 98px minmax(0, 0.9fr);
  gap: 12px;
  align-items: center;
  text-align: left;
}

.result-page-head h1 {
  max-width: 430px;
  margin: 0;
  color: #111217;
  font-size: clamp(30px, 6.2vw, 44px);
  font-weight: 920;
  line-height: 1.02;
  letter-spacing: 0;
}

.result-page-head p {
  max-width: 430px;
  margin: 12px 0 0;
  color: #7b7c82;
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 720;
  line-height: 1.28;
}

.result-coach-bubble {
  align-self: center;
  justify-self: center;
}

.result-coach-bubble img {
  width: 96px;
  height: 96px;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  object-position: center top;
  background: #f1e9df;
}

.result-ready-hero {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
}

.result-mascot,
.result-mini-mascot {
  border-radius: 22px;
  display: grid;
  place-items: center;
  color: #fffaf2;
  background: #78a936;
  font-weight: 920;
  box-shadow: inset 0 -10px 0 rgba(36, 16, 6, 0.08);
}

.result-mascot {
  width: 72px;
  height: 72px;
  font-size: 24px;
}

.result-speech {
  position: relative;
  padding: 16px 18px;
  border: 1px solid #dddde4;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(61, 36, 20, 0.06);
}

.result-speech::before {
  position: absolute;
  top: 32px;
  left: -12px;
  width: 22px;
  height: 22px;
  border-bottom: 1px solid #dddde4;
  border-left: 1px solid #dddde4;
  background: rgba(255, 255, 255, 0.92);
  content: "";
  transform: rotate(45deg);
}

.result-speech h1,
.result-summary-card h2 {
  margin: 0;
  color: #111217;
  font-size: clamp(23px, 4vw, 32px);
  font-weight: 920;
  line-height: 1.03;
  letter-spacing: 0;
}

.result-speech p,
.result-section-head p,
.result-info-heading p {
  margin: 8px 0 0;
  color: #7b7c82;
  font-size: 15px;
  font-weight: 720;
  line-height: 1.25;
}

.result-summary-card {
  margin-top: 20px;
  padding: 22px;
  border: 1px solid #e5dfd0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 36px rgba(61, 36, 20, 0.07);
}

.result-goals-card {
  background: #f4f4f8;
}

.result-section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 20px;
}

.result-soft-icon,
.result-tile-icon,
.result-row-icon,
.result-compare-title span {
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e9f6d9;
  color: #5c8e2f;
  font-weight: 920;
}

.result-soft-icon {
  width: 52px;
  height: 52px;
  font-size: 26px;
}

.result-soft-icon svg,
.result-tile-icon svg,
.result-row-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.result-soft-icon svg path:nth-child(2) {
  fill: #e9f6d9;
}

.result-goal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.result-metric-tile {
  min-height: 126px;
  padding: 16px;
  border-radius: 18px;
  display: grid;
  align-content: start;
  gap: 9px;
  background: #fff;
}

.result-tile-icon,
.result-row-icon {
  width: 40px;
  height: 40px;
  font-size: 18px;
}

.result-metric-tile span:not(.result-tile-icon) {
  color: #83858b;
  font-size: 14px;
  font-weight: 840;
}

.result-metric-tile strong {
  color: #111217;
  font-size: clamp(25px, 5.4vw, 34px);
  font-weight: 920;
  line-height: 1;
}

.result-metric-tile small {
  color: #5c8e2f;
  font-size: 15px;
  font-weight: 920;
}

.result-info-heading {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}

.result-mini-mascot {
  width: 50px;
  height: 50px;
  font-size: 17px;
  color: var(--blue);
  background: #eee6d4;
  box-shadow: none;
}

.result-mini-mascot svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.result-info-list {
  border: 1px solid #e7e2d7;
  border-radius: 24px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.92);
}

.result-info-row {
  min-height: 80px;
  display: grid;
  grid-template-columns: 48px minmax(95px, 0.9fr) minmax(118px, 1.15fr);
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid #ebe6db;
  color: #111217;
}

.result-info-row:last-child {
  border-bottom: 0;
}

.result-info-row > span:nth-child(2) {
  min-width: 0;
  font-size: 19px;
  font-weight: 720;
  line-height: 1.16;
}

.result-info-row strong {
  min-width: 0;
  max-width: none;
  color: #5c8e2f;
  font-size: 19px;
  font-weight: 920;
  line-height: 1.12;
  text-align: right;
  overflow-wrap: anywhere;
}

.result-progress-card h2 {
  font-size: clamp(26px, 4vw, 34px);
}

.result-chart {
  position: relative;
  margin-top: 22px;
  border-radius: 20px;
  overflow: hidden;
}

.result-chart svg {
  width: 100%;
  display: block;
}

.result-chart-grid {
  fill: none;
  stroke: #dedfd3;
  stroke-dasharray: 7 8;
  stroke-width: 1.4;
}

.result-chart-fill {
  fill: rgba(117, 168, 54, 0.2);
}

.result-chart-line {
  fill: none;
  stroke: #6d9430;
  stroke-linecap: round;
  stroke-width: 3;
}

.result-chart-dot {
  fill: #fff;
  stroke: #75a836;
  stroke-width: 4;
}

.chart-target-badge {
  position: absolute;
  right: 37px;
  bottom: 40px;
  z-index: 2;
  min-width: 70px;
  border: 1px solid #cde8a2;
  border-radius: 12px;
  padding: 8px 10px;
  color: #6d9430;
  background: #f8fff0;
  font-size: 11px;
  font-weight: 820;
  line-height: 1.08;
  text-align: center;
}

.chart-target-badge strong {
  display: block;
  font-size: 12px;
  font-weight: 920;
  line-height: 1.05;
}

.chart-target-dot {
  position: absolute;
  right: 50px;
  bottom: 18px;
  z-index: 4;
  width: 14px;
  height: 14px;
  border: 3px solid #75a836;
  border-radius: 50%;
  background: #fff;
}

.result-chart-labels {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 10px;
  color: #111217;
  font-size: 16px;
  line-height: 1.1;
}

.result-compare-wrap {
  display: grid;
  gap: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.result-compare-card {
  padding: 17px 18px;
  border-radius: 18px;
}

.result-without {
  border: 1px solid #f0d3cf;
  background: #fff4f1;
}

.result-with {
  border: 1px solid #d9ecc7;
  background: #f5fff1;
}

.result-compare-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.result-compare-title span {
  width: 34px;
  height: 34px;
  font-size: 20px;
}

.result-without .result-compare-title span {
  color: #ef3d3d;
  background: #ffe1df;
}

.result-with .result-compare-title span {
  color: #4da73c;
  background: #e2f9d4;
}

.result-compare-title strong {
  color: #111217;
  font-size: 22px;
  font-weight: 920;
}

.result-without .result-compare-title strong {
  color: #ef3d3d;
}

.result-with .result-compare-title strong {
  color: #4d9638;
}

.result-compare-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.result-compare-card li {
  padding: 9px 0;
  border-top: 1px solid rgba(61, 36, 20, 0.08);
  color: #111217;
  font-size: 15.5px;
  font-weight: 640;
  line-height: 1.2;
}

.result-compare-card li::before {
  margin-right: 9px;
  font-weight: 920;
}

.result-without li::before {
  color: #ef3d3d;
  content: "×";
}

.result-with li::before {
  color: #4da73c;
  content: "✓";
}

.result-summary-page + .bottom-action {
  border-top: 0;
  background: linear-gradient(180deg, rgba(248, 243, 234, 0.96), var(--page) 24%);
}

.result-summary-page + .bottom-action .primary-button {
  width: min(520px, calc(100% - 32px));
  min-height: 58px;
  border-radius: 999px;
  background: var(--blue);
  font-size: 17px;
  text-transform: none;
}

.result-summary-page + .bottom-action .primary-button:hover {
  background: var(--blue-dark);
}

.result-ready {
  width: min(1120px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.comparison-card {
  margin-top: 46px;
  padding: 40px 48px 30px;
  border: 1px solid #dfd2bf;
  border-radius: 8px;
  background: #f1eadf;
  box-shadow: 0 18px 45px rgba(61, 36, 20, 0.08);
}

.comparison-tabs {
  min-height: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: #fffaf2;
}

.comparison-tabs span {
  min-width: 0;
  padding: 0 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 780;
  text-align: center;
}

.comparison-tabs span + span {
  border-left: 1px solid var(--line);
}

.comparison-stage {
  min-height: 295px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 24px;
  padding: 22px 10px 0;
}

.compare-person {
  height: 294px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.compare-person img {
  width: min(330px, 100%);
  height: 420px;
  display: block;
  object-fit: cover;
  filter: saturate(0.94) sepia(0.22);
}

.compare-person.now img {
  object-position: 7% 40%;
  transform: scale(1.18);
}

.compare-person.goal img {
  object-position: 64% 34%;
  transform: scale(1.08);
}

.comparison-stats {
  margin: 0 auto;
  padding: 28px 48px;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: #fffaf2;
}

.stat-column {
  min-width: 0;
}

.stat-column + .stat-column {
  border-left: 1px solid var(--line);
  padding-left: 48px;
}

.stat-column strong {
  display: block;
  margin: 4px 0 17px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.16;
}

.mini-bars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 10px;
}

.mini-bars span {
  height: 8px;
  border-radius: 2px;
  background: #d2c7b8;
}

.mini-bars.two span:nth-child(-n + 2),
.mini-bars.three span {
  background: var(--blue);
}

.result-action {
  margin-top: 24px;
}

.result-card,
.offer-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 12px 34px rgba(61, 36, 20, 0.07);
}

.result-card {
  min-height: 150px;
  padding: 24px;
}

.result-kicker {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.result-value {
  margin-top: 10px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 850;
  line-height: 1.12;
}

.chart-card {
  grid-column: 1 / -1;
  padding: 26px;
}

.chart {
  min-height: 210px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: end;
  padding-top: 24px;
}

.chart-bar {
  min-height: 46px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #89624b, var(--blue));
}

.chart-label {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}

.email-panel {
  max-width: 560px;
  margin: 36px auto 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.92);
}

.email-input {
  width: 100%;
  height: 58px;
  border: 1px solid #d5c7b4;
  border-radius: 8px;
  padding: 0 16px;
  color: var(--ink);
  font-size: 18px;
  outline: 0;
}

.email-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(67, 37, 27, 0.12);
}

.trust-row {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.trust-chip {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  place-items: center;
  padding: 9px;
  color: #594b40;
  background: var(--soft);
  font-size: 12px;
  font-weight: 780;
  text-align: center;
}

.offer-layout {
  padding: 46px 0 34px;
}

.offer-stack {
  width: min(470px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.offer-stack .page-title,
.offer-stack .page-subtitle {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.offer-stack .offer-title {
  font-size: clamp(27px, 7vw, 33px);
  line-height: 1.08;
}

.offer-stack .page-subtitle strong {
  color: var(--ink);
  font-weight: 900;
}

.offer-hero {
  display: grid;
  grid-template-columns: 1fr minmax(330px, 470px);
  gap: 34px;
  align-items: start;
}

.offer-summary {
  padding: 26px;
}

.offer-summary img {
  width: 100%;
  height: 270px;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  background: var(--soft);
}

.offer-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.offer-list li {
  margin: 12px 0;
  color: #443225;
  font-size: 15px;
  font-weight: 690;
  line-height: 1.35;
}

.offer-list li::before {
  margin-right: 8px;
  color: var(--green);
  font-weight: 900;
  content: "✓";
}

.offer-transformations {
  margin-top: 0;
}

.offer-transformation-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.offer-transformation-image {
  width: 100%;
  aspect-ratio: 0.95;
  border-radius: 14px;
  display: block;
  object-fit: cover;
  object-position: center;
  background: var(--soft);
  box-shadow: 0 10px 22px rgba(75, 45, 26, 0.08);
}

.offer-transformation-arrow {
  right: -9px;
  width: 34px;
  height: 34px;
  font-size: 25px;
}

.offer-transformations .transformation-dots {
  margin-top: 10px;
}

.offer-transformations .transformation-slider {
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(75, 45, 26, 0.08);
}

.offer-transformations .transformation-image {
  aspect-ratio: 0.78;
}

.offer-member-timer {
  min-height: 44px;
  margin-bottom: 10px;
  border: 1.5px solid rgba(36, 16, 6, 0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px 8px 12px;
  background: #fffaf2;
}

.offer-member-timer-label {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.1;
  text-transform: uppercase;
}

.offer-member-timer-time {
  min-width: 72px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  padding: 6px 10px;
  color: #fffaf2;
  background: var(--ink);
  font-size: 18px;
  font-variant-numeric: tabular-nums;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(36, 16, 6, 0.18);
}

.plans {
  display: grid;
  gap: 10px;
}

.plan-button {
  position: relative;
  width: 100%;
  min-height: 88px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2px 12px;
  align-items: start;
  padding: 13px 16px;
  color: var(--ink);
  background: #fffaf2;
  text-align: left;
}

.plan-button.is-selected {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.plan-copy {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.plan-name {
  display: block;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.05;
}

.plan-detail {
  display: block;
  margin-top: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.18;
}

.plan-price {
  color: var(--ink);
  font-size: clamp(21px, 3.8vw, 27px);
  font-weight: 920;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}

.plan-price.is-deal-price {
  color: var(--green);
}

.plan-price-wrap {
  display: grid;
  justify-items: end;
  gap: 3px;
}

.plan-price-sub {
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
  line-height: 1.1;
  text-align: right;
  white-space: nowrap;
}

.badge {
  position: absolute;
  top: -10px;
  left: 16px;
  border-radius: 999px;
  padding: 4px 9px;
  color: #fff;
  background: var(--green);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.offer-pricing-card {
  padding: 14px;
}

.offer-checkout-action {
  margin-top: 14px;
}

.offer-included {
  margin-top: 16px;
  padding: 15px 15px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 252, 246, 0.72);
}

.offer-included h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
}

.device-showcase.offer-included-device {
  min-height: 160px;
  margin: 0 0 13px;
  border-radius: 18px;
  padding: 24px 10px 12px;
}

.offer-included-device .laptop-frame {
  width: 72%;
  max-width: none;
}

.offer-included-device .laptop-screen {
  border-width: 5px;
  border-bottom-width: 11px;
  border-radius: 12px 12px 6px 6px;
}

.offer-included-device .laptop-screen::before {
  width: 38px;
  height: 8px;
}

.offer-included-device .screen-timer {
  top: 14px;
  font-size: 23px;
}

.offer-included-device .screen-play {
  width: 42px;
  height: 42px;
  padding-left: 3px;
  font-size: 17px;
}

.offer-included-device .screen-progress {
  right: 8px;
  bottom: 7px;
  left: 8px;
  height: 3px;
}

.offer-included-device .laptop-base {
  height: 9px;
}

.offer-included-device .phone-frame {
  right: 12px;
  bottom: 17px;
  width: 25%;
  min-width: 68px;
  max-width: 92px;
  border-width: 5px;
  border-radius: 19px;
}

.offer-included-device .phone-notch {
  top: 5px;
  width: 30px;
  height: 8px;
}

.offer-included-device .phone-player-ui {
  right: 6px;
  bottom: 7px;
  left: 6px;
  gap: 4px;
  font-size: 7px;
}

.offer-included-device .phone-progress-line {
  height: 2px;
}

.offer-included-device .phone-time-row {
  gap: 5px;
}

.offer-included ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-included li {
  position: relative;
  padding-left: 25px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.38;
}

.offer-included li::before {
  content: "✓";
  position: absolute;
  top: -1px;
  left: 0;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 11px;
  font-weight: 950;
}

.faq {
  margin-top: 28px;
}

.offer-faq-card .faq {
  margin-top: 0;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-button {
  width: 100%;
  min-height: 58px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 800;
  text-align: left;
}

.faq-body {
  display: none;
  padding: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.faq-body strong {
  color: var(--ink);
  font-weight: 900;
}

.faq-item.is-open .faq-body {
  display: block;
}

.offer-ambassadors {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  scroll-margin-top: 66px;
  padding: 8px 0 4px;
}

.offer-ambassadors h2 {
  max-width: 360px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(27px, 7vw, 38px);
  font-weight: 820;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: center;
}

.offer-ambassador-carousel {
  position: relative;
  width: 100%;
  min-width: 0;
  margin-top: 18px;
}

.offer-ambassador-slider {
  width: 100%;
  min-width: 0;
  margin: 0;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  touch-action: pan-y pinch-zoom;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.offer-ambassador-slider::-webkit-scrollbar {
  display: none;
}

.offer-ambassador-card {
  flex: 0 0 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.94);
  box-shadow: 0 12px 34px rgba(61, 36, 20, 0.07);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  touch-action: pan-y pinch-zoom;
}

.offer-ambassador-head {
  min-height: 82px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
}

.offer-ambassador-avatar {
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: block;
  object-fit: cover;
  object-position: center 28%;
  box-shadow: none;
}

.offer-ambassador-id {
  min-width: 0;
}

.offer-ambassador-id strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.1;
}

.offer-ambassador-followers {
  min-width: 92px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
  text-align: center;
}

.offer-ambassador-followers strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.05;
}

.offer-ambassador-followers span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 520;
  line-height: 1.1;
}

.verified-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.offer-ambassador-photo {
  width: 100%;
  height: min(520px, 112vw);
  display: block;
  object-fit: cover;
  object-position: center 58%;
  background: #f5eee4;
  touch-action: pan-y pinch-zoom;
  user-select: none;
  -webkit-user-drag: none;
}

.offer-ambassador-card p {
  margin: 0;
  padding: 14px 16px 16px;
  color: #5f554d;
  font-size: 17px;
  font-weight: 520;
  line-height: 1.28;
}

.offer-ambassador-card p strong {
  color: var(--ink);
  font-weight: 900;
}

.offer-ambassador-nav {
  position: absolute;
  top: 56%;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fffaf2;
  background: rgba(36, 16, 6, 0.74);
  font-size: 27px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(36, 16, 6, 0.18);
}

.offer-ambassador-prev {
  left: 10px;
}

.offer-ambassador-next {
  right: 10px;
}

.offer-ambassador-dots {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.offer-ambassador-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ded5ca;
}

.offer-ambassador-dots span.is-active {
  width: 26px;
  border-radius: 999px;
  background: var(--ink);
}

.offer-legal-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px 14px;
  padding: 8px 12px 22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.25;
  text-align: center;
}

.offer-legal-footer a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(36, 16, 6, 0.42);
}

.modal {
  width: min(420px, 100%);
  border-radius: 8px;
  padding: 26px;
  background: #fffaf2;
  box-shadow: var(--shadow);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.modal-title {
  margin: 0;
  font-size: 23px;
  font-weight: 850;
}

.modal-links {
  display: grid;
  gap: 8px;
}

.modal-links a,
.modal-links button {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: var(--ink);
  background: #fffaf2;
  font-weight: 750;
  text-align: left;
  text-decoration: none;
}

.footer {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 36px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  margin-bottom: 12px;
}

.footer a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

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

.legal-doc {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 56px;
  color: var(--ink);
}

.legal-back {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--brown);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.legal-kicker {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-doc h1 {
  margin: 0;
  font-size: clamp(34px, 7vw, 58px);
  font-weight: 930;
  line-height: 0.98;
}

.legal-warning {
  border: 1px solid #e8c9a8;
  border-radius: 8px;
  margin: 18px 0 20px;
  padding: 13px 14px;
  color: #704217;
  background: #fff3df;
  font-size: 14px;
  font-weight: 780;
  line-height: 1.4;
}

.legal-doc section {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 12px;
  padding: 18px;
  background: rgba(255, 250, 242, 0.9);
}

.legal-doc section.legal-notice {
  background: rgba(239, 249, 236, 0.75);
}

.legal-doc h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 920;
}

.legal-doc p,
.legal-doc li {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.55;
}

.legal-doc ul {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding-left: 19px;
}

.legal-doc a {
  color: var(--brown);
  font-weight: 850;
}

.help-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 22;
  min-width: 118px;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fffaf2;
  background: var(--blue-dark);
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 13px 30px rgba(61, 36, 20, 0.22);
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 84px;
  z-index: 60;
  max-width: 310px;
  padding: 13px 15px;
  border-radius: 8px;
  color: #fffaf2;
  background: var(--blue-dark);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 16px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 250, 242, 0.9), transparent 42%),
    var(--page);
}

.auth-card {
  width: min(420px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 24px;
  background: rgba(255, 250, 242, 0.94);
  box-shadow: var(--shadow);
}

.auth-brand {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 920;
  text-decoration: none;
}

.auth-eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-card h1 {
  margin: 0;
  color: var(--ink);
  font-size: 34px;
  font-weight: 920;
  line-height: 1.04;
}

.auth-copy {
  margin: 14px 0 22px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.42;
}

.auth-form {
  display: grid;
  gap: 10px;
}

.auth-form label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.auth-form input {
  width: 100%;
  min-height: 54px;
  border: 1px solid #d5c7b4;
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: #fffaf2;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  outline: 0;
}

.auth-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(67, 37, 27, 0.12);
}

.auth-form .primary-button {
  width: 100%;
  margin-top: 8px;
  text-transform: none;
}

.auth-message {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.auth-hint {
  margin: 8px 0 0;
  color: #8a7d72;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.auth-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 900px) {
  .home-header {
    padding: 28px 20px;
  }

  .home-page {
    width: 100%;
    min-height: 100vh;
    padding: 0;
  }

  .home-hero,
  .home-slider img {
    height: 73vh;
    min-height: 620px;
  }

  .home-hero {
    border-radius: 0;
  }

  .home-arrow {
    opacity: 0.86;
  }

  .home-copy {
    padding-top: 32px;
  }

  .topbar-inner {
    width: min(100% - 32px, var(--max));
    min-height: auto;
    grid-template-columns: minmax(120px, 1fr) auto 46px;
    grid-template-areas:
      "left timer menu"
      "deal cta cta";
    gap: 10px 12px;
    padding: 12px 0;
  }

  .quiz-topbar-inner {
    width: min(100% - 32px, var(--max));
    min-height: 82px;
    grid-template-columns: 52px minmax(0, 1fr) 52px;
  }

  .age-topbar-inner {
    width: min(100% - 32px, var(--max));
    min-height: 82px;
  }

  .age-topbar .back-button,
  .age-topbar .menu-button,
  .profile-topbar .back-button,
  .profile-topbar .menu-button {
    grid-area: auto;
  }

  .profile-topbar-inner {
    width: min(100% - 32px, var(--max));
    min-height: 82px;
  }

  .topbar-spacer {
    width: 48px;
    height: 48px;
  }

  .profile-brand {
    font-size: 28px;
  }

  .header-left {
    grid-area: left;
  }

  .deal-copy {
    grid-area: deal;
    display: block;
    justify-self: start;
    font-size: 14px;
    text-align: left;
  }

  .top-cta {
    grid-area: cta;
    min-height: 44px;
    border-width: 5px;
    justify-self: end;
    padding: 0 20px;
    font-size: 13px;
  }

  .timer {
    grid-area: timer;
    justify-self: center;
  }

  .menu-button {
    grid-area: menu;
  }

  .age-topbar .back-button,
  .age-topbar .menu-button,
  .profile-topbar .back-button,
  .profile-topbar .menu-button {
    grid-area: auto;
  }

  .timer-block strong {
    font-size: 28px;
  }

  .timer-block small {
    font-size: 10px;
  }

  .brand {
    font-size: 25px;
  }

  .icon-button {
    width: 44px;
    height: 44px;
  }

  .main,
  .first-main,
  .footer {
    width: min(100% - 32px, var(--max));
  }

  .quiz-page,
  .hero-page {
    padding-top: 42px;
  }

  .age-page {
    padding-top: 54px;
  }

  .age-title {
    font-size: 40px;
  }

  .age-subtitle {
    margin-top: 18px;
    font-size: 27px;
  }

  .quiz-photo-page {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .quiz-visual-card {
    position: relative;
    top: auto;
    min-height: 390px;
  }

  .quiz-content-panel .page-title {
    max-width: 720px;
  }

  .age-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 18px;
    margin-top: 30px;
  }

  .story-layout,
  .offer-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .story-copy {
    max-width: none;
    text-align: center;
  }

  .transformation-page {
    width: min(560px, 100%);
    padding-top: 34px;
  }

  .social-proof-page {
    padding-top: 32px;
  }

  .social-proof-title {
    font-size: 52px;
  }

  .social-proof-text {
    font-size: 28px;
  }

  .session-showcase-page {
    padding-top: 32px;
  }

  .session-showcase-title {
    font-size: 52px;
  }

  .session-showcase-copy {
    font-size: 28px;
  }

  .device-showcase {
    min-height: 470px;
  }

  .profile-page {
    padding-top: 46px;
  }

  .profile-question {
    font-size: 46px;
  }

  .build-photo-grid {
    gap: 24px 24px;
    margin-top: 46px;
  }

  .zones-page {
    padding-top: 46px;
  }

  .experts-page {
    padding-top: 36px;
  }

  .experts-title {
    font-size: 54px;
  }

  .story-media {
    min-height: 330px;
  }

  .story-media img {
    min-height: 330px;
  }

  .comparison-card {
    padding: 28px 24px 24px;
  }

  .comparison-stats {
    gap: 24px;
    padding: 24px;
  }

  .stat-column + .stat-column {
    padding-left: 24px;
  }
}

@media (max-width: 580px) {
  .prep-intro-page {
    min-height: calc(100svh - 158px);
    display: flex;
    align-items: stretch;
    padding: 18px 16px 4px;
  }

  .prep-intro-inner {
    min-height: min(560px, calc(100svh - 164px));
    display: flex;
    flex-direction: column;
  }

  .prep-intro-animation {
    width: min(132px, 34vw);
    height: auto;
    margin-bottom: 14px;
    opacity: 1;
    pointer-events: none;
  }

  .prep-intro-inner h1 {
    max-width: 340px;
    font-size: 30px;
    line-height: 1.06;
  }

  .prep-intro-inner > p {
    max-width: 330px;
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.28;
  }

  .prep-intro-card {
    grid-template-columns: 48px 1fr;
    gap: 12px;
    margin-top: clamp(42px, 7svh, 62px);
    padding: 22px 16px;
    border-radius: 20px;
  }

  .prep-intro-icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .prep-intro-card strong {
    font-size: 19px;
    line-height: 1.08;
  }

  .prep-intro-card span {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.22;
  }

  .prep-intro-page + .bottom-action {
    margin-top: 0;
    padding: 16px 0 28px;
  }

  .prep-intro-page + .bottom-action .primary-button {
    min-height: 56px;
  }

  .home-header {
    padding: 32px 20px 20px;
  }

  .home-brand {
    font-size: 24px;
  }

  .home-menu {
    width: 56px;
    height: 56px;
  }

  .home-page {
    width: 100%;
    padding: 0;
  }

  .home-hero,
  .home-slider img {
    height: 73vh;
    min-height: 560px;
  }

  .home-hero {
    border-radius: 0;
  }

  .home-arrow {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .home-arrow-left {
    left: 10px;
  }

  .home-arrow-right {
    right: 10px;
  }

  .home-copy {
    padding: 32px 20px 40px;
  }

  .home-copy h1 {
    font-size: 30px;
    line-height: 1.22;
  }

  .age-topbar-inner {
    width: min(100% - 40px, var(--max));
    min-height: 44px;
    grid-template-columns: 32px 1fr 32px;
  }

  .quiz-topbar-inner {
    min-height: 44px;
    grid-template-columns: 32px 1fr 32px;
  }

  .profile-topbar-inner {
    width: min(100% - 40px, var(--max));
    min-height: 44px;
    grid-template-columns: 32px 1fr 32px;
  }

  .profile-head {
    gap: 9px;
  }

  .profile-brand {
    font-size: 24px;
  }

  .profile-progress {
    width: min(250px, 54vw);
    gap: 6px;
  }

  .profile-progress span {
    height: 6px;
  }

  .age-brand {
    font-size: 18px;
  }

  .home-start {
    margin-top: 34px;
  }

  .topbar-inner {
    min-height: 66px;
    gap: 8px;
  }

  .brand {
    font-size: 18px;
  }

  .back-button {
    width: 32px;
    height: 32px;
    font-size: 21px;
  }

  .topbar-spacer {
    width: 32px;
    height: 32px;
  }

  .header-left {
    gap: 6px;
  }

  .timer {
    gap: 5px;
  }

  .timer-block strong {
    font-size: 22px;
  }

  .timer-block small {
    display: none;
  }

  .timer-sep {
    font-size: 21px;
  }

  .deal-copy {
    font-size: 12px;
  }

  .top-cta {
    min-height: 40px;
    border-width: 4px;
    padding: 0 14px;
    font-size: 12px;
  }

  .page-title {
    font-size: 33px;
  }

  .page-subtitle {
    font-size: 18px;
  }

  .quiz-photo-page {
    gap: 22px;
    padding-top: 22px;
  }

  .quiz-visual-card {
    min-height: 330px;
    margin: 0 -2px;
  }

  .quiz-visual-copy {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .quiz-visual-copy strong {
    font-size: 30px;
  }

  .quiz-kicker {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .quiz-content-panel .page-title {
    font-size: 29px;
  }

  .age-page {
    padding-top: 38px;
  }

  .age-title {
    max-width: 350px;
    font-size: 30px;
    line-height: 1.06;
  }

  .age-subtitle {
    margin-top: 14px;
    font-size: 21px;
  }

  .age-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
    margin-top: 24px;
  }

  .age-card {
    aspect-ratio: 1 / 1.04;
    border-radius: 16px;
  }

  .age-cta {
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 46px;
    padding: 0 8px 0 10px;
    border-radius: 0 0 16px 16px;
    font-size: 13px;
    line-height: 1.08;
  }

  .arrow-pill {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    font-size: 19px;
  }

  .legal-line {
    margin-top: 20px;
    padding-top: 14px;
    font-size: 12px;
    line-height: 1.35;
  }

  .choice-card {
    min-height: 76px;
    grid-template-columns: 40px 1fr 25px;
    padding: 14px;
    gap: 12px;
  }

  .choice-title {
    font-size: 16px;
  }

  .issue-page {
    padding: 30px 0 20px;
  }

  .issue-body-tension {
    padding-bottom: 118px;
  }

  .issue-title {
    font-size: 32px;
    line-height: 1.12;
  }

  .issue-hint {
    margin-top: 18px;
    font-size: 20px;
  }

  .issue-grid {
    gap: 12px;
    margin-top: 28px;
  }

  .issue-body-tension .issue-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .issue-card {
    min-height: 104px;
    border-radius: 18px;
  }

  .issue-body-tension .issue-card {
    min-height: 78px;
  }

  .issue-card-row {
    min-height: 104px;
    grid-template-columns: 40px minmax(0, 1fr) 28px;
    gap: 10px;
    padding: 16px;
    font-size: 18px;
  }

  .issue-body-tension .issue-card-row {
    grid-template-columns: minmax(0, 1fr) 28px;
    min-height: 78px;
    gap: 12px;
    padding: 14px 18px 14px 22px;
    font-size: 18px;
    line-height: 1.12;
  }

  .issue-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .issue-check {
    width: 28px;
    height: 28px;
    border-radius: 7px;
  }

  .story-layout {
    min-height: auto;
    padding-top: 42px;
  }

  .story-title {
    font-size: 38px;
  }

  .story-text {
    font-size: 18px;
  }

  .transformation-page {
    padding: 28px 0 18px;
  }

  .transformation-title {
    margin-bottom: 16px;
    font-size: 34px;
    line-height: 1.1;
  }

  .transformation-slider {
    border-radius: 22px;
  }

  .transformation-arrow {
    width: 42px;
    height: 42px;
    right: 8px;
    font-size: 30px;
  }

  .transformation-proof {
    margin-top: 6px;
    font-size: 18px;
  }

  .transformation-reviews {
    border-radius: 14px;
  }

  .transformation-review-row {
    padding: 9px 12px;
  }

  .clarity-page {
    padding: 24px 0 18px;
  }

  .clarity-copy h1 {
    font-size: 30px;
  }

  .clarity-copy p {
    margin-top: 14px;
    font-size: 16px;
  }

  .clarity-card {
    margin-top: 20px;
    padding: 16px;
    border-radius: 22px;
  }

  .clarity-columns {
    gap: 12px;
  }

  .clarity-column {
    min-height: 236px;
    padding: 18px 10px 16px;
    border-radius: 18px;
  }

  .clarity-column h2 {
    font-size: 23px;
  }

  .clarity-column p {
    font-size: 14px;
  }

  .clarity-fill-box {
    height: 100px;
    border-radius: 16px;
  }

  .clarity-low-gauge strong {
    font-size: 24px;
  }

  .clarity-low-gauge > span {
    height: 16px;
  }

  .clarity-fill-box strong {
    font-size: 27px;
  }

  .clarity-note {
    margin-top: 16px;
    font-size: 15px;
  }

  .social-proof-page {
    padding: 22px 0 24px;
  }

  .social-proof-title {
    font-size: 32px;
    line-height: 1.04;
  }

  .social-proof-text {
    margin-top: 11px;
    font-size: 18px;
    line-height: 1.28;
  }

  .social-proof-media {
    margin-top: 22px;
    border-radius: 18px;
  }

  .social-proof-media img {
    aspect-ratio: 1.45 / 1;
  }

  .press-strip {
    margin-top: 22px;
  }

  .press-strip p {
    font-size: 25px;
  }

  .press-logos {
    margin-top: 10px;
  }

  .press-logos span {
    min-height: 30px;
    padding: 0 6px;
    font-size: 14px;
  }

  .press-logos span:nth-child(2) {
    font-size: 10px;
  }

  .social-proof-action {
    margin-top: 34px;
  }

  .social-proof-action .primary-button {
    min-height: 66px;
    font-size: 20px;
  }

  .session-showcase-page {
    min-height: auto;
    padding: 12px 0 14px;
    display: block;
  }

  .session-showcase-title {
    font-size: 28px;
    line-height: 1.07;
  }

  .session-showcase-copy {
    margin-top: 10px;
    display: grid;
    gap: 10px;
    color: #5f554d;
    font-size: 17px;
    font-weight: 650;
    line-height: 1.28;
  }

  .device-showcase {
    min-height: 226px;
    margin-top: 14px;
    border-radius: 20px;
    padding: 28px 10px 14px;
  }

  .device-showcase-caption {
    display: none;
  }

  .device-showcase-caption p {
    margin: 0;
  }

  .device-showcase-caption p + p {
    margin-top: 8px;
  }

  .laptop-frame {
    width: 69%;
  }

  .laptop-screen {
    border-width: 5px;
    border-bottom-width: 11px;
    border-radius: 14px 14px 7px 7px;
  }

  .laptop-screen::before {
    width: 44px;
    height: 10px;
  }

  .screen-timer {
    top: 16px;
    font-size: 25px;
  }

  .screen-play {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .screen-progress {
    right: 8px;
    bottom: 7px;
    left: 8px;
    height: 3px;
  }

  .laptop-base {
    height: 9px;
  }

  .phone-frame {
    right: 13px;
    bottom: 18px;
    width: 24%;
    min-width: 76px;
    border-width: 5px;
    border-radius: 21px;
  }

  .phone-notch {
    top: 5px;
    width: 32px;
    height: 9px;
  }

  .phone-video-panel {
    inset: 0;
  }

  .phone-player-ui {
    right: 6px;
    bottom: 8px;
    left: 6px;
    gap: 4px;
    font-size: 7px;
  }

  .phone-progress-line {
    height: 2px;
  }

  .phone-time-row {
    gap: 5px;
  }

  .session-showcase-action {
    margin-top: 13px;
    padding-top: 12px;
  }

  .session-showcase-action .primary-button {
    min-height: 50px;
    font-size: 16px;
  }

  .profile-page {
    padding: 38px 0 48px;
  }

  .profile-question {
    max-width: 410px;
    font-size: 33px;
    line-height: 1.1;
  }

  .build-photo-grid {
    gap: 20px 14px;
    margin-top: 34px;
  }

  .build-photo-card {
    border-radius: 20px;
    aspect-ratio: 1 / 1.22;
  }

  .build-photo-copy {
    min-height: 86px;
    grid-template-columns: 1fr 34px;
    gap: 10px;
    padding: 14px 14px 16px;
    font-size: 20px;
  }

  .build-radio {
    width: 34px;
    height: 34px;
  }

  .build-photo-card.is-selected .build-radio {
    border-width: 9px;
  }

  .zones-page {
    padding: 38px 0 112px;
  }

  .zones-title {
    max-width: 420px;
    font-size: 28px;
    line-height: 1.1;
  }

  .zones-hint {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 650;
  }

  .zones-list {
    gap: 10px;
    margin-top: 20px;
  }

  .zone-image-card {
    min-height: 88px;
    border-radius: 18px;
    padding: 0 132px 0 18px;
  }

  .zone-name {
    font-size: 20px;
  }

  .zone-image-card.is-selected .zone-name::after {
    width: 24px;
    height: 24px;
    margin-left: 8px;
    font-size: 15px;
  }

  .zone-media {
    width: 136px;
  }

  .experts-page {
    padding: 34px 0 34px;
  }

  .experts-title {
    max-width: 430px;
    font-size: 32px;
    line-height: 1.12;
  }

  .experts-list {
    gap: 14px;
    margin-top: 30px;
  }

  .expert-card {
    min-height: 124px;
    grid-template-columns: 94px 1fr;
    gap: 14px;
    padding: 14px;
    border-radius: 20px;
  }

  .expert-card img {
    width: 86px;
    height: 86px;
    border-radius: 14px;
  }

  .expert-copy h2 {
    margin-bottom: 7px;
    font-size: 22px;
  }

  .expert-copy ul {
    gap: 4px;
    font-size: 15px;
  }

  .expert-copy li {
    gap: 7px;
  }

  .expert-check {
    width: 17px;
    height: 17px;
    flex-basis: 17px;
    margin-top: 1px;
    font-size: 11px;
  }

  .experts-action {
    margin-top: 44px;
    padding-top: 34px;
  }

  .experts-action .primary-button {
    min-height: 66px;
    font-size: 20px;
  }

  .metric-panel {
    padding: 28px 20px;
  }

  .stats-page {
    padding-top: 20px;
    padding-bottom: 100px;
  }

  .stats-content .page-title {
    font-size: 29px;
    line-height: 1.08;
  }

  .stats-picker-card {
    margin-top: 28px;
    gap: 20px;
  }

  .stats-picker-column h2 {
    margin-bottom: 22px;
    font-size: 16px;
  }

  .stats-picker-value {
    flex-basis: 48px;
    min-height: 48px;
    font-size: 17px;
  }

  .stats-picker-value.is-selected {
    font-size: 22px;
  }

  .weight-picker-page {
    padding-top: 20px;
    padding-bottom: 100px;
  }

  .target-weight-picker {
    width: min(304px, 100%);
    margin-top: 34px;
  }

  .target-weight-picker .stats-picker-highlight {
    height: 52px;
  }

  .target-weight-picker .stats-picker-list {
    height: 318px;
    padding: 133px 0;
    scroll-padding-block: 133px;
  }

  .target-weight-picker .stats-picker-value {
    flex-basis: 52px;
    min-height: 52px;
    font-size: 17px;
  }

  .target-weight-picker .stats-picker-value.is-selected {
    font-size: 23px;
  }

  .first-name-page {
    min-height: calc(100svh - 152px);
    padding: 28px 0 44px;
  }

  .first-name-content {
    width: min(100%, 340px);
  }

  .first-name-page .page-title {
    font-size: 27px;
  }

  .first-name-panel {
    margin-top: 24px;
  }

  .first-name-subtitle {
    margin-top: 10px;
    font-size: 16px;
  }

  .first-name-input {
    height: 58px;
    border-radius: 16px;
    font-size: 21px;
  }

  .first-name-help {
    margin-top: 10px;
    font-size: 14px;
  }

  .analysis-loading-page {
    padding: 58px 0 38px;
  }

  .analysis-loading-inner {
    width: min(100% - 32px, 620px);
  }

  .analysis-percent {
    font-size: 74px;
  }

  .analysis-loading-inner h1 {
    max-width: 360px;
    margin: 22px auto 0;
    font-size: 29px;
  }

  .analysis-loading-bar {
    height: 12px;
    margin-top: 34px;
  }

  .analysis-status {
    margin-top: 26px;
    font-size: 18px;
  }

  .analysis-checklist {
    margin-top: 36px;
  }

  .analysis-checklist strong {
    margin-bottom: 15px;
    font-size: 20px;
  }

  .analysis-checklist li {
    min-height: 34px;
    grid-template-columns: 1fr 28px;
    font-size: 18px;
  }

  .analysis-checkmark {
    width: 27px;
    height: 27px;
    font-size: 18px;
  }

  .result-summary-page {
    padding-top: 24px;
    padding-bottom: 42px;
  }

  .result-page-head {
    margin-bottom: 24px;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 9px;
  }

  .result-page-head h1 {
    max-width: 100%;
    font-size: 26px;
  }

  .result-page-head p {
    max-width: 100%;
    font-size: 14px;
  }

  .result-coach-bubble img {
    width: 88px;
    height: 88px;
  }

  .result-speech {
    padding: 13px 14px;
    border-radius: 20px;
  }

  .result-summary-card {
    margin-top: 18px;
    padding: 20px;
    border-radius: 22px;
  }

  .result-summary-card h2 {
    font-size: 25px;
  }

  .result-section-head {
    margin-bottom: 18px;
  }

  .result-section-head p,
  .result-info-heading p {
    font-size: 15px;
  }

  .result-goal-grid {
    gap: 12px;
  }

  .result-metric-tile {
    min-height: 120px;
    padding: 16px;
    gap: 8px;
    border-radius: 16px;
  }

  .result-tile-icon,
  .result-row-icon {
    width: 38px;
    height: 38px;
  }

  .result-metric-tile span:not(.result-tile-icon) {
    font-size: 13px;
  }

  .result-metric-tile strong {
    font-size: 25px;
  }

  .result-metric-tile small {
    font-size: 14px;
  }

  .result-info-list {
    padding: 0 14px;
  }

  .result-info-row {
    grid-template-columns: 42px minmax(86px, 0.82fr) minmax(120px, 1.18fr);
    gap: 10px;
  }

  .result-info-row > span:nth-child(2) {
    font-size: 18px;
  }

  .result-info-row strong {
    font-size: 18px;
    line-height: 1.08;
  }

  .trust-row,
  .chart {
    grid-template-columns: 1fr;
  }

  .comparison-card {
    margin-top: 30px;
    padding: 14px;
  }

  .comparison-tabs {
    min-height: 48px;
  }

  .comparison-stage {
    min-height: 218px;
    gap: 8px;
    padding: 12px 0 0;
  }

  .compare-person {
    height: 218px;
  }

  .compare-person img {
    height: 320px;
    width: 210px;
  }

  .comparison-stats {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px 18px;
  }

  .stat-column + .stat-column {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 18px;
    padding-left: 0;
  }

  .help-button {
    min-width: 56px;
    width: 56px;
    font-size: 0;
  }

  .help-button::before {
    font-size: 18px;
    content: "?";
  }
}

.social-proof-action,
.session-showcase-action,
.experts-action {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 35;
  margin-top: 0;
  padding: 0 0 calc(42px + env(safe-area-inset-bottom));
  border-top: 0;
  background: linear-gradient(180deg, rgba(248, 243, 234, 0.96), var(--page) 24%);
  pointer-events: none;
  text-align: center;
}

.bottom-action,
.transformation-page + .bottom-action,
.clarity-page + .bottom-action,
.prep-intro-page + .bottom-action,
.result-summary-page + .bottom-action {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 35;
  margin-top: 0;
  padding: 0 0 calc(42px + env(safe-area-inset-bottom));
  border-top: 0;
  background: linear-gradient(180deg, rgba(248, 243, 234, 0.96), var(--page) 24%);
  backdrop-filter: none;
  pointer-events: none;
}

.app-shell:has(.bottom-action) main,
.app-shell:has(.social-proof-action) main,
.app-shell:has(.session-showcase-action) main,
.app-shell:has(.experts-action) main {
  padding-bottom: calc(132px + env(safe-area-inset-bottom));
}

.primary-button,
.social-proof-action .primary-button,
.session-showcase-action .primary-button,
.experts-action .primary-button,
.transformation-page + .bottom-action .primary-button,
.clarity-page + .bottom-action .primary-button,
.prep-intro-page + .bottom-action .primary-button,
.result-summary-page + .bottom-action .primary-button {
  width: min(344px, calc(100vw - 80px));
  height: 56px;
  min-height: 56px;
  border-radius: 999px;
  color: #fffaf2;
  background: var(--blue);
  font-size: 16px;
  font-weight: 850;
  pointer-events: auto;
  text-transform: none;
}

.primary-button:hover,
.social-proof-action .primary-button:hover,
.session-showcase-action .primary-button:hover,
.experts-action .primary-button:hover,
.transformation-page + .bottom-action .primary-button:hover,
.clarity-page + .bottom-action .primary-button:hover,
.prep-intro-page + .bottom-action .primary-button:hover,
.result-summary-page + .bottom-action .primary-button:hover {
  background: var(--blue-dark);
}

@media (max-width: 580px) and (max-height: 760px) {
  .app-shell:has(.bottom-action) main,
  .app-shell:has(.social-proof-action) main,
  .app-shell:has(.session-showcase-action) main,
  .app-shell:has(.experts-action) main {
    padding-bottom: calc(108px + env(safe-area-inset-bottom));
  }

  .social-proof-action,
  .session-showcase-action,
  .experts-action,
  .bottom-action,
  .transformation-page + .bottom-action,
  .clarity-page + .bottom-action,
  .prep-intro-page + .bottom-action,
  .result-summary-page + .bottom-action {
    padding-bottom: calc(28px + env(safe-area-inset-bottom));
  }

  .social-proof-page {
    padding-top: 20px;
  }

  .social-proof-title {
    max-width: 306px;
    margin-right: auto;
    margin-left: auto;
    font-size: 31px;
    line-height: 1.04;
  }

  .social-proof-text {
    max-width: 332px;
    margin-top: 10px;
    margin-right: auto;
    margin-left: auto;
    font-size: 16.5px;
    line-height: 1.3;
  }

  .social-proof-media {
    width: min(374px, 100%);
    margin: 20px auto 0;
    border-radius: 22px;
  }

  .social-proof-media img {
    aspect-ratio: 1.28 / 1;
  }

  .press-strip {
    margin-top: 18px;
  }

  .press-strip p {
    font-size: 24px;
  }

  .press-logos {
    margin-top: 7px;
  }

  .press-logos span {
    min-height: 24px;
    font-size: 12px;
  }

  .press-logos span:nth-child(2) {
    font-size: 9px;
  }

  .session-showcase-page {
    padding-top: 14px;
  }

  .session-showcase-title {
    max-width: 370px;
    font-size: 26px;
    line-height: 1.09;
  }

  .session-showcase-copy {
    max-width: 358px;
    margin-top: 10px;
    gap: 8px;
    font-size: 15px;
    line-height: 1.24;
  }

  .device-showcase {
    min-height: 240px;
    margin-top: 16px;
    padding: 25px 8px 12px;
  }

  .screen-timer {
    font-size: 23px;
  }

  .screen-play {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .phone-frame {
    right: 12px;
    bottom: 15px;
    min-width: 66px;
  }

  .profile-page {
    padding: 28px 0 34px;
  }

  .profile-question {
    max-width: 366px;
    font-size: 29px;
    line-height: 1.11;
  }

  .build-photo-grid {
    gap: 16px 16px;
    margin-top: 28px;
  }

  .build-photo-card {
    border-radius: 18px;
    aspect-ratio: 1 / 1.08;
  }

  .build-photo-copy {
    min-height: 58px;
    grid-template-columns: 1fr 30px;
    gap: 10px;
    padding: 10px 12px;
    font-size: 17px;
    line-height: 1.12;
  }

  .build-radio {
    width: 30px;
    height: 30px;
  }

  .build-photo-card.is-selected .build-radio {
    border-width: 8px;
  }

  .issue-body-tension {
    padding-top: 14px;
    padding-bottom: 112px;
  }

  .issue-body-tension .issue-title {
    max-width: 352px;
    font-size: 27px;
    line-height: 1.08;
  }

  .issue-body-tension .issue-hint {
    max-width: 334px;
    margin-top: 12px;
    font-size: 17.5px;
    line-height: 1.22;
  }

  .issue-body-tension .issue-grid {
    gap: 5px;
    margin-top: 10px;
  }

  .issue-body-tension .issue-card {
    min-height: 54px;
    border-radius: 17px;
  }

  .issue-body-tension .issue-card-row {
    min-height: 54px;
    padding: 7px 16px 7px 19px;
    font-size: 16px;
  }

  .issue-body-tension .issue-check {
    width: 25px;
    height: 25px;
  }

  .result-summary-page {
    padding-top: 18px;
    padding-bottom: 34px;
  }

  .result-page-head {
    margin-bottom: 18px;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 8px;
  }

  .result-page-head h1 {
    max-width: 100%;
    font-size: 25px;
    line-height: 1.04;
  }

  .result-page-head p {
    max-width: 100%;
    margin-top: 9px;
    font-size: 13.5px;
    line-height: 1.25;
  }

  .result-coach-bubble img {
    width: 86px;
    height: 86px;
    border-radius: 16px;
  }

  .result-speech {
    padding: 12px 13px;
    border-radius: 19px;
  }

  .result-summary-card {
    margin-top: 14px;
    padding: 16px;
    border-radius: 20px;
  }

  .result-summary-card h2 {
    font-size: 23px;
  }

  .result-section-head {
    margin-bottom: 14px;
  }

  .result-section-head p,
  .result-info-heading p {
    font-size: 14px;
    line-height: 1.18;
  }

  .result-goal-grid {
    gap: 10px;
  }

  .result-metric-tile {
    min-height: 100px;
    padding: 13px;
    gap: 7px;
    border-radius: 15px;
  }

  .result-tile-icon,
  .result-row-icon {
    width: 34px;
    height: 34px;
  }

  .result-metric-tile span:not(.result-tile-icon) {
    font-size: 12px;
  }

  .result-metric-tile strong {
    font-size: 24px;
  }

  .result-metric-tile small {
    font-size: 13px;
  }

  .zones-page {
    padding-top: 18px;
  }

  .zones-title {
    max-width: 326px;
    font-size: 26px;
    line-height: 1.08;
  }

  .zones-hint {
    margin-top: 9px;
    font-size: 15px;
  }

  .zones-list {
    gap: 6px;
    margin-top: 14px;
  }

  .zone-image-card {
    min-height: 74px;
    border-radius: 16px;
    padding-right: 146px;
  }

  .zone-name {
    font-size: 17px;
  }

  .zone-media {
    width: 148px;
    background: #f5efe8;
  }

  .zone-media img {
    position: absolute;
    top: var(--zone-y, 50%);
    right: 0;
    width: auto;
    height: 235%;
    max-width: none;
    object-fit: contain;
    transform: translateY(-50%);
  }

  .zone-image-card:nth-child(1) .zone-media img {
    --zone-y: 56%;
  }

  .zone-image-card:nth-child(2) .zone-media img {
    --zone-y: 52%;
  }

  .zone-image-card:nth-child(3) .zone-media img {
    --zone-y: 52%;
  }

  .zone-image-card:nth-child(4) .zone-media img {
    --zone-y: 49%;
  }

  .zone-image-card:nth-child(5) .zone-media img {
    --zone-y: 50%;
  }

  .zone-image-card:nth-child(6) .zone-media img {
    --zone-y: 48%;
  }

  .age-page {
    padding-top: 22px;
  }

  .age-title {
    max-width: 330px;
    font-size: 26px;
  }

  .age-subtitle {
    margin-top: 8px;
    font-size: 18px;
  }

  .age-grid {
    gap: 9px 10px;
    margin-top: 17px;
  }

  .age-card {
    aspect-ratio: 1 / 0.9;
  }

  .age-cta {
    min-height: 38px;
    font-size: 11.5px;
  }

  .arrow-pill {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
    font-size: 17px;
  }

  .legal-line {
    margin-top: 12px;
    padding-top: 10px;
    font-size: 10.5px;
    line-height: 1.22;
  }
}

@media (max-width: 580px) and (max-height: 680px) {
  .device-showcase {
    min-height: 232px;
  }

  .social-proof-media {
    width: min(350px, 100%);
  }

  .social-proof-media img {
    aspect-ratio: 1.35 / 1;
  }

  .press-strip {
    margin-top: 16px;
  }

  .press-strip p {
    font-size: 23px;
  }
}

@media (max-width: 580px) and (min-height: 681px) and (max-height: 760px) {
  .device-showcase {
    min-height: 300px;
    margin-top: 20px;
  }

  .zones-page {
    padding-top: 22px;
  }

  .zones-title {
    font-size: 27px;
  }

  .zones-list {
    gap: 7px;
    margin-top: 16px;
  }

  .zone-image-card {
    min-height: 86px;
    padding-right: 164px;
  }

  .zone-name {
    font-size: 18px;
  }

  .zone-media {
    width: 166px;
  }

  .zone-media img {
    height: 245%;
  }
}
