:root {
  --navy: #18213a;
  --navy-2: #222c49;
  --navy-3: #303a59;
  --cream: #fbf8f2;
  --paper: #ffffff;
  --pale: #f4f0e9;
  --peach: #f3c3aa;
  --peach-soft: #fbe9df;
  --coral: #e66f51;
  --coral-dark: #bf4f36;
  --sage: #dce9e2;
  --mint: #a6ddd0;
  --teal: #23796d;
  --teal-soft: #e0f1ed;
  --yellow: #f3d98b;
  --red-soft: #f7dfdc;
  --red: #9b3f34;
  --line: rgba(24, 33, 58, 0.12);
  --muted: #5e6679;
  --shadow-sm: 0 12px 36px rgba(24, 33, 58, 0.07);
  --shadow-md: 0 24px 70px rgba(24, 33, 58, 0.11);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --display: "Outfit", "Avenir Next", sans-serif;
  --body: "Atkinson Hyperlegible", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--navy);
  background:
    radial-gradient(circle at 6% 4%, rgba(243, 195, 170, 0.28), transparent 27rem),
    radial-gradient(circle at 94% 14%, rgba(166, 221, 208, 0.22), transparent 30rem),
    var(--cream);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

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

::selection {
  color: var(--navy);
  background: var(--yellow);
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: white;
  background: var(--navy);
  transform: translateY(-150%);
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(790px, 100%);
}

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  border-bottom: 1px solid rgba(24, 33, 58, 0.06);
  background: rgba(251, 248, 242, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: flex-end;
  gap: 10px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.24rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand img {
  width: 30px;
  height: 30px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.main-nav a:not(.button) {
  position: relative;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:not(.button):hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: white;
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-lines::before {
  top: -6px;
}

.menu-lines::after {
  top: 6px;
}

.menu-button[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.menu-button[aria-expanded="true"] .menu-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 21px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(24, 33, 58, 0.17);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  background: var(--navy-2);
  box-shadow: 0 16px 34px rgba(24, 33, 58, 0.22);
  transform: translateY(-2px);
}

.button-coral {
  background: var(--coral);
  box-shadow: 0 12px 28px rgba(230, 111, 81, 0.25);
}

.button-coral:hover {
  background: var(--coral-dark);
}

.button-outline {
  border: 1px solid var(--line);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: none;
}

.button-outline:hover {
  border-color: rgba(230, 111, 81, 0.42);
  color: var(--coral-dark);
  background: white;
  box-shadow: var(--shadow-sm);
}

.button-soft {
  color: var(--navy);
  background: var(--peach-soft);
  box-shadow: none;
}

.button-soft:hover {
  color: var(--navy);
  background: #f7d8c9;
}

.button-small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.79rem;
}

.button-arrow {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.button:hover .button-arrow {
  transform: translateX(3px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 15px;
  color: var(--coral-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 25px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  overflow-wrap: break-word;
  color: var(--navy);
  font-family: var(--display);
  line-height: 1.08;
  letter-spacing: -0.035em;
  hyphens: auto;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5.5vw, 4.65rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.3vw, 3.45rem);
  font-weight: 700;
}

h3 {
  margin-bottom: 11px;
  font-size: clamp(1.22rem, 2.7vw, 1.72rem);
  font-weight: 700;
}

p {
  margin-top: 0;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  line-height: 1.65;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 118px;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -90px;
  bottom: 20px;
  width: 330px;
  height: 330px;
  border: 70px solid rgba(166, 221, 208, 0.16);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  align-items: center;
  gap: clamp(45px, 7vw, 90px);
}

.hero-copy {
  min-width: 0;
  animation: reveal-up 600ms ease both;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(2.45rem, 5vw, 4.25rem);
  line-height: 1.12;
}

.type-line {
  min-height: 1.15em;
  display: block;
  color: var(--coral);
}

.type-cursor {
  width: 3px;
  height: 0.8em;
  display: inline-block;
  margin-left: 4px;
  border-radius: 2px;
  background: currentColor;
  vertical-align: 0;
  animation: cursor-blink 1s step-end infinite;
}

.hero .lead {
  max-width: 670px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.hero-note {
  margin: 14px 0 0;
  color: rgba(94, 102, 121, 0.84);
  font-size: 0.78rem;
}

.hero-note a {
  color: var(--coral-dark);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: reveal-scale 750ms 120ms ease both;
}

.hero-blob {
  position: absolute;
  right: -8%;
  bottom: 2%;
  left: -8%;
}

.hero-character {
  position: relative;
  z-index: 2;
  width: min(100%, 470px);
  filter: drop-shadow(0 22px 24px rgba(24, 33, 58, 0.12));
}

.hero-quote {
  position: absolute;
  z-index: 3;
  bottom: -24px;
  left: -34px;
  max-width: 270px;
  display: flex;
  gap: 13px;
  padding: 20px;
  border: 1px solid rgba(24, 33, 58, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.quote-mark {
  color: var(--coral);
  font: 700 2.4rem/0.8 Georgia, serif;
}

.hero-quote p {
  margin: 0;
  font-family: var(--display);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.38;
}

.signal-strip {
  position: relative;
  z-index: 5;
  margin-top: -35px;
}

.signal-shell {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.signal-intro,
.signal-item {
  min-height: 116px;
  padding: 22px;
}

.signal-intro {
  display: flex;
  align-items: center;
  color: white;
  background: var(--navy);
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 700;
}

.signal-item {
  border-left: 1px solid var(--line);
}

.signal-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 0.98rem;
}

.signal-item span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.section {
  position: relative;
  padding: 100px 0;
}

.section-sm {
  padding: 72px 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head p {
  margin-bottom: 0;
}

.surface-peach {
  background: var(--peach-soft);
}

.surface-sage {
  background: var(--sage);
}

.surface-navy {
  color: white;
  background:
    radial-gradient(circle at 90% 0, rgba(243, 195, 170, 0.16), transparent 25rem),
    radial-gradient(circle at 0 100%, rgba(166, 221, 208, 0.12), transparent 26rem),
    var(--navy);
}

.surface-navy h2,
.surface-navy h3 {
  color: white;
}

.surface-navy .lead,
.surface-navy p {
  color: rgba(255, 255, 255, 0.72);
}

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

.recognition-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 16px;
  padding: 19px 21px;
  border: 1px solid rgba(24, 33, 58, 0.08);
  border-radius: 18px;
  background: white;
  box-shadow: 0 8px 24px rgba(24, 33, 58, 0.045);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.recognition-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.recognition-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--coral-dark);
  background: var(--peach-soft);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 800;
}

.recognition-card:nth-child(even) .recognition-icon {
  color: var(--teal);
  background: var(--teal-soft);
}

.recognition-card p {
  margin: 0;
  color: var(--navy);
  font-size: 0.96rem;
  line-height: 1.42;
}

.thesis-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(40px, 8vw, 100px);
}

.thesis-art {
  position: relative;
  min-height: 510px;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(24, 33, 58, 0.13);
  border-radius: 50%;
}

.orbit-one {
  width: 430px;
  height: 430px;
}

.orbit-two {
  width: 300px;
  height: 300px;
  border-style: dashed;
}

.distance-card {
  position: relative;
  z-index: 2;
  width: min(340px, 90%);
  padding: 28px;
  border-radius: 28px;
  color: white;
  background: var(--navy);
  box-shadow: var(--shadow-md);
}

.distance-card strong {
  display: block;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 1.3rem;
  line-height: 1.2;
}

.distance-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.orbit-label {
  position: absolute;
  z-index: 3;
  min-width: 126px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: var(--shadow-sm);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.orbit-label.one {
  top: 52px;
  left: 4px;
}

.orbit-label.two {
  top: 94px;
  right: -8px;
}

.orbit-label.three {
  right: 20px;
  bottom: 68px;
}

.orbit-label.four {
  bottom: 35px;
  left: 12px;
}

.thesis-copy blockquote {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--coral);
  border-radius: 0 18px 18px 0;
  background: var(--peach-soft);
  font-family: var(--display);
  font-size: 1.24rem;
  font-weight: 650;
  line-height: 1.42;
}

.method-loop {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 46px;
}

.loop-step {
  position: relative;
  min-height: 190px;
  padding: 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.065);
}

.loop-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  top: 45px;
  right: -17px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
}

.loop-number {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--yellow);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.loop-step h3 {
  margin-bottom: 7px;
  font-family: var(--body);
  font-size: 0.93rem;
  letter-spacing: 0;
}

.loop-step p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
}

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

.phase-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.phase-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  background: var(--coral);
}

.phase-card:nth-child(2)::before {
  background: var(--yellow);
}

.phase-card:nth-child(3)::before {
  background: var(--teal);
}

.phase-week {
  display: inline-flex;
  margin: 7px 0 28px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--coral-dark);
  background: var(--peach-soft);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.phase-card:nth-child(2) .phase-week {
  color: #745e1f;
  background: #faf0cd;
}

.phase-card:nth-child(3) .phase-week {
  color: var(--teal);
  background: var(--teal-soft);
}

.phase-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

.phase-support {
  position: absolute;
  right: 28px;
  bottom: 25px;
  left: 28px;
}

.support-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--pale);
}

.support-fill {
  height: 100%;
  border-radius: inherit;
  background: var(--coral);
}

.phase-card:nth-child(2) .support-fill {
  background: var(--yellow);
}

.phase-card:nth-child(3) .support-fill {
  background: var(--teal);
}

.support-label {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.68rem;
}

.app-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(45px, 8vw, 100px);
}

.app-window {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: white;
  box-shadow: var(--shadow-md);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 19px;
  border-bottom: 1px solid var(--line);
}

.window-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
}

.window-dot:nth-child(2) {
  background: var(--yellow);
}

.window-dot:nth-child(3) {
  background: var(--mint);
}

.window-title {
  margin-left: 8px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 700;
}

.app-body {
  padding: 25px;
}

.app-kicker {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.plan-row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding: 12px;
  border-radius: 13px;
  background: var(--pale);
  font-size: 0.77rem;
}

.plan-day {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: var(--coral-dark);
  background: var(--peach-soft);
  font-weight: 800;
}

.plan-time {
  color: var(--muted);
  font-size: 0.68rem;
}

.app-signal {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 18px;
  padding: 15px;
  border: 1px solid rgba(35, 121, 109, 0.18);
  border-radius: 14px;
  background: var(--teal-soft);
}

.signal-dot {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  margin-top: 5px;
  border: 3px solid white;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 1px rgba(35, 121, 109, 0.22);
}

.app-signal strong {
  display: block;
  margin-bottom: 3px;
  color: var(--teal);
  font-size: 0.78rem;
}

.app-signal p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.feature-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  margin: 13px 0;
  padding-left: 31px;
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--teal);
  font-size: 0.68rem;
  font-weight: 800;
}

.fit-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 55px;
  padding: clamp(35px, 6vw, 70px);
  border-radius: 34px;
  color: white;
  background:
    radial-gradient(circle at 0 100%, rgba(230, 111, 81, 0.26), transparent 25rem),
    radial-gradient(circle at 100% 0, rgba(166, 221, 208, 0.18), transparent 24rem),
    var(--navy);
  box-shadow: var(--shadow-md);
}

.fit-panel::after {
  content: "?";
  position: absolute;
  right: -30px;
  bottom: -115px;
  color: rgba(255, 255, 255, 0.045);
  font-family: var(--display);
  font-size: 25rem;
  font-weight: 800;
  line-height: 1;
}

.fit-panel h2,
.fit-panel h3 {
  color: white;
}

.fit-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.fit-panel .eyebrow {
  color: var(--peach);
}

.fit-outcomes {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
}

.fit-outcome {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 14px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.065);
}

.fit-symbol {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--navy);
  background: var(--mint);
  font-weight: 800;
}

.fit-outcome:nth-child(2) .fit-symbol {
  background: var(--yellow);
}

.fit-outcome:nth-child(3) .fit-symbol {
  background: var(--peach);
}

.fit-outcome strong {
  display: block;
  color: white;
  font-size: 0.9rem;
}

.fit-outcome span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

.fit-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 29px;
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: 18px;
}

.price-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  border-radius: 26px;
  color: white;
  background: var(--coral);
  box-shadow: var(--shadow-md);
}

.price-card h2 {
  color: white;
}

.price {
  margin: 25px 0 0;
  color: white;
  font-family: var(--display);
  font-size: clamp(3.3rem, 7vw, 5.3rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
}

.price small {
  display: block;
  margin-top: 9px;
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0;
}

.offer-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: white;
}

.offer-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 27px;
}

.offer-metric {
  padding: 15px;
  border-radius: 14px;
  background: var(--pale);
}

.offer-metric strong {
  display: block;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.28rem;
}

.offer-metric span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.69rem;
  line-height: 1.35;
}

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

.article-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: white;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.article-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.article-label {
  margin-bottom: 22px;
  color: var(--coral-dark);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.article-card h3 {
  font-size: 1.22rem;
}

.article-card p {
  flex: 1;
  color: var(--muted);
  font-size: 0.84rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}

.faq-question {
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 19px;
  border: 0;
  color: var(--navy);
  background: transparent;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-plus {
  position: relative;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--peach-soft);
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 7px;
  width: 13px;
  height: 1px;
  background: var(--coral-dark);
  transition: transform 180ms ease;
}

.faq-plus::after {
  transform: rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-plus::after {
  transform: rotate(0);
}

.faq-answer {
  padding: 0 19px 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.faq-answer p {
  margin: 0;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 7vw, 75px);
  border-radius: 34px;
  color: white;
  background: var(--navy);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.final-cta::before {
  top: -100px;
  left: -70px;
  width: 250px;
  height: 250px;
  border: 55px solid rgba(230, 111, 81, 0.14);
}

.final-cta::after {
  right: -80px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border: 60px solid rgba(166, 221, 208, 0.12);
}

.final-cta h2,
.final-cta p,
.final-cta .hero-actions {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: white;
}

.final-cta p {
  max-width: 650px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.70);
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  margin-top: 100px;
  padding: 58px 0 28px;
  border-top: 1px solid var(--line);
  background: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 38px;
}

.footer-intro {
  max-width: 330px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.83rem;
}

.footer-title {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin: 8px 0;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.8rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--coral-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
}

/* Fitcheck */
.fit-page {
  min-height: 100vh;
}

.fit-hero {
  padding: 68px 0 42px;
}

.fit-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
  align-items: start;
  gap: clamp(40px, 7vw, 85px);
}

.fit-hero h1 {
  font-size: clamp(2.35rem, 4.6vw, 3.55rem);
  hyphens: auto;
}

.fit-hero-copy {
  min-width: 0;
}

.trust-points {
  display: grid;
  gap: 11px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.trust-points li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--muted);
  font-size: 0.87rem;
}

.trust-check {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--teal);
  font-size: 0.69rem;
  font-weight: 800;
}

.fit-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow-md);
}

.fit-progress-shell {
  padding: 19px 24px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--pale);
}

.fit-progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fit-progress-track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(24, 33, 58, 0.08);
}

.fit-progress-bar {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #3d6b52;
  transition: width 300ms ease;
}

.fit-stage {
  min-height: 420px;
  padding: clamp(25px, 5vw, 42px);
}

.fit-intro-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 27px;
}

.intro-result {
  min-height: 94px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 13px;
  border-radius: 13px;
  background: var(--teal-soft);
}

.intro-result:nth-child(2) {
  background: #faf0cd;
}

.intro-result:nth-child(3) {
  background: var(--peach-soft);
}

.intro-result span {
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.intro-result strong {
  color: var(--navy);
  font-size: 0.78rem;
  line-height: 1.3;
}

.fit-privacy {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.fit-privacy svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--teal);
}

.question-kicker {
  margin: 0 0 8px;
  color: var(--coral-dark);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.question-title {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.question-help {
  margin-bottom: 23px;
  color: var(--muted);
  font-size: 0.8rem;
}

.option-list {
  display: grid;
  gap: 10px;
}

.fit-option {
  width: 100%;
  min-height: 61px;
  display: grid;
  grid-template-columns: 29px 1fr;
  align-items: center;
  gap: 13px;
  padding: 13px 15px;
  border: 2px solid rgba(24, 33, 58, 0.09);
  border-radius: 15px;
  color: var(--navy);
  background: white;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.fit-option:hover {
  border-color: rgba(230, 111, 81, 0.45);
  background: #fffaf7;
  transform: translateY(-1px);
}

.fit-option[aria-pressed="true"] {
  border-color: var(--coral);
  background: var(--peach-soft);
}

.option-marker {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(24, 33, 58, 0.14);
  border-radius: 9px;
  color: transparent;
  background: white;
  font-size: 0.72rem;
  font-weight: 800;
}

.fit-option[aria-pressed="true"] .option-marker {
  border-color: var(--coral);
  color: white;
  background: var(--coral);
}

.option-copy strong {
  display: block;
  font-size: 0.87rem;
  line-height: 1.35;
}

.option-copy span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.35;
}

.fit-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 25px;
}

.fit-navigation-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
}

.fit-navigation-end .question-help {
  margin: 0;
  text-align: right;
}

.fit-next:disabled {
  opacity: 0.42;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.fit-back {
  min-height: 44px;
  padding: 9px 4px;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.fit-back[hidden] {
  display: block;
  visibility: hidden;
}

.result-shell {
  animation: reveal-up 420ms ease both;
}

.result-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--teal);
  background: var(--teal-soft);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-status.conditional {
  color: #745e1f;
  background: #faf0cd;
}

.result-status.no-fit {
  color: var(--red);
  background: var(--red-soft);
}

.result-title {
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 4vw, 2.55rem);
}

.result-summary {
  color: var(--muted);
  font-size: 0.92rem;
}

.reason-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.reason-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 11px;
  padding: 13px;
  border-radius: 13px;
  background: var(--pale);
  color: var(--muted);
  font-size: 0.78rem;
}

.reason-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: white;
  background: var(--teal);
  font-size: 0.68rem;
  font-weight: 800;
}

.conditional .reason-icon {
  color: var(--navy);
  background: var(--yellow);
}

.no-fit .reason-icon {
  background: var(--coral);
}

.result-includes {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(61, 107, 82, 0.2);
  border-radius: 18px;
  background: #f4f8f5;
}

.result-includes-head { margin-bottom: 10px; }
.result-includes-head span { display: block; margin-bottom: 4px; color: var(--teal); font-size: 0.68rem; font-weight: 800; }
.result-includes-head h3 { margin: 0; color: var(--navy); font-family: var(--display); font-size: 1.04rem; }
.result-includes-head p { margin: 5px 0 0; color: var(--muted); font-size: 0.73rem; line-height: 1.5; }
.result-includes-grid { display: grid; gap: 0; }
.result-include-item { display: grid; grid-template-columns: 86px 190px minmax(0, 1fr); gap: 14px; align-items: start; min-width: 0; padding: 15px 0; border-top: 1px solid rgba(61, 107, 82, 0.16); }
.result-include-badge { display: grid; place-items: center; min-height: 30px; padding: 4px 6px; border-radius: 9px; color: var(--teal); background: var(--teal-soft); font-size: 0.64rem; font-weight: 800; text-align: center; }
.result-include-item strong { display: block; padding-top: 3px; color: var(--navy); font-family: var(--display); font-size: 0.78rem; }
.result-include-item p { margin: 0; color: var(--muted); font-size: 0.7rem; line-height: 1.55; }

.result-week {
  width: 100%;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(61, 107, 82, 0.2);
  border-radius: 18px;
  background: #f4f8f5;
}
.result-week-head { margin-bottom: 16px; }
.result-week-head span { display: block; margin-bottom: 4px; color: var(--teal); font-size: 0.68rem; font-weight: 800; }
.result-week-head h3 { margin: 0; color: var(--navy); font-family: var(--display); font-size: 1.04rem; }
.result-week-head p { margin: 5px 0 0; color: var(--muted); font-size: 0.73rem; line-height: 1.5; }
.result-week-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; }
.result-week-day { display: flex; min-height: 178px; flex-direction: column; padding: 13px 12px; border: 1px solid rgba(61, 107, 82, 0.16); border-radius: 12px; background: #fff; }
.result-week-day-featured { border-color: rgba(217, 116, 82, 0.36); background: #fffaf7; }
.result-week-dayname { margin-bottom: 12px; color: var(--teal); font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.result-week-day strong { color: var(--navy); font-family: var(--display); font-size: 0.78rem; line-height: 1.25; }
.result-week-time { display: inline-block; margin-top: 5px; color: var(--coral); font-size: 0.68rem; font-weight: 800; }
.result-week-day p { margin: auto 0 0; color: var(--muted); font-size: 0.68rem; line-height: 1.5; }
.result-week-contact { display: flex; gap: 10px; align-items: baseline; margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(61, 107, 82, 0.16); color: var(--muted); font-size: 0.7rem; line-height: 1.5; }
.result-week-contact strong { flex: 0 0 auto; color: var(--navy); font-family: var(--display); font-size: 0.76rem; }

.result-price {
  display: grid;
  gap: 3px;
  margin-top: 13px;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}

.result-price span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.result-price strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.35rem;
}

.result-price small {
  color: var(--muted);
  font-size: 0.7rem;
}

.result-caution {
  margin-top: 13px;
  padding: 15px;
  border-radius: 13px;
  background: var(--red-soft);
  color: var(--red);
  font-size: 0.75rem;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 23px;
}

.fit-restart {
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.fit-disclaimer {
  max-width: 760px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reveal-scale {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes cursor-blink {
  0%, 45% { opacity: 1; }
  50%, 95% { opacity: 0; }
}

@media (max-width: 1040px) {
  .main-nav {
    gap: 18px;
  }

  .main-nav a:not(.button) {
    font-size: 0.8rem;
  }

  .hero-grid,
  .thesis-grid,
  .app-grid,
  .fit-panel,
  .offer-grid,
  .fit-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-visual {
    width: min(540px, 100%);
    margin: 0 auto;
  }

  .signal-shell {
    grid-template-columns: repeat(3, 1fr);
  }

  .signal-intro {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .signal-item:first-of-type {
    border-left: 0;
  }

  .method-loop {
    grid-template-columns: 1fr;
  }

  .loop-step {
    min-height: auto;
  }

  .loop-step:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -18px;
    transform: translateX(50%) rotate(90deg);
  }

  .fit-panel {
    gap: 35px;
  }

  .fit-hero-copy {
    max-width: 780px;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 17px;
  }

  .main-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .mobile-nav {
    position: fixed;
    z-index: 55;
    inset: 78px 0 auto;
    display: none;
    max-height: calc(100vh - 78px);
    overflow-y: auto;
    padding: 20px;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    box-shadow: var(--shadow-md);
  }

  .mobile-nav.open {
    display: grid;
    gap: 7px;
  }

  .mobile-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-nav a:hover {
    background: white;
  }

  .recognition-grid,
  .phase-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .phase-card {
    min-height: 300px;
  }

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

@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-shell {
    min-height: 70px;
  }

  .mobile-nav {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .hero {
    padding: 58px 0 92px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 350px;
  }

  .hero-quote {
    right: 5px;
    bottom: -25px;
    left: 5px;
    max-width: none;
  }

  .signal-shell {
    grid-template-columns: 1fr;
  }

  .signal-intro {
    grid-column: auto;
  }

  .signal-item {
    min-height: auto;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 76px 0;
  }

  .section-sm {
    padding: 58px 0;
  }

  .thesis-art {
    min-height: 440px;
  }

  .orbit-one {
    width: 330px;
    height: 330px;
  }

  .orbit-two {
    width: 235px;
    height: 235px;
  }

  .orbit-label {
    min-width: 100px;
    padding: 10px;
    font-size: 0.67rem;
  }

  .distance-card {
    padding: 23px;
  }

  .offer-metrics {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .fit-hero {
    padding-top: 48px;
  }

  .fit-stage {
    min-height: 480px;
    padding: 22px 18px;
  }

  .fit-intro-visual {
    grid-template-columns: 1fr;
  }

  .intro-result {
    min-height: 72px;
  }

  .result-includes { padding: 16px; }
  .result-week { padding: 16px; }
  .result-week-grid { grid-template-columns: 1fr; }
  .result-week-day { min-height: 0; }
  .result-week-contact { display: block; }
  .result-week-contact strong { display: block; margin-bottom: 3px; }
  .result-include-item { grid-template-columns: 76px minmax(0, 1fr); gap: 12px; }
  .result-include-item strong { padding-top: 0; }

  .result-actions {
    flex-direction: column;
  }

  .result-actions .button {
    width: 100%;
  }
}

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

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

@media print {
  .site-header,
  .site-footer,
  .hero-actions,
  .menu-button {
    display: none !important;
  }

  body {
    background: white;
  }

  .section,
  .hero {
    padding: 35px 0;
  }

  .fit-panel,
  .final-cta,
  .surface-navy,
  .price-card {
    color: var(--navy);
    background: white;
    box-shadow: none;
  }

  .surface-navy h2,
  .surface-navy h3,
  .fit-panel h2,
  .fit-panel h3,
  .final-cta h2,
  .price-card h2 {
    color: var(--navy);
  }
}
