:root {
  --black: #020304;
  --ink: #0a0f18;
  --graphite: #141e28;
  --muted: #66788a;
  --paper: #f5f8fb;
  --panel: #ffffff;
  --line: #d8e6f2;
  --track: #0a78f0;
  --track-dark: #0064d8;
  --blue: #14a0f0;
  --blue-light: #7fd8ff;
  --silver: #eef4f8;
  --gold: #25d4f2;
  --shadow: 0 18px 55px rgba(2, 3, 4, 0.16);
}

* {
  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;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 84px;
  padding: 10px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(20, 160, 240, 0.34);
  background: rgba(2, 3, 4, 0.95);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 220px;
}

.brand-logo {
  width: clamp(220px, 24vw, 335px);
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.nav a,
.header-action {
  transition: color 160ms ease;
}

.nav a:hover,
.header-action:hover {
  color: var(--blue-light);
}

.header-action {
  color: white;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 84px);
  padding: clamp(44px, 7vw, 96px) clamp(18px, 4vw, 56px) clamp(24px, 5vw, 60px);
  background:
    radial-gradient(circle at 72% 28%, rgba(20, 160, 240, 0.18), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--track-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1;
  letter-spacing: 0;
}

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

.lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: #3d5063;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 6px;
  padding: 0 20px;
  font-weight: 850;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(16, 24, 32, 0.12);
}

.button.primary {
  color: white;
  border-color: var(--track);
  background: linear-gradient(135deg, var(--track), var(--blue));
}

.button.secondary {
  color: var(--track-dark);
  border-color: rgba(10, 120, 240, 0.42);
  background: transparent;
}

.hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at 74% 24%, rgba(37, 212, 242, 0.18), transparent 26%),
    radial-gradient(circle at 20% 78%, rgba(10, 120, 240, 0.24), transparent 30%),
    linear-gradient(145deg, #030508, #0a0f18 52%, #07182a);
}

.brand-band {
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 58px) clamp(18px, 4vw, 56px);
  background: var(--black);
}

.brand-band img {
  width: min(360px, 78vw);
  height: auto;
}

.hero-media img,
.hero-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-hero {
  display: grid;
  place-items: center;
}

.hero-collage {
  aspect-ratio: 4 / 5;
  width: min(100%, 430px);
  min-height: 0;
  justify-self: center;
}

.hero-collage img,
.hero-collage video {
  object-position: center;
}

.intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 4vw, 56px) clamp(48px, 7vw, 92px);
  border: 1px solid var(--line);
  background: var(--line);
}

.intro div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
}

.intro strong,
.intro span {
  display: block;
}

.intro strong {
  font-size: 1.35rem;
}

.intro span,
.section p,
.service-grid p,
.method-grid p,
.coach-panel p,
.site-footer,
.contact p {
  color: var(--muted);
}

.section {
  padding: clamp(52px, 8vw, 108px) clamp(18px, 4vw, 56px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
  background: #e9f3fb;
}

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

.coach-panel,
.service-grid,
.method-grid {
  display: grid;
  gap: 16px;
}

.coach-panel {
  grid-template-columns: 0.85fr repeat(2, 1fr);
}

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

.method-grid {
  grid-template-columns: repeat(4, 1fr);
}

.coach-panel article,
.service-grid article,
.method-grid article,
.monogram-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.monogram-card {
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  background: var(--black);
}

.monogram-card img {
  width: 100%;
  max-width: 360px;
  height: auto;
}

.coach-panel span,
.method-grid span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--track);
  font-weight: 900;
}

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

.services {
  background: var(--paper);
}

.method {
  background:
    radial-gradient(circle at 82% 12%, rgba(20, 160, 240, 0.24), transparent 30%),
    var(--black);
  color: white;
}

.method .eyebrow {
  color: var(--blue-light);
}

.method p {
  color: rgba(255, 255, 255, 0.72);
}

.method-grid article {
  border-color: rgba(127, 216, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.method-grid span {
  color: var(--blue-light);
}

.contact {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(42px, 7vw, 82px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(135deg, rgba(10, 120, 240, 0.16), rgba(127, 216, 255, 0.24)),
    #eef8ff;
}

.contact div:first-child {
  max-width: 720px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.site-footer img {
  width: min(260px, 58vw);
  height: auto;
}

@media (max-width: 1040px) {
  .service-grid,
  .method-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    max-height: none;
  }

  .hero-collage {
    width: min(100%, 420px);
    min-height: 0;
  }

  .intro,
  .coach-panel,
  .service-grid,
  .method-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .site-header {
    min-height: 76px;
  }

  .header-action {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: 2.85rem;
  }

  .button {
    width: 100%;
  }

  .hero-collage {
    width: min(100%, 340px);
    min-height: 0;
  }

  .intro div,
  .coach-panel article,
  .service-grid article,
  .method-grid article {
    padding: 20px;
  }

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