:root {
  --ink: #101216;
  --muted: #59616f;
  --paper: #fbfaf5;
  --panel: #ffffff;
  --gold: #f5b82e;
  --orange: #e86d23;
  --green: #0f8b63;
  --line: rgba(16, 18, 22, 0.14);
  --shadow: 0 22px 60px rgba(16, 18, 22, 0.13);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 245, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 184px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand strong,
.footer-brand strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: 0;
}

.brand span,
.footer-brand span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-links a,
.footer-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--radius);
  color: #22262d;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.footer-links a:hover {
  background: rgba(245, 184, 46, 0.22);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  box-shadow: 5px 5px 0 var(--gold);
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--gold);
}

.button.secondary {
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.button.small {
  min-height: 40px;
  padding: 0 14px;
  box-shadow: 4px 4px 0 var(--gold);
  white-space: nowrap;
}

.hero {
  min-height: min(560px, calc(100svh - 148px));
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(16, 18, 22, 0.93), rgba(16, 18, 22, 0.78) 45%, rgba(16, 18, 22, 0.24)),
    radial-gradient(circle at 77% 48%, rgba(245, 184, 46, 0.9) 0 2px, transparent 3px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.16) 0 2px, transparent 2px 80px),
    linear-gradient(135deg, #20242d, #674012 46%, #d56d24);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -8vw -32vh auto;
  width: min(54vw, 620px);
  aspect-ratio: 1;
  border: 16px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  box-shadow: inset 0 0 0 34px rgba(16, 18, 22, 0.17), inset 0 0 0 98px rgba(245, 184, 46, 0.16);
}

.hero-inner,
.section-inner,
.page-hero-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero-copy {
  width: min(720px, 100%);
  padding: 42px 0 48px;
  color: #fff;
  position: relative;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 6vw, 5.1rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.section-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-badges span,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.84rem;
  font-weight: 900;
}

.section {
  padding: 82px 0;
}

.section.alt {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.section-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.grade-card,
.feature-card,
.info-card,
.coach-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(16, 18, 22, 0.08);
}

.grade-card {
  min-height: 292px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.grade-card h3,
.feature-card h3,
.info-card h3,
.coach-card h2 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.grade-card p,
.feature-card p,
.info-card p,
.coach-card p,
.mission-list li {
  color: var(--muted);
}

.grade-card .button {
  margin-top: auto;
  align-self: flex-start;
}

.feature-card {
  padding: 22px;
}

.feature-card .number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-weight: 950;
}

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

.video-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 18, 22, 0.08);
}

.video-card.featured {
  grid-column: span 2;
}

.video-placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(16,18,22,0.9), rgba(16,18,22,0.66)),
    repeating-linear-gradient(45deg, rgba(245,184,46,0.2) 0 2px, transparent 2px 20px),
    linear-gradient(135deg, #1f232b, #d46e23);
  color: #fff;
}

.training-video {
  width: 100%;
  max-height: 680px;
  border-radius: var(--radius);
  background: #000;
  object-fit: cover;
}

.video-placeholder span {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 3px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  background: rgba(16,18,22,0.72);
  font-weight: 950;
  text-align: center;
}

.video-card h3 {
  margin-bottom: 8px;
}

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

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.stat {
  padding: 22px;
  border-top: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.72);
}

.stat strong {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-weight: 800;
}

.page-hero {
  padding: 74px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 18, 22, 0.95), rgba(16, 18, 22, 0.78)),
    repeating-linear-gradient(135deg, rgba(245, 184, 46, 0.18) 0 2px, transparent 2px 26px),
    linear-gradient(135deg, #151922, #8a4e13 58%, #f5b82e);
}

.page-hero h1 {
  max-width: 880px;
}

.page-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: start;
}

.coach-card {
  overflow: hidden;
}

.coach-portrait {
  min-height: 280px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(245, 184, 46, 0.95), rgba(232, 109, 35, 0.9) 48%, rgba(16, 18, 22, 0.95) 49%),
    #11151c;
}

.coach-portrait img {
  width: min(72%, 300px);
  filter: drop-shadow(0 18px 22px rgba(0,0,0,0.34));
}

.coach-card-content {
  padding: 26px;
}

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

.mission-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mission-list li {
  padding: 18px 18px 18px 54px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.mission-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 21px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px #fff, 0 0 0 2px var(--green);
}

.vertimax-section {
  background:
    linear-gradient(90deg, rgba(16,18,22,0.96), rgba(16,18,22,0.86)),
    repeating-linear-gradient(135deg, rgba(245,184,46,0.16) 0 2px, transparent 2px 28px);
  color: #fff;
}

.vertimax-section p {
  color: rgba(255,255,255,0.78);
}

.vertimax-section h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
}

.vertimax-panel {
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
}

.training-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.training-list li {
  padding-left: 22px;
  position: relative;
  color: rgba(255,255,255,0.8);
}

.training-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.training-list strong {
  color: #fff;
}

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

.price-card {
  padding: 28px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 8px 8px 0 var(--gold);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 10px 0 20px;
}

.price strong {
  font-size: 4rem;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-weight: 900;
}

.line-items {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.line-items li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-weight: 850;
}

.register-panel {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.register-panel p {
  color: rgba(255,255,255,0.78);
}

.form-status {
  min-height: 24px;
  margin: 18px 0 0;
  color: #fff;
  font-weight: 800;
}

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

.field.full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 7px;
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 10px 12px;
  font: inherit;
}

textarea {
  min-height: 106px;
  resize: vertical;
}

option {
  color: var(--ink);
}

.hidden-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
}

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

.info-card {
  padding: 24px;
}

.info-card a {
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.next-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.next-steps article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.next-steps strong {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--gold);
}

.next-steps h3 {
  margin-bottom: 8px;
}

.next-steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  padding: 34px 0;
  background: var(--ink);
  color: #fff;
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

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

.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.footer-brand span,
.site-footer p {
  color: rgba(255,255,255,0.68);
}

.footer-brand strong {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.footer-links a {
  color: #fff;
}

.fine-print {
  width: min(var(--max), calc(100% - 32px));
  margin: 20px auto 0;
  color: rgba(255,255,255,0.58);
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    padding: 14px 0;
    flex-direction: column;
  }

  .brand {
    min-width: 0;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .grade-grid,
  .feature-grid,
  .contact-grid,
  .video-grid,
  .next-steps,
  .stats,
  .pricing,
  .two-column {
    grid-template-columns: 1fr;
  }

  .video-card.featured {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .nav-links a {
    padding: 0 9px;
    font-size: 0.86rem;
  }

  .hero-copy {
    padding: 48px 0 58px;
  }

  .section {
    padding: 58px 0;
  }

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

  .price strong {
    font-size: 3rem;
  }
}
