:root {
  --black: #030303;
  --coal: #080808;
  --panel: #111111;
  --panel-2: #181818;
  --line: #343434;
  --line-soft: rgba(255, 255, 255, .13);
  --gold: #d4a957;
  --gold-bright: #f0c96d;
  --gold-dark: #8f6726;
  --text: #f8f8f6;
  --muted: #b6b2aa;
  --dim: #77736b;
  --radius: 8px;
  --shadow: 0 30px 80px rgba(0, 0, 0, .45);
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(212, 169, 87, .08), transparent 28rem),
    linear-gradient(180deg, #000, var(--coal) 36rem, #050505);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: none;
}

body.has-intro {
  overflow: hidden;
}

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  gap: 26px;
  align-content: center;
  background:
    radial-gradient(circle at 50% 48%, rgba(212, 169, 87, .16), transparent 17rem),
    #020202;
  animation: introExit 2.35s cubic-bezier(.7, 0, .2, 1) forwards;
}

.intro-graph-logo {
  position: relative;
  width: min(34vw, 360px);
  color: var(--gold-bright);
  filter: drop-shadow(0 0 34px rgba(212,169,87,.2));
  transform-box: fill-box;
  transform-origin: 50% 22%;
  animation: peakLogoPush 2.35s cubic-bezier(.2, .8, .1, 1) forwards;
}

.intro-graph-logo svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.intro-peak {
  fill: currentColor;
  transform-box: fill-box;
  transform-origin: center;
}

.intro-barbell {
  position: relative;
  width: min(58vw, 620px);
  height: 118px;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  transform-origin: center;
}

.intro-barbell::before,
.intro-barbell::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
}

.intro-barbell::before { left: calc(50% - 176px); }
.intro-barbell::after { right: calc(50% - 176px); }

.bar {
  width: 76%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright), var(--gold-dark));
  box-shadow: 0 0 36px rgba(212, 169, 87, .24);
}

.plate {
  position: absolute;
  top: 50%;
  display: block;
  border: 2px solid rgba(240, 201, 109, .92);
  border-radius: 5px;
  background: linear-gradient(180deg, #15110a, #080705);
  transform: translateY(-50%);
}

.plate-left-outer,
.plate-right-outer {
  width: 30px;
  height: 112px;
}

.plate-left-inner,
.plate-right-inner {
  width: 24px;
  height: 88px;
}

.plate-left-outer { left: calc(12% - 34px); }
.plate-left-inner { left: calc(12% + 4px); }
.plate-right-inner { right: calc(12% + 4px); }
.plate-right-outer { right: calc(12% - 34px); }

.intro-brand {
  display: grid;
  justify-items: center;
  color: var(--text);
  font-size: clamp(20px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: .24em;
  line-height: .9;
  text-transform: uppercase;
  opacity: 0;
  animation: introBrand 2.35s ease forwards;
}

.intro-brand small {
  margin-top: 10px;
  color: var(--gold-bright);
  font-size: .38em;
  font-weight: 700;
  letter-spacing: .58em;
}

@keyframes barbellPush {
  0% {
    opacity: 0;
    transform: scale(.44);
  }
  18% {
    opacity: 1;
    transform: scale(.56);
  }
  62% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(5.8);
  }
}

@keyframes peakLogoPush {
  0% {
    opacity: 0;
    transform: scale(.44) translateY(12px);
  }
  18% {
    opacity: 1;
    transform: scale(.62) translateY(0);
  }
  62% {
    opacity: 1;
    transform: scale(1.05) translate(0, 0);
  }
  100% {
    opacity: 0;
    transform: scale(7.8) translate(-4px, 34px);
  }
}

@keyframes introBrand {
  0%, 22% {
    opacity: 0;
    transform: translateY(12px);
  }
  42%, 68% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

@keyframes introExit {
  0%, 78% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
svg { display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(212, 169, 87, .24);
  background: rgba(3, 3, 3, .96);
}

.nav {
  width: min(1420px, calc(100% - 40px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.summit-mark {
  width: 64px;
  color: var(--gold);
}

.summit-mark svg { fill: currentColor; width: 100%; height: auto; }
.summit-mark.small { width: 76px; margin: 0 auto 12px; }

.brand-text {
  display: grid;
  font-size: 25px;
  font-weight: 900;
  line-height: .82;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.brand-text small {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .55em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 54px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav-links a {
  color: rgba(255,255,255,.74);
  transition: color .2s ease;
}

.nav-links a:hover { color: var(--gold-bright); }

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.login-link {
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212,169,87,.38);
  border-radius: 5px;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.login-link:hover {
  transform: translateY(-2px);
  border-color: rgba(240,201,109,.72);
  background: rgba(212,169,87,.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 5px;
  background: transparent;
  color: inherit;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transform: translateZ(0);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 12px 28px rgba(212, 169, 87, .18);
}

.btn:active {
  transform: translateY(0) scale(.985);
}

.btn-primary {
  color: #080808;
  border-color: rgba(255,255,255,.08);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 8px 22px rgba(212, 169, 87, .16);
}
.btn-secondary,
.btn-outline {
  border-color: rgba(212, 169, 87, .54);
  color: var(--gold-bright);
}
.btn-dark { color: #080808; background: #050505; }
.featured .btn-dark { background: #050505; color: var(--gold-bright); border-color: rgba(0,0,0,.2); }
.full-width { width: 100%; }

.text-button {
  width: fit-content;
  margin: -4px auto 4px;
  border: 0;
  background: transparent;
  color: var(--gold);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.text-button:hover {
  color: var(--gold-bright);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212, 169, 87, .38);
  border-radius: 5px;
  background: rgba(255,255,255,.03);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--gold);
}

.hero {
  position: relative;
  width: min(1420px, calc(100% - 40px));
  min-height: calc(100svh - 96px);
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  background: #050505;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .34);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.62), rgba(0,0,0,.82)),
    linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.26), rgba(0,0,0,.88)),
    url("https://images.unsplash.com/photo-1581009137042-c552e485697a?auto=format&fit=crop&w=1400&q=72") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.62), transparent 34%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(880px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(92px, 13vw, 168px) 0 220px;
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-copy::before {
  content: "";
  width: 112px;
  height: 2px;
  display: block;
  margin-bottom: 28px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  transform-origin: center;
  animation: accentSweep 3.8s ease-in-out infinite;
}

.hero h1 {
  margin: 0;
  display: grid;
  max-width: 520px;
  justify-items: center;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(76px, 9vw, 142px);
  font-weight: 400;
  line-height: .86;
  letter-spacing: .015em;
  text-transform: uppercase;
}

.hero h1 span:last-child { color: var(--gold); }

.hero p {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.74);
  font-size: 16px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.hero-athlete { min-height: 660px; }

.hero-proof {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(212, 169, 87, .22);
  background: rgba(4,4,4,.94);
}

.hero-proof article {
  min-height: 128px;
  padding: 28px clamp(22px, 5vw, 74px);
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 18px;
  align-content: center;
  border-right: 1px solid rgba(212, 169, 87, .16);
}

.hero-proof article:last-child { border-right: 0; }
.proof-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 169, 87, .7);
  border-radius: 50%;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 900;
}

.hero-proof strong {
  color: var(--gold-bright);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-proof p {
  grid-column: 2;
  margin: 5px 0 0;
  color: rgba(255,255,255,.74);
  font-size: 13px;
  line-height: 1.4;
}

.story-section,
.app-section,
.packages-section,
.booking-section {
  width: min(1420px, calc(100% - 40px));
  margin: 0 auto;
}

.story-section,
.app-section,
.packages-section,
.booking-section,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

.story-section {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  min-height: 380px;
  border: 1px solid rgba(255,255,255,.16);
  border-top: 0;
  background: #090909;
}

.story-image {
  min-height: 380px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.28), rgba(0,0,0,.7)),
    url("https://images.unsplash.com/photo-1517344884509-a0c97ec11bcc?auto=format&fit=crop&w=1200&q=72") center / cover;
}

.story-copy {
  padding: clamp(36px, 6vw, 76px);
  display: grid;
  align-content: center;
}

.section-label {
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: .012em;
  text-transform: uppercase;
}

.story-copy p:last-child,
.section-heading p,
.booking-panel > div > p:last-child,
.mission-panel p {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.section-heading,
.story-copy,
.booking-panel > div {
  text-align: center;
}

.section-heading {
  justify-items: center;
}

.section-heading p,
.booking-panel > div > p:last-child {
  margin-left: auto;
  margin-right: auto;
}

.app-section,
.packages-section,
.booking-section { padding: 92px 0 0; }

.section-heading {
  display: grid;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 34px;
}

.section-heading h2 { max-width: 820px; }

.app-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.app-grid-clean {
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  align-items: start;
}

.app-grid-clean .phone {
  height: 580px;
  min-height: 580px;
  padding: 22px 20px 24px;
  animation: phoneFloat 6.2s ease-in-out infinite;
}

.app-grid-clean .phone:nth-child(2) { animation-delay: -.8s; }
.app-grid-clean .phone:nth-child(3) { animation-delay: -1.6s; }
.app-grid-clean .phone:nth-child(4) { animation-delay: -2.4s; }
.app-grid-clean .phone:nth-child(5) { animation-delay: -3.2s; }

.app-grid-clean .phone:hover {
  animation-play-state: paused;
}

.app-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 340px));
  justify-content: center;
  gap: clamp(22px, 4vw, 54px);
  margin-top: 18px;
}

.app-showcase .phone:nth-child(2) {
  margin-top: 54px;
}

.app-showcase .phone {
  animation: phoneFloat 5.8s ease-in-out infinite;
}

.app-showcase .phone:nth-child(2) {
  animation-delay: -2.4s;
}

.phone {
  position: relative;
  min-height: 548px;
  padding: 24px 22px 70px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 28px;
  background: linear-gradient(145deg, #090909, #151515);
  box-shadow: 0 16px 38px rgba(0,0,0,.32);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.phone:hover {
  border-color: rgba(240,201,109,.56);
  box-shadow: 0 22px 48px rgba(0,0,0,.38);
}

.phone::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 27px;
  background: radial-gradient(circle at 20% 0%, rgba(255,255,255,.07), transparent 18rem);
  pointer-events: none;
}

.phone > * { position: relative; z-index: 1; }
.phone-top, .phone-title {
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 700;
}

.phone h3 {
  margin: 14px 0 8px;
  font-size: 24px;
  line-height: 1.16;
}

.phone p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
}

.choice-list { display: grid; gap: 10px; margin: 18px 0 28px; }
.choice {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 4px;
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.84);
  text-align: left;
  font-size: 12px;
  cursor: pointer;
}
.choice.selected {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(212,169,87,.08);
}

.phone-brand { padding-top: 16px; text-align: center; }
.session-card {
  margin: 16px 0;
  padding: 16px;
  border-radius: 6px;
  color: #080808;
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), transparent),
    linear-gradient(135deg, var(--gold-bright), var(--gold));
}
.session-card span,
.session-card button {
  display: block;
  color: rgba(0,0,0,.76);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.session-card strong {
  display: block;
  margin: 8px 0 13px;
  font-size: 16px;
  line-height: 1.3;
}
.session-card b { font-size: 28px; line-height: 1; }
.session-card button {
  min-height: 28px;
  padding: 0 12px;
  border: 0;
  border-radius: 3px;
  background: #090909;
  color: #fff;
}

.mini-calendar,
.month-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 9px;
}
.mini-calendar span,
.month-grid span {
  color: rgba(255,255,255,.58);
  font-size: 10px;
  text-align: center;
}
.mini-calendar button,
.month-grid button {
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(255,255,255,.78);
  font-size: 11px;
  cursor: pointer;
}
.mini-calendar button.active,
.month-grid button.selected {
  color: #080808;
  background: var(--gold);
}

.month-grid button.muted {
  opacity: .38;
}

.month-grid button:disabled {
  opacity: .24;
  cursor: not-allowed;
}

.bottom-tabs {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 10px;
}
.bottom-tabs button {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.55);
  font-size: 10px;
  cursor: pointer;
}
.bottom-tabs button.active { color: var(--gold-bright); }

.metric-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 18px 0;
}
.metric-cards div,
.chart-card,
.line-card {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  background: rgba(255,255,255,.04);
}
.metric-cards div { padding: 13px; }
.metric-cards span,
.chart-head,
.line-card span {
  color: rgba(255,255,255,.72);
  font-size: 11px;
}
.metric-cards strong {
  display: inline-block;
  margin-top: 7px;
  font-size: 28px;
}
.metric-cards small { color: #82ce72; font-size: 11px; }

.chart-card,
.line-card { padding: 15px; }
.chart-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}
.bar-chart {
  height: 134px;
  display: flex;
  align-items: end;
  gap: 8px;
}
.bar-chart i {
  flex: 1;
  min-width: 6px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-dark));
}

.line-card + .line-card { margin-top: 16px; }
.line-card strong {
  display: block;
  margin: 5px 0 12px;
  font-size: 24px;
}

.app-grid-clean .line-card {
  padding: 14px;
}

.app-grid-clean .line-card + .line-card {
  margin-top: 12px;
}

.app-grid-clean .line-card strong {
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.16;
}

.app-grid-clean .dashboard .line-card strong {
  font-size: clamp(18px, 1.75vw, 23px);
}

.app-grid-clean .calendar-phone .line-card strong {
  font-size: clamp(18px, 1.75vw, 24px);
}
.line-card svg {
  width: 100%;
  height: 58px;
  overflow: visible;
}
.line-card polyline {
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.range-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  margin-top: 10px;
}
.range-tabs button {
  min-height: 24px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: rgba(255,255,255,.62);
  font-size: 10px;
}
.range-tabs button.active {
  color: #080808;
  background: var(--gold);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.price-card {
  min-height: 440px;
  padding: 26px;
  display: grid;
  align-content: start;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #0b0b0b, #080808);
}
.price-card.featured {
  color: #070707;
  border-color: rgba(255,255,255,.16);
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), transparent),
    linear-gradient(180deg, var(--gold-bright), var(--gold));
}
.price-card h3 {
  margin: 0 0 24px;
  font-size: 18px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.price-card > strong {
  display: block;
  font-size: 44px;
  line-height: .95;
}
.price-card > strong span {
  font-size: 14px;
  font-weight: 700;
  color: currentColor;
  opacity: .7;
}
.price-card ul {
  min-height: 150px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.package-fit {
  min-height: 64px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.featured .package-fit {
  color: rgba(0,0,0,.72);
}
.price-card li {
  margin: 12px 0;
  color: var(--muted);
  font-size: 14px;
}
.featured li { color: rgba(0,0,0,.72); }
.price-card li::before {
  content: "+";
  margin-right: 8px;
  color: var(--gold-bright);
}
.featured li::before { color: #080808; }
.price-card.selected { outline: 2px solid var(--gold-bright); outline-offset: 4px; }

.offer-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 22px;
  align-items: stretch;
}

.offer-stack {
  display: grid;
  gap: 18px;
}

.rate-card,
.mission-panel,
.contact-panel,
.account-card,
.email-preview,
.chatbot-panel {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
}

.rate-card {
  min-height: 100%;
  padding: clamp(28px, 5vw, 48px);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  border-color: rgba(212,169,87,.44);
  background:
    linear-gradient(135deg, rgba(212,169,87,.14), transparent 42%),
    linear-gradient(180deg, #111, #080808);
}

.rate-card strong {
  display: block;
  margin: 8px 0;
  font-size: clamp(64px, 8vw, 112px);
  line-height: .88;
  color: var(--gold-bright);
}

.rate-card span {
  color: var(--muted);
  font-size: 15px;
}

.rate-card p {
  max-width: 480px;
  color: var(--muted);
  line-height: 1.7;
}

.mission-panel,
.contact-panel,
.account-card {
  padding: clamp(24px, 4vw, 36px);
}

.mission-panel {
  margin-top: 26px;
  text-align: center;
}

.mission-panel .section-label,
.mission-panel p {
  margin-left: auto;
  margin-right: auto;
}

.mission-panel h3,
.contact-panel h3,
.account-card h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}

.contact-grid,
.account-grid,
.calendar-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.client-calendar {
  margin: 22px 0;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.035);
}

.client-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.client-calendar-grid span {
  color: var(--dim);
  font-size: 10px;
  font-weight: 900;
  text-align: center;
}

.client-calendar-grid button {
  min-height: 74px;
  padding: 8px;
  display: grid;
  align-content: start;
  gap: 6px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  background: rgba(255,255,255,.035);
  color: rgba(255,255,255,.82);
  text-align: left;
  cursor: pointer;
}

.client-calendar-grid button:hover,
.client-calendar-grid button.selected {
  border-color: rgba(240,201,109,.64);
  background: rgba(212,169,87,.1);
}

.client-calendar-grid button.muted {
  opacity: .34;
}

.client-calendar-grid button.has-workout {
  color: var(--gold-bright);
}

.client-calendar-grid small {
  color: var(--muted);
  font-size: 10px;
}

.contact-panel {
  margin-top: 28px;
}

.contact-card {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
}

.contact-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.contact-card a,
.contact-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.package-consult-panel {
  margin-top: 28px;
  align-items: center;
}

.founders-section {
  padding-top: 118px;
}

.founder-grid {
  display: grid;
  gap: 28px;
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(212,169,87,.08), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
}

.founder-card-alt {
  grid-template-columns: minmax(0, 1.22fr) minmax(260px, .78fr);
}

.founder-card-alt .founder-photo {
  order: 2;
}

.founder-photo {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(240,201,109,.3);
  border-radius: var(--radius);
  background: #111;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(.94) contrast(1.04);
}

.founder-copy {
  display: grid;
  align-content: center;
  text-align: left;
}

.founder-copy h3 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .96;
}

.founder-copy p:not(.section-label) {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.transformation-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.transformation-strip figure {
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  border: 1px solid rgba(240,201,109,.36);
  border-radius: var(--radius);
  background: rgba(255,255,255,.035);
}

.transformation-strip img {
  width: 100%;
  height: 260px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.transformation-strip figcaption {
  padding: 14px 16px 16px;
  display: grid;
  gap: 5px;
  background: rgba(0,0,0,.5);
}

.transformation-strip span {
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.transformation-strip strong {
  font-size: 18px;
}

.founder-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 20px;
}

.founder-stats span {
  padding: 8px 10px;
  border: 1px solid rgba(212,169,87,.36);
  border-radius: 999px;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.booking-section { padding-bottom: 90px; }
.booking-panel {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(30px, 6vw, 76px);
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid rgba(212,169,87,.4);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(212,169,87,.08), transparent 40%),
    #090909;
}

form { display: grid; gap: 18px; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
label {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.74);
  font-size: 12px;
  font-weight: 800;
}
input, select {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 5px;
  padding: 0 14px;
  background: rgba(255,255,255,.05);
  color: var(--text);
  outline: none;
}
textarea {
  min-height: 118px;
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 5px;
  padding: 14px;
  background: rgba(255,255,255,.05);
  color: var(--text);
  font: inherit;
  line-height: 1.5;
  resize: vertical;
  outline: none;
}
textarea::placeholder {
  color: rgba(182,178,170,.42);
}
select option { color: #111; }
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,169,87,.16);
}
.full-field { grid-column: 1 / -1; }

.booking-workbench {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 14px;
}
.calendar-card,
.times-card {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
}
.calendar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.calendar-head button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.times-card {
  display: grid;
  gap: 10px;
  align-content: start;
}
.times-card button {
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 4px;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.82);
  font-size: 12px;
  cursor: pointer;
}
.times-card button.selected {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.time-slot {
  min-height: 62px;
  padding: 10px;
  display: grid;
  gap: 4px;
  align-content: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 5px;
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.82);
  text-align: left;
  cursor: pointer;
}

.time-slot strong,
.time-slot span {
  display: block;
}

.time-slot strong { font-size: 13px; }
.time-slot span { color: var(--muted); font-size: 11px; }

.time-slot.selected {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(212,169,87,.1);
}

.time-slot.blocked {
  cursor: not-allowed;
  opacity: .48;
  border-color: rgba(255,255,255,.1);
  background: repeating-linear-gradient(-45deg, rgba(255,255,255,.045), rgba(255,255,255,.045) 8px, rgba(255,255,255,.02) 8px, rgba(255,255,255,.02) 16px);
}

.booking-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.checkbox-row {
  display: flex;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.email-preview {
  display: none;
  overflow: hidden;
}

.email-preview.show {
  display: block;
}

.email-preview-header {
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(212,169,87,.22);
  background: #050505;
}

.email-preview-body {
  padding: 22px;
}

.calendar-block {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(212,169,87,.36);
  border-radius: var(--radius);
  background: rgba(212,169,87,.08);
}

.calendar-block strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-bright);
}

.site-map-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

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

.process-grid .detail-card {
  justify-items: center;
  align-content: center;
  text-align: center;
}

.process-grid .detail-card p {
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
}

.compact-feature-grid .detail-card {
  min-height: 220px;
}

.detail-card {
  min-height: 260px;
  padding: 24px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.detail-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240,201,109,.38);
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.032));
}

.detail-card span {
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.detail-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
}

.detail-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.review-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  min-height: 100%;
  padding: 24px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(212,169,87,.08), rgba(255,255,255,.025)),
    #0b0b0b;
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
}

.stars {
  color: var(--gold-bright);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .08em;
}

.stars span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.review-card strong {
  color: var(--text);
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.review-form {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
}

.rating-field {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
  text-align: center;
}

.rating-field legend {
  color: rgba(255,255,255,.74);
  font-size: 12px;
  font-weight: 800;
}

.rating-slider-wrap {
  width: min(440px, 100%);
  display: grid;
  justify-items: center;
  gap: 12px;
}

.rating-display {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--gold-bright);
}

.rating-display [data-rating-label] {
  font-family: "Bebas Neue", sans-serif;
  font-size: 46px;
  line-height: .9;
}

.rating-display span:last-child {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.rating-slider {
  width: 100%;
  accent-color: var(--gold-bright);
}

.rating-scale {
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: rgba(182,178,170,.66);
  font-size: 11px;
  font-weight: 800;
}

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

.admin-row .review-copy {
  margin-top: 8px;
  max-width: 820px;
  color: var(--muted);
  line-height: 1.55;
}

.confirmation {
  display: none;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(212,169,87,.34);
  border-radius: 5px;
  color: var(--gold-bright);
  background: rgba(212,169,87,.08);
  font-size: 13px;
}
.confirmation.show { display: block; }

.checkout-summary {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
}

.checkout-summary span {
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.checkout-summary strong {
  font-size: 24px;
}

.checkout-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.faq-list {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  overflow: hidden;
}

.faq-item summary {
  min-height: 74px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.faq-item summary::after {
  content: "+";
  color: var(--gold-bright);
  font-size: 22px;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.auth-layout {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.auth-panel {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid rgba(212,169,87,.38);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(212,169,87,.08), transparent 42%),
    #090909;
}

.auth-copy p,
.account-card p,
.session-row p {
  color: var(--muted);
  line-height: 1.65;
}

.social-buttons {
  display: grid;
  gap: 12px;
}

.social-button {
  min-height: 48px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 5px;
  background: rgba(255,255,255,.05);
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}

.admin-login-button {
  display: grid;
  place-items: center;
  text-align: center;
}

.social-button:hover {
  border-color: rgba(212,169,87,.5);
}

.calendar-layout {
  align-items: start;
}

.session-list {
  display: grid;
  gap: 12px;
}

.session-row {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
}

.session-row span {
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.session-row strong {
  display: block;
  margin-top: 7px;
  font-size: 20px;
}

.session-actions,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}

.session-actions input,
.admin-actions input {
  min-height: 42px;
  min-width: 210px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 5px;
  background: rgba(255,255,255,.05);
  color: var(--text);
  padding: 0 10px;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.admin-metrics article,
.admin-row {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
}

.admin-metrics span,
.admin-row span {
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.admin-metrics strong {
  display: block;
  margin: 8px 0;
  font-size: 24px;
}

.admin-metrics p,
.admin-row p,
.policy-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.admin-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.admin-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.admin-row strong {
  display: block;
  margin: 6px 0;
  font-size: 18px;
}

.policy-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.coach-alert {
  display: none;
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid rgba(240,201,109,.5);
  border-radius: var(--radius);
  color: var(--gold-bright);
  background: rgba(212,169,87,.08);
  font-size: 13px;
}

.coach-alert.show {
  display: block;
}

.synced {
  border-color: rgba(130,206,114,.72) !important;
  color: #82ce72 !important;
}

.chatbot-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
}

.chatbot-toggle {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(212,169,87,.58);
  border-radius: 999px;
  color: #080808;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 16px 40px rgba(0,0,0,.36);
  cursor: pointer;
}

.chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 60px;
  width: min(360px, calc(100vw - 36px));
  display: none;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.chatbot-widget.open .chatbot-panel {
  display: block;
}

.chatbot-head {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(212,169,87,.22);
}

.chatbot-head button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  cursor: pointer;
}

.chatbot-messages {
  max-height: 280px;
  overflow: auto;
  padding: 16px;
}

.chatbot-messages p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.chatbot-form {
  grid-template-columns: 1fr auto;
  padding: 12px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.chatbot-form .btn {
  min-height: 48px;
  padding: 0 14px;
}

.app-landing .button-row,
.app-teaser-section .button-row {
  justify-content: center;
}

.app-teaser-section,
.app-landing,
.app-features-section {
  padding-top: 118px;
}

.final-cta-panel {
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
}

.final-cta-panel .button-row {
  justify-content: center;
}

.footer {
  border-top: 1px solid rgba(212,169,87,.22);
  background: #030303;
}
.footer-inner {
  width: min(1420px, calc(100% - 40px));
  min-height: 112px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-contact {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-contact a {
  color: var(--white);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--gold);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .62s ease, transform .62s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes accentSweep {
  0%, 100% {
    opacity: .45;
    transform: scaleX(.42);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes phoneFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.has-intro {
    overflow: auto;
  }
  .intro-loader {
    display: none;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-copy::before,
  .intro-graph-logo,
  .intro-peak,
  .app-showcase .phone,
  .app-grid-clean .phone {
    animation: none !important;
  }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
  }
}

@media (max-width: 1120px) {
  .hero-copy { padding-bottom: 240px; }
  .hero-athlete { display: none; }
  .hero-proof { grid-template-columns: 1fr 1fr 1fr; }
  .app-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading,
  .booking-panel { grid-template-columns: 1fr; display: grid; }
  .app-grid-clean { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .app-showcase { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
}

@media (max-width: 860px) {
  .nav { height: 68px; }
  .brand-text { font-size: 19px; }
  .brand-text small { letter-spacing: .36em; }
  .summit-mark { width: 52px; }
  .menu-toggle { display: block; }
  .nav-actions .nav-cta { display: none; }
  .login-link { min-height: 42px; padding: 0 12px; }
  .nav-links {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid rgba(212,169,87,.32);
    border-radius: var(--radius);
    background: #080808;
  }
  body.menu-open .nav-links { display: flex; }
  .story-section,
  .founder-card,
  .founder-card-alt,
  .pricing-grid,
  .admin-metrics,
  .admin-row,
  .review-grid,
  .offer-grid,
  .contact-grid,
  .account-grid,
  .calendar-layout,
  .auth-panel,
  .site-map-grid,
  .booking-workbench { grid-template-columns: 1fr; }
  .founder-card-alt .founder-photo { order: 0; }
  .story-copy { order: -1; }
}

@media (max-width: 680px) {
  .nav,
  .hero,
  .story-section,
  .app-section,
  .packages-section,
  .booking-section,
  .footer-inner {
    width: min(100% - 28px, 1420px);
  }
  .hero {
    min-height: auto;
    margin-top: 14px;
  }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(0,0,0,.66), rgba(0,0,0,.9)),
      linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.28), rgba(0,0,0,.82)),
      url("https://images.unsplash.com/photo-1581009137042-c552e485697a?auto=format&fit=crop&w=900&q=68") center / cover;
  }
  .hero-copy {
    width: min(100%, 620px);
    padding: 58px 24px 28px;
  }
  .hero h1 { font-size: 76px; }
  .hero p { font-size: 15px; }
  .hero-actions .btn { width: 100%; }
  .hero-proof {
    position: relative;
    grid-template-columns: 1fr;
  }
  .hero-proof article {
    min-height: auto;
    padding: 20px 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(212,169,87,.16);
  }
  .story-image { min-height: 260px; }
  .founder-photo,
  .founder-photo img { min-height: 420px; }
  .transformation-strip { grid-template-columns: 1fr; }
  .section-heading { gap: 12px; }
  .app-section,
  .packages-section,
  .booking-section { padding-top: 68px; }
  .app-grid,
  .app-grid-clean,
  .app-showcase,
  .client-calendar-grid,
  .form-grid,
  .time-grid { grid-template-columns: 1fr; }
  .app-showcase .phone:nth-child(2) { margin-top: 0; }
  .phone { min-height: 520px; }
  .app-grid-clean .phone {
    height: auto;
    min-height: 520px;
  }
  h2 { font-size: 50px; }
  .footer-inner {
    padding: 26px 0;
    display: grid;
  }
  .footer-inner .btn { width: 100%; }
}
