:root {
  --bg: oklch(98.5% 0.003 240);
  --surface: oklch(100% 0 0);
  --fg: oklch(26.1% 0.069 256.5);
  --muted: oklch(49% 0.003 286.3);
  --border: oklch(88% 0.006 248);
  --accent: oklch(64.9% 0.125 231.8);
  --accent-dark: oklch(45% 0.13 236);
  --gold: oklch(70.6% 0.121 79.8);
  --gold-dark: oklch(48% 0.105 74);
  --steel: oklch(55.4% 0.004 247.9);
  --success: oklch(61% 0.12 153);
  --warn: oklch(70.6% 0.121 79.8);
  --danger: oklch(55% 0.16 25);
  --shadow: 0 22px 60px rgba(11, 36, 69, 0.12);
  --font-display: "Aptos Display", "Montserrat", "Segoe UI", system-ui, sans-serif;
  --font-body: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  background:
    linear-gradient(90deg, rgba(11, 36, 69, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(11, 36, 69, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: 64px 64px;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(250, 251, 252, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  transition: transform 220ms ease;
  will-change: transform;
}

.topbar.is-hidden {
  transform: translateY(-100%);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  gap: 1px;
  padding-left: 2px;
}

.brand-copy strong {
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.brand-copy > span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  padding: 0 13px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 560;
  letter-spacing: 0.02em;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--fg);
  background: rgba(31, 155, 205, 0.08);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(31, 155, 205, 0.42);
  outline-offset: 3px;
}

.nav-cta,
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 680;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-cta,
.btn-primary {
  color: white;
  background: var(--accent-dark);
  box-shadow: 0 14px 32px rgba(31, 155, 205, 0.24);
}

.nav-links .nav-cta-home,
.nav-links .nav-cta-home:hover {
  color: white;
  background: var(--accent-dark);
}

.btn-secondary {
  color: var(--fg);
  background: var(--surface);
  border-color: var(--border);
}

.btn-gold {
  color: var(--fg);
  background: var(--gold);
  border-color: color-mix(in oklch, var(--gold), black 8%);
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 4px;
  color: var(--fg);
}

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

.back-to-top {
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  z-index: 40;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in oklch, var(--accent-dark), var(--border) 42%);
  border-radius: 50%;
  background: var(--accent-dark);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(11, 36, 69, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--fg);
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none;
  }
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: url("ChatGPT-Image-Jul-23_-2026-at-08_55_01-AM.png") right center / auto 100% no-repeat, var(--bg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.76) 39%, rgba(255, 255, 255, 0.08) 68%, rgba(255, 255, 255, 0) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 690px;
  display: flex;
  align-items: center;
  padding: 68px 0 48px;
}

.hero-copy {
  width: min(56%, 670px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--fg);
  text-wrap: pretty;
}

h1 {
  max-width: 12ch;
  margin-top: 18px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 760;
}

h1 .gold,
h2 .gold {
  color: var(--gold-dark);
}

.hero-typewriter {
  display: inline-block;
  min-width: 15ch;
  white-space: nowrap;
}

.hero-typewriter-text {
  display: inline-block;
  padding-right: 0.04em;
  border-right: 0.06em solid currentColor;
  white-space: nowrap;
}

h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.lead {
  max-width: 61ch;
  margin: 24px 0 0;
  color: color-mix(in oklch, var(--fg), white 24%);
  font-size: clamp(17px, 2vw, 20px);
}

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

.hero-visual {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.02);
}

.visual-label {
  position: absolute;
  left: 22px;
  bottom: 22px;
  width: min(360px, calc(100% - 44px));
  padding: 18px;
  color: white;
  background: rgba(11, 36, 69, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.visual-label strong {
  display: block;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-label span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.flow-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.flow-item {
  padding: 18px;
  border-right: 1px solid var(--border);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.flow-item:last-child {
  border-right: 0;
}

.proof-strip {
  padding: 34px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  background: var(--border);
}

.proof-card {
  min-height: 128px;
  padding: 24px;
  background: var(--surface);
}

.proof-card b {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.proof-card span {
  display: block;
  max-width: 20ch;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 86px 0;
}

.section-tight {
  padding: 58px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(260px, 0.52fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 36px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px;
}

.card p,
.offer-card p,
.split-panel p {
  color: var(--muted);
}

.challenge-card {
  min-height: 560px;
  display: grid;
  align-content: space-between;
  gap: 22px;
}

.challenge-carousel {
  overflow: hidden;
  padding: 14px;
  margin: -14px;
}

.challenge-track {
  display: flex;
  gap: 24px;
  will-change: transform;
}

.challenge-carousel .challenge-card {
  flex: 0 0 calc((100% - 48px) / 3);
}

.challenge-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.challenge-carousel-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--fg);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.challenge-carousel-button:hover,
.challenge-carousel-button:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  outline: none;
}

.challenge-carousel-button:active {
  transform: translateY(1px);
}

.challenge-carousel-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.founder-friction {
  background: transparent;
}

.founder-friction-head {
  max-width: 920px;
  margin: 0 auto 42px;
  text-align: center;
}

.founder-friction-head h2 {
  max-width: 820px;
  margin: 10px auto 16px;
}

.founder-friction-head p {
  max-width: 690px;
  margin: 0 auto;
  color: var(--muted);
}

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

.friction-card {
  min-width: 0;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border-color: color-mix(in srgb, var(--accent) 18%, var(--border));
}

.friction-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  flex: 0 0 auto;
  object-fit: cover;
  border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--border));
}

.friction-card h3 {
  margin: 20px 0 8px;
}

.friction-card p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.growth-path {
  background: transparent;
}

.growth-path-head {
  margin: 0 0 42px;
  text-align: left;
}

.growth-path-head h2 {
  margin: 10px 0 14px;
}

.growth-path-head p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
}

.growth-path-steps-title {
  margin: 0 0 34px;
  font-size: clamp(22px, 2.1vw, 30px);
}

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

.growth-step {
  min-width: 0;
  min-height: 244px;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 30px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.growth-step-number {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  background: #eef9fb;
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.growth-step h3 {
  margin: 4px 0 10px;
}

.growth-step p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.line-icon {
  width: 42px;
  height: 42px;
  color: var(--accent-dark);
}

.line-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bot-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  background: var(--surface);
}

.bot-cell {
  min-height: 250px;
  padding: 34px;
  border-right: 1px solid var(--border);
}

.bot-cell:last-child {
  border-right: 0;
}

.bot-letter {
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-size: 76px;
  font-weight: 760;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.split {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: stretch;
}

.portrait-panel,
.image-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.portrait-panel img,
.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.portrait-panel img {
  object-position: center 18%;
}

.image-panel img {
  object-position: center;
}

.split-panel {
  padding: 46px;
  border: 1px solid var(--border);
  background: var(--surface);
}

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

.check-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: color-mix(in oklch, var(--fg), white 12%);
}

.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.testimonial {
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0.68;
  transform: scale(0.92);
  transform-origin: center;
  transition: transform 480ms ease, opacity 480ms ease, box-shadow 480ms ease;
}

.testimonial-carousel {
  overflow: hidden;
  padding: 22px 14px;
  margin: 0 -14px;
}

.testimonial-track {
  display: flex;
  gap: 18px;
  will-change: transform;
}

.testimonial.is-featured {
  opacity: 1;
  transform: scale(1.06);
  box-shadow: 0 18px 42px rgba(11, 36, 69, 0.14);
  z-index: 1;
}

.quote-mark {
  color: var(--gold-dark);
  font-family: Georgia, serif;
  font-size: 54px;
  line-height: 1;
}

.signature {
  margin-top: 18px;
  color: var(--fg);
  font-weight: 720;
}

.home-insights {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.blog-carousel {
  overflow: hidden;
  padding: 14px;
  margin: -14px;
}

.blog-track {
  display: flex;
  gap: 24px;
  will-change: transform;
}

.blog-carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

.blog-carousel-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--fg);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.blog-carousel-button:hover,
.blog-carousel-button:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  outline: none;
}

.blog-carousel-button:active {
  transform: translateY(1px);
}

.blog-carousel-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.blog-carousel .blog-card {
  flex: 0 0 calc((100% - 48px) / 3);
}

.blog-card {
  min-width: 0;
  padding: 0;
  overflow: hidden;
}

.blog-card[data-blog-open] {
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.blog-card[data-blog-open]:hover,
.blog-card[data-blog-open]:focus-visible {
  border-color: color-mix(in srgb, var(--accent) 46%, var(--border));
  box-shadow: 0 14px 30px rgba(18, 45, 82, 0.12);
  outline: none;
  transform: translateY(-4px);
}

.blog-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-card-copy {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.blog-card-copy > span {
  color: var(--accent-dark);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.blog-card h3 {
  font-size: 21px;
  line-height: 1.15;
}

.blog-card p {
  margin: 0;
}

.blog-dialog {
  width: min(920px, calc(100% - 28px));
  max-height: min(780px, calc(100vh - 28px));
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--fg);
}

.blog-dialog::backdrop {
  background: rgba(7, 24, 50, 0.72);
}

.blog-dialog-card {
  position: relative;
}

.blog-dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(7, 24, 50, 0.78);
  color: white;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.blog-dialog-hero {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) 1.1fr;
  min-height: 280px;
  background: var(--fg);
  color: white;
}

.blog-dialog-hero img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.blog-dialog-hero > div {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 46px;
}

.blog-dialog-hero .eyebrow {
  color: var(--gold);
}

.blog-dialog-hero h2 {
  color: white;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 0.98;
}

.blog-dialog-hero p {
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.blog-dialog-body {
  display: grid;
  gap: 18px;
  padding: 42px 46px 50px;
}

.blog-dialog-body p {
  max-width: 68ch;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.blog-dialog-body h3 {
  margin-top: 8px;
  color: var(--fg);
  font-size: 22px;
}

.blog-dialog-body ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--fg);
}

body.blog-dialog-open {
  overflow: hidden;
}

.cta-band {
  background: var(--fg);
  color: white;
}

.disc-assessment {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.disc-assessment-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 40px;
  padding: 48px 52px;
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--border));
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 90%, var(--accent) 10%);
}

.disc-assessment-panel h2 {
  margin: 10px 0 10px;
  font-size: clamp(30px, 3vw, 42px);
}

.disc-assessment-panel p {
  max-width: 62ch;
  margin: 0 0 12px;
  color: var(--muted);
}

.disc-traits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  max-width: 760px;
  margin-top: 24px;
}

.disc-traits div {
  display: grid;
  gap: 3px;
}

.disc-traits strong {
  color: var(--fg);
  font-size: 15px;
}

.disc-traits span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.disc-assessment-panel .btn {
  white-space: nowrap;
  align-self: center;
}

.disc-assessment-visual {
  transform: translateX(24px);
}

.cta-band .section-head h2,
.cta-band .section-head p {
  color: white;
}

.cta-band .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero {
  padding: 82px 0 58px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at top right, rgba(31, 155, 205, 0.14), transparent 34%),
    var(--surface);
}

.page-hero h1 {
  max-width: 14ch;
}

.course-card {
  display: grid;
  min-height: 360px;
  align-content: space-between;
  gap: 24px;
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  gap: 1px;
  border: 1px solid var(--border);
  background: var(--border);
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 24px;
  background: var(--surface);
}

.timeline-item time {
  color: var(--gold-dark);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter-btn {
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0 15px;
  color: var(--muted);
  background: var(--surface);
  cursor: pointer;
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.filter-btn[aria-pressed="true"] {
  color: white;
  background: var(--fg);
  border-color: var(--fg);
}

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

.gallery-item {
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-item img { object-position: center; }

.gallery-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--surface) 78%, var(--border));
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-caption {
  padding: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.cal-booking {
  display: grid;
  align-content: start;
  gap: 14px;
}

.cal-booking h2 { max-width: 18ch; }
.cal-booking p { max-width: 58ch; }

.cal-inline {
  width: 100%;
  min-height: 680px;
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--fg);
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--fg);
  background: white;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(31, 155, 205, 0.16);
  border-color: var(--accent-dark);
}

.form-status {
  min-height: 24px;
  color: var(--accent-dark);
  font-weight: 650;
}

.footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.7);
  background: var(--fg);
}

.guarantee-band {
  padding: 92px 0 54px;
  color: white;
  background: var(--fg);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: 72px;
  align-items: center;
}

.guarantee-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guarantee-kicker::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 2px;
  margin: 0 12px 3px 0;
  background: var(--gold);
}

.guarantee-band h2 {
  max-width: 660px;
  margin: 0;
  color: white;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.guarantee-action {
  display: grid;
  justify-items: start;
  gap: 26px;
}

.guarantee-action p {
  max-width: 46ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.guarantee-cta {
  color: var(--fg);
  background: var(--gold);
  box-shadow: none;
}

.guarantee-cta:hover,
.guarantee-cta:focus-visible {
  color: var(--fg);
  background: color-mix(in oklab, var(--gold) 88%, white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}

.footer a {
  color: white;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 20px 20px;
    background: rgba(250, 251, 252, 0.98);
    border-bottom: 1px solid var(--border);
  }

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

  .nav-links a,
  .nav-links .nav-cta {
    width: 100%;
    justify-content: flex-start;
  }

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

  .hero-grid {
    min-height: 0;
    gap: 28px;
    padding: 52px 0 40px;
  }

  .hero-visual,
  .hero-visual img,
  .portrait-panel,
  .portrait-panel img,
  .image-panel,
  .image-panel img {
    min-height: 420px;
  }

  .proof-grid,
  .grid-4,
  .grid-3,
  .friction-grid,
  .growth-step-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bot-row {
    grid-template-columns: 1fr;
  }

  .bot-cell {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .bot-cell:last-child {
    border-bottom: 0;
  }

  .testimonial {
    flex-basis: calc((100% - 18px) / 2);
  }

  .challenge-carousel .challenge-card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .blog-carousel .blog-card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .section {
    padding: 72px 0;
  }

  .guarantee-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-head {
    gap: 18px;
    margin-bottom: 28px;
  }

  .split-panel {
    padding: 36px;
  }

  .page-hero {
    padding: 66px 0 48px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 18px;
    letter-spacing: 0.09em;
  }

  .brand-copy > span {
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  h1 {
    max-width: 100%;
    margin-top: 14px;
    font-size: clamp(36px, 11vw, 56px);
    line-height: 1;
  }

  h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .hero h1 .hero-typewriter {
    min-width: 15ch;
    white-space: nowrap;
  }

  .flow-strip,
  .grid-4,
  .grid-3,
  .grid-2,
  .friction-grid,
  .growth-step-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .flow-item {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .flow-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 62px 0;
  }

  .section-tight {
    padding: 46px 0;
  }

  .page-hero {
    padding: 52px 0 40px;
  }

  .hero-grid {
    gap: 24px;
    padding: 42px 0 32px;
  }

  .hero-visual,
  .hero-visual img,
  .portrait-panel,
  .portrait-panel img,
  .image-panel,
  .image-panel img {
    min-height: 330px;
  }

  .visual-label {
    left: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 14px;
  }

  .visual-label span {
    font-size: 13px;
  }

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

  .proof-card {
    min-height: 116px;
    padding: 18px;
  }

  .proof-card span {
    font-size: 11px;
  }

  .card {
    padding: 20px;
  }

  .testimonial {
    flex-basis: 100%;
    min-height: 214px;
  }

  .challenge-carousel .challenge-card {
    flex-basis: 100%;
  }

  .blog-carousel .blog-card {
    flex-basis: 100%;
  }

  .split-panel {
    padding: 28px;
  }

  .guarantee-band {
    padding: 68px 0 40px;
  }

  .disc-assessment-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px;
  }

  .disc-traits {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .disc-assessment-panel .btn {
    width: 100%;
  }

  .disc-assessment-visual {
    justify-self: center;
    transform: none;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
  }

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

@media (max-width: 420px) {
  .hero-typewriter {
    font-size: 0.86em;
  }

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

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

  .hero-grid {
    min-height: 620px;
  }

  .hero-copy {
    width: min(68%, 620px);
  }
}

@media (max-width: 640px) {
  .hero,
  .hero-grid {
    min-height: 650px;
  }

  .hero-grid {
    padding: 52px 0 36px;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.87) 58%, rgba(255, 255, 255, 0.38) 100%);
  }

  .hero {
    background-position: right center;
    background-size: auto 100%;
  }

  .hero-copy {
    width: 100%;
  }
}
