:root {
  --ink: #101313;
  --muted: #59615d;
  --paper: #fbfaf6;
  --line: #dde2dc;
  --green: #124734;
  --green-soft: #dbe8dd;
  --coral: #e4573d;
  --coral-dark: #b73425;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(16, 19, 19, 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;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--white);
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: rgba(16, 19, 19, 0.22);
  backdrop-filter: blur(10px);
}

.nav {
  gap: clamp(14px, 3vw, 30px);
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(16, 19, 19, 0.25);
  backdrop-filter: blur(16px);
  font-size: 0.92rem;
}

.nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(20px, 5vw, 72px) 68px;
  color: var(--white);
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 18, 16, 0.9), rgba(9, 18, 16, 0.42) 48%, rgba(9, 18, 16, 0.2)),
    linear-gradient(0deg, rgba(9, 18, 16, 0.72), rgba(9, 18, 16, 0) 56%);
}

.hero-content {
  position: relative;
  max-width: 740px;
}

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

.hero .eyebrow {
  color: #ffb09d;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 9vw, 7.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

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

h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.06rem, 2vw, 1.3rem);
}

.hero-copy-en {
  color: rgba(255, 255, 255, 0.74);
}

.hero-actions,
.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(228, 87, 61, 0.32);
}

.button-primary:hover {
  background: var(--coral-dark);
}

.button-secondary {
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.12);
}

.section {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 72px);
}

.split,
.section-heading,
.coach-panel,
.join {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.copy-block,
.section-heading > p,
.join p,
.coach-copy p,
.meaning-lines {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.copy-block p,
.coach-copy p {
  margin-bottom: 18px;
}

.coaching {
  background: var(--white);
}

.section-heading {
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.service {
  min-height: 190px;
  padding: 28px;
  background: var(--white);
}

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

.coach {
  background: var(--green);
  color: var(--white);
}

.coach-panel {
  align-items: center;
}

.coach-stat {
  display: grid;
  min-height: 320px;
  align-content: center;
  justify-items: start;
  padding: clamp(26px, 5vw, 52px);
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green);
  box-shadow: var(--shadow);
}

.coach-stat span {
  display: block;
  font-size: clamp(4.5rem, 13vw, 10rem);
  font-weight: 900;
  line-height: 0.86;
}

.coach-stat p {
  margin: 14px 0 0;
  font-weight: 800;
}

.coach .section-kicker {
  color: #ffb09d;
}

.coach-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.meaning {
  text-align: center;
}

.meaning h2,
.meaning-lines {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.meaning-lines {
  display: grid;
  gap: 8px;
}

.meaning-lines p {
  margin-bottom: 0;
}

.join {
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.join p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.74);
}

.join .button-secondary {
  color: var(--white);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer p {
  margin-bottom: 0;
  color: var(--white);
  font-weight: 800;
}

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

.footer-links a {
  text-decoration: none;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 720px;
    padding-top: 104px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(9, 18, 16, 0.86), rgba(9, 18, 16, 0.18) 70%),
      linear-gradient(90deg, rgba(9, 18, 16, 0.68), rgba(9, 18, 16, 0.2));
  }

  .split,
  .section-heading,
  .coach-panel,
  .join {
    grid-template-columns: 1fr;
  }

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

  .service {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 680px;
  }

  .button {
    width: 100%;
  }
}
