:root {
  --ink: #050505;
  --charcoal: #101112;
  --graphite: #18191b;
  --panel: #202124;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(230, 194, 118, 0.34);
  --text: #f5f1e8;
  --muted: #b7b0a4;
  --subtle: #837d72;
  --gold: #e3b65d;
  --gold-bright: #ffd37b;
  --silver: #c9c9c4;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --max-width: 1160px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.section-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(227, 182, 93, 0.09), transparent 32%),
    linear-gradient(135deg, #0a0a0a 0%, #111214 54%, #080808 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 14px clamp(20px, 4vw, 44px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 6, 6, 0.82);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-lockup img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(227, 182, 93, 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(227, 182, 93, 0.62);
  border-radius: 4px;
  color: #15110a;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 16px 34px rgba(227, 182, 93, 0.16);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nav-cta {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.86rem;
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  color: #080705;
  border-color: var(--gold-bright);
  box-shadow: 0 18px 42px rgba(227, 182, 93, 0.24);
  transform: translateY(-2px);
}

.button-secondary {
  margin-top: 22px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--text);
}

.button-disabled,
.button-disabled:hover,
.button-disabled:focus-visible {
  cursor: not-allowed;
  transform: none;
  color: var(--muted);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  min-height: calc(100svh - var(--header-height));
  padding: clamp(58px, 8vw, 98px) 0 clamp(54px, 7vw, 86px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.18) 48%, rgba(5, 5, 5, 0.6)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 110px);
  opacity: 0.75;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1,
h2,
h3 {
  line-height: 1.02;
}

h1 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 8vw, 7.7rem);
  font-weight: 500;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 18px;
  color: var(--silver);
  font-size: clamp(1.45rem, 3vw, 2.42rem);
  line-height: 1.15;
}

.hero-text {
  max-width: 600px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 20px;
}

.hero-actions .button-secondary {
  margin-top: 0;
}

.hero-actions span {
  max-width: 260px;
  color: var(--subtle);
  font-size: 0.93rem;
}

.program-snapshot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.program-snapshot span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--silver);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-mark {
  justify-self: end;
  width: min(100%, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(227, 182, 93, 0.22);
  border-radius: 8px;
  background: #050505;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-mark {
  aspect-ratio: 4 / 5;
  background: #090909;
}

.portrait-mark img {
  object-position: center top;
}

.problem-section,
.process-section,
.coaching-section,
.curriculum-section,
.tracker-section,
.story-section,
.contact-section {
  padding: clamp(74px, 9vw, 124px) 0;
}

.problem-layout,
.split-section,
.for-you-layout,
.offer-layout,
.experience-layout,
.tracker-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

h2 {
  margin-bottom: 22px;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4.7vw, 4.55rem);
  font-weight: 500;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.problem-copy,
.elevated-copy,
.story-section p,
.offer-section p,
.contact-copy p,
.section-heading p,
.experience-section p,
.tracker-section p {
  color: var(--muted);
  font-size: 1.04rem;
}

.problem-copy p,
.elevated-copy p,
.story-section p,
.offer-section p,
.contact-copy p,
.experience-section p,
.tracker-section p {
  margin-bottom: 18px;
}

.statement {
  padding: 24px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.22;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.coach-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  margin-bottom: 38px;
}

.coach-feature .section-heading {
  margin-bottom: 0;
}

.coach-portrait {
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #090909;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.coach-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.coach-portrait figcaption {
  padding: 16px 18px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.process-section {
  background:
    linear-gradient(180deg, #070707, #111214 48%, #080808),
    var(--ink);
}

.process-intro {
  max-width: 790px;
  margin-bottom: 42px;
}

.process-intro p {
  color: var(--muted);
  font-size: 1.04rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.process-step {
  position: relative;
  min-height: 292px;
  padding: 28px;
}

.process-step + .process-step {
  border-left: 1px solid var(--line);
}

.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  right: 28px;
  left: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 201, 196, 0.42));
}

.step-number {
  display: inline-flex;
  margin-bottom: 58px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
}

.process-step h3 {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.72rem;
  font-weight: 500;
}

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

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

.benefit-card {
  min-height: 246px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
}

.benefit-card:nth-child(2n) {
  border-color: rgba(201, 201, 196, 0.18);
}

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

.card-index {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
}

.curriculum-section {
  background:
    linear-gradient(180deg, #080808, #101112 48%, #070707),
    var(--ink);
}

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

.module-card {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
}

.module-card:nth-child(4n + 1),
.module-card:nth-child(4n + 4) {
  border-color: rgba(227, 182, 93, 0.24);
}

.module-week {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 28px;
  border: 1px solid rgba(227, 182, 93, 0.38);
  border-radius: 4px;
  padding: 5px 9px;
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.module-card h3 {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.48rem;
  font-weight: 500;
}

.module-card p {
  color: var(--muted);
}

.module-card dl {
  display: grid;
  gap: 16px;
  margin: auto 0 0;
}

.module-card dt {
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.module-card dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.52;
}

.experience-section {
  padding: clamp(78px, 10vw, 132px) 0;
}

.experience-layout {
  align-items: stretch;
}

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

.experience-item {
  min-height: 238px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.experience-item h3 {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.experience-item p {
  margin-bottom: 0;
}

.tracker-section {
  background:
    linear-gradient(180deg, #070707, #111214 52%, #080808),
    var(--ink);
}

.tracker-layout {
  align-items: stretch;
}

.tracker-panel,
.tracker-list {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.tracker-panel {
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(227, 182, 93, 0.08), rgba(255, 255, 255, 0.035)),
    var(--graphite);
}

.tracker-panel h2 {
  font-size: clamp(2rem, 3.8vw, 3.65rem);
}

.tracker-list h3 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 500;
}

.for-you {
  padding: clamp(72px, 9vw, 118px) 0;
}

.check-list,
.receive-panel ul,
.tracker-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.check-list li,
.receive-panel li,
.tracker-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before,
.receive-panel li::before,
.tracker-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.story-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.story-emblem {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #050505;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story-emblem img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.offer-section {
  padding: clamp(78px, 10vw, 132px) 0;
}

.receive-panel {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(227, 182, 93, 0.08), rgba(255, 255, 255, 0.035)),
    var(--graphite);
}

.receive-panel h3 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 500;
}

.receive-panel li + li {
  margin-top: 12px;
}

.tracker-list li + li {
  margin-top: 14px;
}

.contact-section {
  background:
    linear-gradient(180deg, #080808, #111213 46%, #060606),
    var(--ink);
}

.contact-layout {
  align-items: stretch;
}

.availability {
  display: inline-flex;
  margin-top: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(227, 182, 93, 0.34);
  border-radius: 4px;
  color: var(--gold-bright);
  font-size: 0.92rem;
  font-weight: 700;
}

.application-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.coming-soon-panel {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 100%;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(227, 182, 93, 0.1), rgba(255, 255, 255, 0.035)),
    var(--graphite);
  box-shadow: var(--shadow);
}

.coming-soon-panel h3 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  font-weight: 500;
}

.coming-soon-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.coming-soon-panel .button {
  justify-self: start;
}

.form-row {
  display: grid;
  gap: 8px;
}

label {
  color: var(--silver);
  font-size: 0.87rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  padding: 13px 14px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  outline: none;
  resize: vertical;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(227, 182, 93, 0.14);
}

.form-status {
  min-height: 24px;
  margin: -4px 0 0;
  color: var(--gold-bright);
  font-size: 0.92rem;
}

.form-status.is-error {
  color: #ffb6a8;
}

.form-button {
  width: 100%;
  cursor: pointer;
}

.form-footnote {
  margin: 0;
  color: var(--subtle);
  font-size: 0.86rem;
  text-align: center;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
  color: var(--subtle);
  font-size: 0.9rem;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-layout span {
  color: var(--silver);
  font-weight: 800;
}

.footer-layout a:hover,
.footer-layout a:focus-visible {
  color: var(--text);
}

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

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 18px;
    left: 18px;
    display: grid;
    gap: 6px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(10, 10, 10, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-cta {
    margin-top: 6px;
  }

  .hero-grid,
  .problem-layout,
  .split-section,
  .for-you-layout,
  .offer-layout,
  .experience-layout,
  .tracker-layout,
  .contact-layout,
  .story-layout {
    grid-template-columns: 1fr;
  }

  .hero-mark {
    justify-self: start;
    width: min(100%, 430px);
  }

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

  .coach-portrait {
    max-width: 380px;
  }

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

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

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

  .process-step + .process-step {
    border-left: 0;
  }

  .process-step:nth-child(2n) {
    border-left: 1px solid var(--line);
  }

  .process-step:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .story-emblem {
    max-width: 320px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 76px;
  }

  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand-lockup span {
    max-width: 132px;
    line-height: 1.12;
  }

  .brand-lockup img {
    width: 48px;
    height: 48px;
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(3.1rem, 17vw, 4.9rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.1rem);
  }

  .hero-lede {
    font-size: 1.45rem;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions span {
    max-width: none;
  }

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

  .curriculum-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

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

  .process-step {
    min-height: 0;
    padding: 24px;
  }

  .process-step + .process-step,
  .process-step:nth-child(2n) {
    border-left: 0;
  }

  .process-step:nth-child(n + 2) {
    border-top: 1px solid var(--line);
  }

  .step-number {
    margin-bottom: 32px;
  }

  .benefit-card {
    min-height: 0;
  }

  .module-card,
  .experience-item {
    min-height: 0;
  }

  .application-form {
    padding: 22px;
  }

  .coming-soon-panel .button {
    justify-self: stretch;
  }

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