:root {
  color-scheme: light;
  --ink: #101827;
  --muted: #64748b;
  --line: #d9e2ea;
  --paper: #ffffff;
  --soft: #f5f8fc;
  --navy: #0b1220;
  --navy-2: #111827;
  --blue: #1376f8;
  --green: #10b981;
  --violet: #7656f2;
  --magenta: #e2388e;
  --shadow: 0 22px 70px rgba(15, 23, 42, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(20px, 5vw, 72px);
  color: #ffffff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open,
.legal-page .site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 116px;
  height: 50px;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand img {
  width: 116px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(15, 23, 42, 0.14));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 850;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-action {
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--blue);
  color: #ffffff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  color: currentColor;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  padding: 118px clamp(20px, 5vw, 72px) 76px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 12, 22, 0.9) 0%, rgba(11, 18, 32, 0.68) 36%, rgba(11, 18, 32, 0.13) 80%),
    linear-gradient(0deg, rgba(7, 12, 22, 0.35), rgba(7, 12, 22, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
}

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

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

h1 {
  margin-bottom: 14px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h1 span:first-child {
  color: #ffffff;
}

h1 span + span {
  max-width: 520px;
  margin-top: 8px;
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.04;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.15;
}

.hero-copy {
  width: min(500px, 100%);
  margin-bottom: 26px;
  font-size: clamp(18px, 1.6vw, 22px);
  color: rgba(255, 255, 255, 0.86);
}

.hero-small {
  width: min(480px, 100%);
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 750;
}

.hero-actions,
.form-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(19, 118, 248, 0.26);
}

.hero-store-badges {
  width: min(330px, 100%);
  height: auto;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.proof-band div {
  min-height: 132px;
  padding: 26px clamp(20px, 4vw, 46px);
  background: #f8fbfd;
}

.proof-band strong,
.proof-band span {
  display: block;
}

.proof-band strong {
  margin-bottom: 8px;
  font-size: 18px;
}

.proof-band span {
  color: var(--muted);
}

.section,
.app-preview,
.notify-section {
  padding: clamp(64px, 7vw, 104px) clamp(20px, 5vw, 72px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

.section-copy {
  max-width: 650px;
}

.section-copy p:not(.eyebrow),
.notify-copy p {
  color: var(--muted);
  font-size: 18px;
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
  background: #ffffff;
}

.founder-story {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.founder-story p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 17px;
}

.founder-story p:first-child,
.founder-story p:last-child {
  color: var(--ink);
  font-weight: 800;
}

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

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

.feature-card,
.mode-card {
  min-height: 214px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.feature-card span,
.mode-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
}

.feature-card p,
.mode-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.coach-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.coach-showcase-board {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: 14px;
}

.coach-primary-card,
.coach-mini-card,
.coach-progress-ribbon {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.coach-primary-card {
  min-height: 100%;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(19, 118, 248, 0.14), transparent 36%),
    linear-gradient(180deg, #ffffff, #f7fbff);
}

.coach-primary-card span,
.coach-mini-card span,
.coach-progress-ribbon span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.coach-primary-card h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.coach-primary-card p,
.coach-mini-card p,
.coach-progress-ribbon p {
  color: var(--muted);
  margin-bottom: 0;
}

.coach-primary-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.coach-primary-metrics div {
  padding: 14px;
  border-radius: 8px;
  background: rgba(11, 18, 32, 0.04);
}

.coach-primary-metrics strong,
.coach-primary-metrics small {
  display: block;
}

.coach-primary-metrics strong {
  margin-bottom: 5px;
  font-size: 15px;
}

.coach-primary-metrics small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.coach-side-stack {
  display: grid;
  gap: 14px;
}

.coach-mini-card {
  min-height: 176px;
  padding: 24px;
  background: #ffffff;
}

.coach-mini-card.readiness {
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.06), #ffffff 38%);
}

.coach-mini-card.logging {
  background: linear-gradient(180deg, rgba(118, 86, 242, 0.06), #ffffff 38%);
}

.coach-progress-ribbon {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  background: var(--navy);
}

.coach-progress-ribbon h3 {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 22px;
}

.coach-progress-ribbon p {
  color: #c8d3e2;
}

.app-preview {
  display: grid;
  grid-template-columns: minmax(260px, 0.64fr) minmax(0, 1.36fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  color: #ffffff;
  background: var(--navy-2);
}

.app-preview .section-copy p:not(.eyebrow) {
  color: #b8c2d1;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 320px));
  gap: clamp(18px, 3vw, 32px);
  justify-content: center;
  align-items: end;
}

.phone-frame {
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background: linear-gradient(145deg, #253044, #060913);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.38);
}

.phone-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 25px;
  background: #ffffff;
}

.phone-frame figcaption {
  padding: 12px 6px 4px;
  color: #dbe7f5;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.progress-frame {
  transform: translateY(28px);
}

.centered {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

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

.mode-card.simple {
  border-top: 4px solid var(--green);
}

.mode-card.intermediate {
  border-top: 4px solid var(--blue);
}

.mode-card.expert {
  border-top: 4px solid var(--magenta);
}

.system-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
  background: var(--soft);
}

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

.v4-paths {
  max-width: 1180px;
  margin-inline: auto;
}

.training-path {
  min-height: 330px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.training-path.active {
  border-top: 4px solid var(--blue);
}

.training-path.scored {
  border-top: 4px solid var(--violet);
}

.training-path.logger {
  border-top: 4px solid var(--green);
}

.training-path span,
.detail-card span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.training-path p,
.detail-card p {
  color: var(--muted);
}

.training-path ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  list-style: none;
}

.training-path li {
  padding-left: 18px;
  position: relative;
}

.training-path li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.access-section {
  background: var(--soft);
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin-inline: auto;
}

.access-card {
  min-height: 276px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.access-card span,
.support-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.access-card.featured {
  border-top: 4px solid var(--blue);
  background: linear-gradient(180deg, rgba(19, 118, 248, 0.05), #ffffff 28%);
}

.price-line {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 950;
}

.access-card p:last-child,
.support-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.detail-section {
  background: #ffffff;
}

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

.detail-card {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 320px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

.detail-card h3 {
  font-size: 24px;
}

.mini-phone {
  width: 100%;
  max-width: 220px;
  justify-self: center;
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.22);
}

.score-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.56fr) minmax(0, 1.44fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  background: var(--soft);
}

.score-layout {
  display: grid;
  grid-template-columns: minmax(200px, 300px) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.score-phone,
.achievement-phone {
  width: min(300px, 100%);
}

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

.score-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.score-card.dark {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.08);
  background: var(--navy);
}

.score-card span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.score-card.dark span {
  color: var(--green);
}

.score-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.score-card.dark p {
  color: #c8d3e2;
}

.achievement-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(190px, 300px) minmax(0, 520px);
  gap: 28px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.achievement-strip h3 {
  font-size: clamp(24px, 2.5vw, 34px);
}

.achievement-strip p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.health-sync-section {
  background: #ffffff;
}

.health-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.health-badge {
  min-height: 148px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.health-badge-apple {
  display: flex;
  align-items: center;
  justify-content: center;
}

.health-badge-apple img {
  width: min(454px, 100%);
}

.health-badge-samsung {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.health-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.health-brand img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
}

.health-brand strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
}

.health-brand span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.health-connect-mark {
  width: 46px;
  height: 46px;
}

.health-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.health-points li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
}

.social-network-section {
  background: linear-gradient(180deg, #0c1322, #101827);
  color: #ffffff;
}

.social-network-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}

.social-copy h2,
.social-copy p:not(.eyebrow) {
  color: #ffffff;
}

.social-copy p:not(.eyebrow) {
  color: #b8c2d1;
}

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

.social-node {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.social-node span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.social-node h3 {
  color: #ffffff;
}

.social-node p {
  margin-bottom: 0;
  color: #c8d3e2;
}

.social-node-primary {
  background:
    radial-gradient(circle at top right, rgba(226, 56, 142, 0.22), transparent 35%),
    rgba(255, 255, 255, 0.06);
}

.social-node-accent {
  background:
    radial-gradient(circle at bottom left, rgba(19, 118, 248, 0.22), transparent 35%),
    rgba(255, 255, 255, 0.06);
}

.support-flow-section {
  background: var(--soft);
}

.support-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.support-flow::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, rgba(19, 118, 248, 0.12), rgba(19, 118, 248, 0.35), rgba(226, 56, 142, 0.18));
}

.support-step {
  position: relative;
  min-height: 250px;
  padding: 28px 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

.support-step:nth-child(2),
.support-step:nth-child(4) {
  transform: translateY(26px);
}

.support-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #eaf2ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
}

.support-step h3 {
  margin-bottom: 10px;
}

.support-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.app-visual {
  min-height: 300px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.coach-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.coach-pill strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: var(--blue);
  background: #eaf2ff;
}

.log-visual h4,
.equipment-visual h4,
.achievement-dark h4 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 21px;
}

.target {
  color: var(--ink);
  font-size: 32px;
  font-weight: 950;
  text-align: center;
}

.effort {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 21px;
  font-weight: 950;
  text-align: center;
}

.log-controls {
  display: grid;
  grid-template-columns: 38px 1fr 38px 38px 1fr 38px;
  gap: 8px;
  align-items: center;
  padding: 16px;
  border-radius: 8px;
  background: var(--soft);
}

.log-controls span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  margin: 0;
  border: 1px solid var(--ink);
  border-radius: 8px;
  color: var(--blue);
  background: #ffffff;
}

.log-controls b {
  text-align: center;
}

.log-button {
  margin-top: 18px;
  padding: 14px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--blue);
  font-weight: 950;
  text-align: center;
}

.readiness-header {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.readiness-header span {
  margin: 0;
  color: var(--muted);
}

.readiness-header strong {
  font-size: 22px;
}

.readiness-header em {
  justify-self: start;
  padding: 7px 12px;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  color: #f59e0b;
  font-style: normal;
  font-weight: 900;
}

.body-map {
  position: relative;
  min-height: 200px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 48%, #e4ebf3 48% 52%, transparent 52%),
    radial-gradient(circle at 34% 36%, #ef4444 0 7%, transparent 7.4%),
    radial-gradient(circle at 50% 48%, var(--green) 0 7%, transparent 7.4%),
    radial-gradient(circle at 67% 66%, #f59e0b 0 9%, transparent 9.4%),
    #f8fbfd;
}

.body-map i {
  position: absolute;
  display: block;
  border: 2px solid #e4ebf3;
  border-radius: 999px;
}

.body-map i:nth-child(1) {
  top: 28px;
  left: 50%;
  width: 42px;
  height: 42px;
  transform: translateX(-50%);
}

.body-map i:nth-child(2) {
  top: 76px;
  left: 50%;
  width: 86px;
  height: 96px;
  transform: translateX(-50%);
}

.equipment-row,
.achievement-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--soft);
  font-weight: 900;
}

.equipment-row.active {
  border-color: rgba(19, 118, 248, 0.45);
  background: #eaf2ff;
}

.equipment-row b {
  color: var(--blue);
  font-size: 12px;
  text-transform: uppercase;
}

.equipment-inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.equipment-inputs span {
  margin: 0;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
}

.achievements-visual {
  padding: 0;
  border: 0;
  background: transparent;
}

.achievement-dark {
  min-height: 300px;
  padding: 22px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--navy);
}

.achievement-dark span {
  margin-bottom: 12px;
  color: #b8c2d1;
}

.achievement-dark h4 {
  color: #ffffff;
}

.achievement-row {
  display: grid;
  color: #b8c2d1;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
}

.achievement-row b {
  color: #ffffff;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  max-width: 980px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.faq-grid summary {
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-grid p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.launch-section {
  display: grid;
  justify-items: center;
  padding: clamp(24px, 3vw, 40px) clamp(20px, 5vw, 72px);
  background: var(--soft);
  text-align: center;
}

.launch-section .eyebrow {
  margin-bottom: 6px;
}

.launch-section h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 2.4vw, 36px);
}

.store-badges {
  width: min(420px, calc(100vw - 40px));
  height: auto;
}

.notify-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: var(--paper);
}

.notify-copy {
  max-width: 520px;
}

.notify-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.notify-form label {
  display: block;
  margin-bottom: 9px;
  font-size: 13px;
  font-weight: 900;
}

.notify-form input {
  flex: 1 1 260px;
  min-height: 50px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
}

.notify-form button {
  flex: 0 0 auto;
  border: 0;
}

.notify-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.field-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-note[data-state="success"] {
  color: var(--green);
  font-weight: 800;
}

.form-note[data-state="error"] {
  color: #dc2626;
  font-weight: 800;
}

.form-note[data-state="pending"] {
  color: var(--blue);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  padding: 32px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 84px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(15, 23, 42, 0.14));
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.site-footer span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.legal-page {
  background: var(--soft);
}

.legal-shell {
  min-height: 100vh;
  padding: 118px clamp(20px, 5vw, 72px) 72px;
}

.legal-hero {
  max-width: 860px;
  margin-bottom: 30px;
}

.legal-hero h1 {
  color: var(--ink);
  font-size: clamp(34px, 4vw, 54px);
}

.legal-hero p {
  color: var(--muted);
  font-size: 18px;
}

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

.legal-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.legal-card h2 {
  margin-bottom: 16px;
  font-size: 28px;
}

.legal-card p {
  margin-bottom: 16px;
  color: var(--muted);
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card b {
  color: var(--ink);
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .nav-action {
    text-align: center;
  }

  .hero {
    min-height: 86vh;
    padding-top: 108px;
  }

  .hero-image {
    object-position: 60% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 11, 21, 0.92), rgba(6, 11, 21, 0.62)),
      linear-gradient(0deg, rgba(6, 11, 21, 0.42), rgba(6, 11, 21, 0.08));
  }

  .proof-band,
  .split-section,
  .coach-showcase,
  .app-preview,
  .notify-section,
  .legal-grid,
  .founder-section,
  .social-network-shell,
  .system-section,
  .score-section,
  .score-layout,
  .achievement-strip {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .mode-grid,
  .training-path-grid,
  .access-grid,
  .social-network-grid,
  .health-badges,
  .health-points,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .coach-showcase-board,
  .support-flow {
    grid-template-columns: 1fr;
  }

  .coach-progress-ribbon {
    grid-template-columns: 1fr;
  }

  .support-flow::before {
    display: none;
  }

  .support-step:nth-child(2),
  .support-step:nth-child(4) {
    transform: none;
  }

  .detail-grid,
  .detail-card {
    grid-template-columns: 1fr;
  }

  .score-card-grid {
    grid-template-columns: 1fr;
  }

  .app-preview {
    padding-top: 74px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 84vh;
    padding-bottom: 58px;
  }

  h1 {
    font-size: 40px;
  }

  h1 span + span {
    font-size: 30px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-copy,
  .section-copy p:not(.eyebrow),
  .notify-copy p,
  .legal-hero p {
    font-size: 16px;
  }

  .button,
  .notify-form button {
    width: 100%;
  }

  .hero-store-badges {
    width: 100%;
  }

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

  .progress-frame {
    transform: none;
  }

  .score-phone,
  .achievement-phone {
    margin-inline: auto;
  }

  .phone-frame {
    max-width: 330px;
    margin-inline: auto;
  }

  .legal-card {
    padding: 22px;
  }
}
