:root {
  --bg: #07111c;
  --bg-deep: #040b13;
  --bg-elevated: #0d1825;
  --surface: rgba(12, 24, 38, 0.82);
  --surface-strong: rgba(17, 31, 48, 0.96);
  --surface-soft: rgba(19, 36, 56, 0.7);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #eef4fb;
  --muted: #8ea0b5;
  --muted-strong: #bcc8d6;
  --accent: #d4b067;
  --accent-soft: rgba(212, 176, 103, 0.18);
  --button-light: #edf3fb;
  --button-light-text: #09131f;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --container: 1180px;
  --section-gap: clamp(4rem, 7vw, 6.25rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(39, 85, 136, 0.2), transparent 26%),
    radial-gradient(circle at 82% 12%, rgba(212, 176, 103, 0.11), transparent 18%),
    linear-gradient(180deg, #09131f 0%, var(--bg) 42%, var(--bg-deep) 100%);
  line-height: 1.55;
}

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

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

p,
h1,
h2,
h3,
ul {
  margin-top: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 18%, rgba(76, 127, 181, 0.09), transparent 18%),
    radial-gradient(circle at 88% 30%, rgba(212, 176, 103, 0.06), transparent 18%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(7, 17, 28, 0.88), rgba(7, 17, 28, 0.7));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.nav-row {
  min-height: 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  justify-self: start;
}

.brand-badge {
  min-width: 52px;
  height: 48px;
  padding: 0 0.7rem;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 176, 103, 0.28), rgba(80, 124, 177, 0.25));
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-copy {
  display: grid;
  gap: 0.08rem;
}

.brand-copy strong,
.top-nav,
.button,
.plan-name {
  font-family: "Sora", sans-serif;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.84rem;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.4rem;
  padding: 0.3rem;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(8, 18, 30, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}

.top-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 14px;
  color: var(--muted);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
  border: 1px solid transparent;
}

.top-nav a::after {
  display: none;
}

.top-nav a:hover,
.top-nav a:focus-visible,
.top-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 176, 103, 0.18);
  color: var(--text);
}

.button {
  min-height: 50px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button-primary {
  background: var(--button-light);
  color: var(--button-light-text);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.hero {
  padding: 5.5rem 0 3.8rem;
}

.hero-grid,
.why-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.96fr);
  gap: 2.5rem;
  align-items: stretch;
}

.hero-copy {
  padding: 1.8rem 0 1.4rem;
}

.eyebrow {
  font-family: "Sora", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-kicker {
  max-width: 34rem;
  margin-bottom: 0.95rem;
  color: var(--muted-strong);
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

h1,
h2 {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  max-width: 8.6ch;
  margin-bottom: 1.15rem;
}

h2 {
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  margin-bottom: 0.9rem;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
}

.hero-text,
.pricing-intro p,
.plan-detail,
.plan-description,
.faq-item p,
.final-copy,
.why-copy-block p,
.pitch-card p,
.expertise-card p,
.approach-card p,
.decision-card p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.section-copy {
  color: var(--muted);
  max-width: 44rem;
  font-size: 1rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0 1.5rem;
}

.hero-note-inline {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.96rem;
  line-height: 1.6;
  max-width: 30rem;
}

.hero-stage {
  position: relative;
  min-height: 620px;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 24%, rgba(95, 142, 195, 0.18), transparent 26%),
    radial-gradient(circle at 82% 16%, rgba(212, 176, 103, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(15, 28, 43, 0.98), rgba(9, 18, 29, 0.98));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-stage-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 92%);
}

.hero-stage-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(34rem, calc(100% - 3.2rem));
  padding: 0;
  transform: translate(-50%, -50%);
}

.hero-stage-label {
  display: inline-block;
  margin: 0 0 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-media,
.decision-shell,
.approach-card,
.pricing-card,
.faq-item,
.pitch-card,
.expertise-card,
.why-copy-block,
.signal-card,
.final-card,
.calendly-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-media {
  margin: 0;
  border-radius: 34px;
  overflow: hidden;
  background: var(--surface-strong);
  min-height: 640px;
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 74% center;
  filter: saturate(0.95) brightness(0.84);
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 17, 28, 0.02), rgba(7, 17, 28, 0.58)),
    linear-gradient(90deg, rgba(7, 17, 28, 0.18), rgba(7, 17, 28, 0));
}

.photo-tag {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  width: min(17rem, calc(100% - 2.4rem));
  padding: 0.8rem 0.9rem;
  border-radius: 18px;
  background: rgba(8, 17, 29, 0.72);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  font-family: "Sora", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.45;
}

.hero-float-card {
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  width: min(18rem, calc(100% - 2.4rem));
  padding: 1rem;
  border-radius: 22px;
  background: rgba(8, 17, 29, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
}

.hero-float-label {
  margin: 0 0 0.75rem;
  color: var(--muted-strong);
  font-family: "Sora", sans-serif;
  font-size: 0.84rem;
}

.hero-focus-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.82rem;
}

.hero-focus-list li {
  position: relative;
  min-height: 94px;
  width: 100%;
  padding: 1.2rem 1.6rem;
  display: flex;
  align-items: center;
  clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.35;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 0 rgba(0, 0, 0, 0);
  transition:
    transform 220ms ease,
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
  overflow: hidden;
}

.hero-focus-list li::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.75) 50%, transparent 82%);
  transform: translateX(-130%);
  opacity: 0;
  transition:
    transform 360ms ease,
    opacity 220ms ease;
}

.hero-focus-list li:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(231, 239, 248, 0.92));
  color: #08121d;
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 18px 40px rgba(0, 0, 0, 0.18),
    0 0 34px rgba(255, 255, 255, 0.16);
}

.hero-focus-list li:hover::after {
  transform: translateX(130%);
  opacity: 0.75;
}

.section {
  padding: 0 0 var(--section-gap);
}

.section-stack {
  display: grid;
  gap: 1.35rem;
}

.section-head {
  max-width: 54rem;
}

.section-head-wide {
  max-width: 60rem;
}

.eyebrow-prominent {
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
}

.section-head-compact {
  max-width: 42rem;
}

.decision-shell {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(13, 24, 37, 0.98), rgba(9, 18, 29, 0.96));
}

.decision-shell::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 42rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(82, 128, 190, 0.16), transparent 72%);
  pointer-events: none;
  transition:
    transform 240ms ease,
    opacity 240ms ease,
    background 240ms ease;
}

.decision-shell[data-theme="risk"]::before {
  background: radial-gradient(circle, rgba(130, 168, 208, 0.16), transparent 72%);
}

.decision-shell[data-theme="diet"]::before {
  background: radial-gradient(circle, rgba(98, 157, 132, 0.16), transparent 72%);
}

.decision-shell[data-theme="exercise"]::before {
  background: radial-gradient(circle, rgba(177, 144, 103, 0.17), transparent 72%);
}

.decision-tabs {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.decision-tab {
  position: relative;
  display: grid;
  align-content: end;
  justify-items: start;
  gap: 0.5rem;
  min-height: 118px;
  padding: 1.2rem 1.25rem 1.15rem;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: rgba(219, 229, 241, 0.72);
  font-family: "Sora", sans-serif;
  text-align: left;
  cursor: pointer;
  transition:
    transform 140ms ease,
    background-color 140ms ease,
    color 140ms ease,
    box-shadow 140ms ease;
}

.decision-tab:last-child {
  border-right: 0;
}

.decision-tab::after {
  content: "";
  position: absolute;
  inset: auto 1.2rem 0.75rem;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  transform: scaleX(0.16);
  transform-origin: left center;
  opacity: 0;
  transition:
    opacity 140ms ease,
    transform 140ms ease;
}

.decision-tab-number {
  color: rgba(212, 176, 103, 0.86);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

.decision-tab-label {
  font-size: 1.18rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.decision-tab:hover,
.decision-tab:focus-visible {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
}

.decision-tab.is-active {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.decision-tab:hover::after,
.decision-tab:focus-visible::after,
.decision-tab.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.decision-panel {
  position: relative;
  z-index: 1;
}

.decision-stage {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 1.75rem 1.4rem 1.5rem;
}

.decision-stage::before {
  content: "";
  position: absolute;
  inset: -8rem auto auto 55%;
  width: 26rem;
  height: 26rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(82, 128, 190, 0.22), transparent 70%);
  opacity: 0.8;
  pointer-events: none;
  transition:
    background 220ms ease,
    transform 220ms ease,
    opacity 220ms ease;
}

.decision-stage[data-theme="risk"]::before {
  background: radial-gradient(circle, rgba(130, 168, 208, 0.2), transparent 70%);
}

.decision-stage[data-theme="diet"]::before {
  background: radial-gradient(circle, rgba(98, 157, 132, 0.22), transparent 70%);
}

.decision-stage[data-theme="exercise"]::before {
  background: radial-gradient(circle, rgba(177, 144, 103, 0.22), transparent 70%);
}

.decision-stage-copy,
.decision-points {
  position: relative;
  z-index: 1;
}

.decision-stage-label {
  display: inline-block;
  margin: 0 0 0.8rem;
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.decision-stage-intro {
  max-width: 48rem;
  margin: 0;
  color: rgba(239, 245, 252, 0.96);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.decision-points,
.approach-grid,
.pitch-grid,
.pricing-grid,
.why-signal-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.decision-points {
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.decision-point {
  min-height: 100%;
  padding: 1.35rem 1.2rem 0 0;
}

.decision-point + .decision-point {
  padding-left: 1.2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.decision-point h3 {
  max-width: 14ch;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.decision-point p {
  margin: 0;
  color: var(--muted);
}

.decision-point-eyebrow,
.expertise-card-eyebrow,
.pitch-label {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.decision-stage.is-animating .decision-stage-copy,
.decision-stage.is-animating .decision-point {
  animation: decisionContentIn 260ms ease both;
}

@keyframes decisionContentIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.approach-card,
.pitch-card,
.expertise-card,
.pricing-card,
.why-copy-block {
  min-height: 100%;
  padding: 1.25rem 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(0);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.approach-card:hover,
.pitch-card:hover,
.expertise-card:hover,
.pricing-card:hover,
.faq-item:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.approach-quote {
  max-width: 50rem;
}

.approach-card {
  background: rgba(255, 255, 255, 0.025);
}

.approach-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.8rem;
  min-height: 2.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.pricing-layout,
.faq-layout {
  display: grid;
  gap: 1.3rem;
}

.pricing-grid {
  align-items: start;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(17, 31, 48, 0.9), rgba(11, 21, 33, 0.94));
}

.pricing-card.featured {
  background:
    radial-gradient(circle at top right, rgba(212, 176, 103, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(231, 239, 248, 0.98), rgba(216, 228, 242, 0.94));
  color: var(--button-light-text);
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.26);
}

.pricing-card.featured:hover {
  transform: translateY(-14px) scale(1.02);
}

.pricing-card.featured .plan-name,
.pricing-card.featured .plan-detail,
.pricing-card.featured .plan-description,
.pricing-card.featured .plan-more-label,
.pricing-card.featured .plan-more p {
  color: rgba(9, 19, 31, 0.78);
}

.plan-name {
  color: var(--text);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}

.plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.plan-badge {
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted-strong);
  font-family: "Sora", sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-card.featured .plan-badge {
  background: rgba(9, 19, 31, 0.1);
  color: var(--button-light-text);
}

.plan-price {
  font-family: "Sora", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  margin: 0 0 0.72rem;
}

.plan-detail {
  margin-bottom: 0.65rem;
  font-weight: 700;
  color: var(--muted-strong);
}

.plan-description {
  margin: 0 0 0.9rem;
}

.pricing-card .button {
  margin-top: auto;
}

.plan-more {
  margin: 0 0 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.85rem;
}

.pricing-card.featured .plan-more {
  border-top-color: rgba(9, 19, 31, 0.12);
}

.plan-more-label {
  margin: 0;
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
}

.pricing-card.featured .plan-more-label {
  color: var(--button-light-text);
}

.plan-more p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.checkout-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.pricing-card:not(.featured) .checkout-button.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.checkout-button:disabled {
  cursor: wait;
  opacity: 0.92;
}


.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 1.05rem 1.15rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
  color: var(--text);
}

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

.faq-item p {
  margin: 0.75rem 0 0;
}

.hero-secondary {
  padding-bottom: 2.25rem;
}

.why-hero {
  padding-bottom: 1.35rem;
}

.why-hero-shell {
  max-width: 62rem;
  margin-inline: auto;
}

.why-hero-copy {
  max-width: 54rem;
  margin-inline: auto;
  padding: 0.75rem 0 0;
  text-align: center;
  background: none;
  border: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-hero-copy h1 {
  max-width: 12ch;
  margin-inline: auto;
  margin-bottom: 1rem;
}

.why-hero-copy .hero-text {
  max-width: 40rem;
  margin-inline: auto;
}

.why-hero-copy .hero-actions {
  justify-content: center;
  margin: 1.55rem 0 0;
  padding-top: 0;
}

.why-editorial {
  display: grid;
  gap: 1.35rem;
  max-width: 74rem;
}

.expertise-section {
  padding-top: 0.35rem;
}

.why-copy-block {
  background: rgba(255, 255, 255, 0.03);
}

.why-story {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
  gap: 1.25rem;
  align-items: center;
}

.why-story-reverse {
  grid-template-columns: minmax(300px, 0.98fr) minmax(0, 1.02fr);
}

.why-story-copy {
  min-height: 100%;
  padding: 1.35rem 1.3rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.why-story-copy p:last-child {
  margin-bottom: 0;
}

.why-story-media {
  margin: 0;
  min-height: 100%;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.03);
}

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

.why-story:first-child .why-story-media img {
  object-position: center 24%;
}

.why-story-reverse .why-story-media img {
  object-position: center center;
}

.why-story-offer .why-story-media img {
  object-position: center 28%;
}

.why-story.why-story-gym .why-story-media img {
  object-position: center 18%;
}

.why-copy-block p:last-child {
  margin-bottom: 0;
}

.why-close {
  color: var(--muted-strong);
  font-weight: 700;
}

.signal-card {
  padding: 1.15rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(18, 32, 48, 0.96), rgba(10, 19, 31, 0.98));
}

.signal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.62;
}

.signal-number {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  color: var(--accent);
}

.booking-page {
  min-height: 100vh;
}

.booking-wrap {
  display: grid;
  gap: 1.2rem;
}

.booking-copy {
  max-width: 44rem;
}

.booking-note {
  color: var(--muted);
  max-width: 42rem;
}

.booking-status {
  margin: 0.95rem 0 0;
  color: var(--muted-strong);
  font-weight: 600;
}

.booking-warning {
  margin: 0.75rem 0 0;
  max-width: 44rem;
  color: #f0c98f;
  line-height: 1.6;
}

.booking-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.booking-actions .button {
  min-width: 18rem;
}

.calendly-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
}

.calendly-card iframe,
.calendly-inline-shell {
  width: 100%;
  min-height: 760px;
  border: 0;
}

.final-block {
  padding-bottom: 3rem;
}

.final-card {
  background:
    radial-gradient(circle at top right, rgba(212, 176, 103, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(15, 29, 45, 0.96), rgba(9, 18, 29, 0.98));
  border-radius: 34px;
  padding: 2rem 2rem 2.15rem;
  display: grid;
  gap: 1.35rem;
  justify-items: start;
}

.final-card-copy {
  max-width: 60rem;
}

.final-card-copy h2 {
  max-width: 20ch;
  margin-bottom: 0;
}

.final-copy a {
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.final-copy a:hover,
.final-copy a:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}

.final-card .button {
  min-width: 15rem;
  justify-content: center;
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

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

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .nav-row {
    grid-template-columns: auto 1fr;
  }

  .top-nav {
    justify-self: end;
    gap: 0.18rem;
    font-size: 0.84rem;
  }

  .top-nav a {
    padding: 0 0.72rem;
  }

  .brand-copy span {
    display: none;
  }

  .hero-proof,
  .approach-grid,
  .pitch-grid,
  .expertise-grid,
  .pricing-grid,
  .why-signal-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .decision-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .decision-points {
    grid-template-columns: 1fr;
  }

  .decision-point {
    padding-right: 0;
  }

  .decision-point + .decision-point {
    padding-left: 0;
    padding-top: 1.1rem;
    margin-top: 1.1rem;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .why-story,
  .why-story-reverse {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-row {
    grid-template-columns: 1fr;
    justify-items: start;
    min-height: auto;
    padding: 1rem 0;
    gap: 0.8rem;
  }

  .top-nav {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 0.26rem;
    font-size: 0.78rem;
  }

  .top-nav a {
    flex: 1 1 0;
    padding: 0 0.65rem;
  }

  .brand-copy span {
    display: none;
  }

  .hero-proof,
  .approach-grid,
  .pitch-grid,
  .expertise-grid,
  .pricing-grid,
  .why-signal-row {
    grid-template-columns: 1fr;
  }

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

  .decision-stage {
    min-height: auto;
    padding: 1.4rem 1.1rem 1.25rem;
  }

  .hero-stage {
    min-height: 460px;
  }

  .hero-stage-card {
    left: 1rem;
    right: 1rem;
    top: 50%;
    width: auto;
    transform: translateY(-50%);
  }

  .final-card {
    padding: 1.6rem 1.25rem 1.75rem;
  }

  .final-card-copy h2 {
    max-width: none;
  }

  .final-card .button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 540px) {
  .decision-tabs {
    grid-template-columns: 1fr;
  }

  .decision-tab {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .decision-tab:last-child {
    border-bottom: 0;
  }
}
