/* ============================================================
   AI WORKSHOP LANDING PAGE
   Sparkbytes brutalist — ink + paper + orange. Square + notched.
   Inter @ 500 for headlines. Google Sans Code for mono UI.
   ============================================================ */

:root {
  /* Color */
  --ink: #0a0a0a;
  --ink-2: #1b1b1b;
  --ink-3: #474747;
  --ink-4: #a8a29d;
  --line: #e4e4e7;
  --paper: #ffffff;
  --cream: #eef0f2;
  --grey-50: #eef0f2;
  --grey-100: #f4f4f4;
  --grey-200: #eef0f2;
  --orange: #ff5b00;
  --orange-2: #d73b00;
  --orange-soft: #ff9a76;
  --orange-tint: rgba(255, 91, 0, 0.14);
  --orange-line: rgba(255, 91, 0, 0.55);
  --orange-glow: rgba(255, 91, 0, 0.18);

  /* Type */
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "Google Sans Code", "JetBrains Mono", ui-monospace, monospace;
  --font-mono-2: "Source Code Pro", ui-monospace, monospace;

  --t-h1: clamp(36px, 4.1vw, 58px);
  --t-h2: clamp(38px, 4.4vw, 60px);
  --t-h3: clamp(28px, 2.6vw, 34px);

  /* Layout */
  --container: 1280px;
  --pad: 48px;
  --notch-lg: 14px;
  --notch-sm: 10px;

  /* Motion */
  --ease-emph: cubic-bezier(0.7, 0, 0.2, 1);
  --ease-soft: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}
img,
svg {
  max-width: 100%;
  display: block;
}
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Headlines: medium weight, NOT bold (Sparkbytes signature) */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-sans);
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

/* "em" → orange — used to colour an inline word in a headline */
h1 em,
h2 em,
h3 em,
.hero-h1 em,
.section-h em,
.reserve-h em,
.modal-h em {
  font-style: normal;
  color: var(--orange);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.cut {
  clip-path: polygon(
    var(--notch-lg) 0,
    100% 0,
    100% calc(100% - var(--notch-lg)),
    calc(100% - var(--notch-lg)) 100%,
    0 100%,
    0 var(--notch-lg)
  );
}
.cut-sm {
  clip-path: polygon(
    var(--notch-sm) 0,
    100% 0,
    100% calc(100% - var(--notch-sm)),
    calc(100% - var(--notch-sm)) 100%,
    0 100%,
    0 var(--notch-sm)
  );
}

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.eyebrow {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--orange);
}

.section-head {
  max-width: 760px;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.section-h {
  font-size: var(--t-h2);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.section-lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 580px;
  margin: 0;
}
.section-head--dark .section-h {
  color: #fff;
}
.section-lede--dark {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   BUTTONS — Sparkbytes swipe-fill style
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 18px 28px;
  min-height: 54px;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  transition: color 0.35s ease;
  white-space: nowrap;
}
.btn .label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn .arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.45s var(--ease-soft);
}
.btn:hover .arrow {
  transform: translateX(5px);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-emph);
  z-index: 1;
}
.btn:hover::before {
  transform: scaleX(1);
}

.btn-primary {
  color: #fff;
  background: var(--orange);
}
.btn-primary::before {
  background: var(--orange-2);
}

.btn-ghost {
  color: #fff;
  background: transparent;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.8);
  transition: color 0.35s ease;
}
.btn-ghost::before {
  background: #fff;
}
.btn-ghost:hover {
  color: var(--ink);
}

.btn-dark {
  color: #fff;
  background: var(--ink);
}
.btn-dark::before {
  background: var(--orange);
}

.btn-nav {
  min-height: 42px;
  padding: 10px 22px;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: #fff;
  background: var(--orange);
}
.btn-nav::before {
  background: var(--orange-2);
}

.btn-on-orange {
  color: var(--orange);
  background: #fff;
}
.btn-on-orange::before {
  background: var(--ink);
}
.btn-on-orange:hover {
  color: #fff;
}

/* ============================================================
   NAV / HEADER
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px var(--pad);
  transition:
    background 0.35s ease,
    backdrop-filter 0.35s ease,
    border-color 0.35s ease,
    padding 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  padding: 12px var(--pad);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: calc(var(--brand-scale, 1) * 14px);
  color: #fff;
}
.brand-ce {
  height: calc(var(--brand-scale, 1) * 30px);
  width: auto;
  display: block;
}
.brand-divider {
  width: 1.5px;
  height: calc(var(--brand-scale, 1) * 24px);
  background: rgba(255, 255, 255, 0.35);
}
.brand-sb {
  height: calc(var(--brand-scale, 1) * 36px);
  width: auto;
  color: #fff;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 0;
  transition: color 0.25s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-emph);
}
.nav-link:hover {
  color: #fff;
}
.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-burger,
.nav-cta-mobile {
  display: none;
}
.nav-cta-mobile {
  padding: 12px;
  min-height: 0;
  font-size: 11px;
  letter-spacing: 0.14em;
  line-height: 1;
}
.nav-cta-mobile .label {
  gap: 8px;
}
.nav-cta-mobile .arrow {
  width: 12px;
  height: 12px;
}

/* ===== Language toggle ===== */
.lang-toggle {
  display: inline-flex;
  align-items: stretch;
  align-self: stretch;
  border: 1px solid rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
}
.lang-opt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  padding: 0 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}
.lang-opt + .lang-opt {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}
.lang-opt:hover {
  color: #fff;
}
.lang-opt.is-active {
  background: #fff;
  color: var(--ink);
}
.lang-opt.is-active:hover {
  color: var(--ink);
}
.nav-right-mobile {
  display: none;
}
.lang-toggle-mobile {
  display: none;
}

@media (max-width: 1180px) {
  .nav-menu {
    gap: 18px;
  }
  .nav-link {
    font-size: 11px;
    letter-spacing: 0.08em;
  }
}
@media (max-width: 1040px) {
  .nav {
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }
  .nav-menu {
    display: none;
  }
  .nav-right-mobile {
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .nav-cta-mobile {
    display: inline-flex;
  }
  .lang-toggle-mobile {
    display: inline-flex;
  }
}
@media (max-width: 600px) {
  :root {
    --brand-scale: 0.78;
  }
  .lang-opt {
    min-width: 40px;
    padding: 0 10px;
    font-size: 11px;
  }
}
@media (max-width: 420px) {
  :root {
    --brand-scale: 0.62;
  }
  .nav-cta-mobile {
    padding: 10px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }
  .nav-cta-mobile .arrow {
    width: 11px;
    height: 11px;
  }
  .nav-right-mobile {
    gap: 8px;
  }
  .lang-opt {
    min-width: 34px;
    padding: 0 8px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding: 140px var(--pad) 96px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 92% 12%, var(--orange-glow), transparent 60%),
    radial-gradient(50% 40% at 8% 0%, rgba(255, 91, 0, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
/* Subtle grid */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.hero-copy {
  max-width: 600px;
}
.hero-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 32px;
}
.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-dot 1.8s ease-out infinite;
}
@keyframes hero-eyebrow-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(255, 91, 0, 0.08),
      0 0 22px -4px rgba(255, 91, 0, 0.45),
      0 0 50px -10px rgba(255, 91, 0, 0.35);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255, 91, 0, 0.18),
      0 0 32px -2px rgba(255, 91, 0, 0.75),
      0 0 80px -10px rgba(255, 91, 0, 0.55);
  }
}
.hero-h1 {
  font-size: var(--t-h1);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin: 0 0 26px;
  color: #fff;
}
.hero-h1 em {
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(135deg, #ff8a3d 0%, #ff5b00 42%, #d73b00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: -0.04em;
}
.hero-tail {
  color: rgba(255, 255, 255, 0.5);
  display: inline;
}
.hero-aside {
  display: block;
  margin: 18px 0 28px;
  font-family: var(--font-mono);
  font-size: clamp(13px, 1.05vw, 15px);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--orange);
}
.hero-sub {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.55;
  margin: 0 0 14px;
}
.hero-sub-line {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 36px;
  font-weight: 700;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}
.hm-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.hm-item:last-child {
  border-right: 0;
  padding-right: 0;
}
.hm-item:not(:first-child) {
  padding-left: 14px;
}
.hm-key {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
}
.hm-val {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.seat-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 var(--orange-glow);
  animation: pulse-dot 1.8s ease-out infinite;
}
@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 91, 0, 0.5);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255, 91, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 91, 0, 0);
  }
}

/* HERO BENTO — 4 tiles, varied heights */
.hero-bento {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  grid-template-rows: 1.4fr 1fr 1.1fr;
  gap: 12px;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  max-width: 560px;
  margin-left: auto;
}
.bento-tile {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  min-height: 0;
}
.bento-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0) contrast(0.98) brightness(1.06) saturate(0.95);
  transition:
    filter 0.5s var(--ease-soft),
    transform 0.7s var(--ease-soft);
}
.bento-tile:hover img {
  filter: grayscale(0) contrast(1) brightness(1.08) saturate(1);
  transform: scale(1.04);
}
.b-1 {
  grid-column: 1;
  grid-row: 1 / span 2;
} /* tall left */
.b-2 {
  grid-column: 2;
  grid-row: 1;
} /* short top-right */
.b-3 {
  grid-column: 2;
  grid-row: 2 / span 2;
} /* tall bottom-right */
.b-4 {
  grid-column: 1;
  grid-row: 3;
} /* short bottom-left */
.bento-chip {
  position: absolute;
  left: 18px;
  bottom: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(10, 10, 10, 0.6);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 7px 10px;
  backdrop-filter: blur(6px);
}
.bento-stat {
  position: absolute;
  right: -16px;
  top: calc(50% - 38px);
  background: var(--orange);
  color: #fff;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  box-shadow: 0 18px 40px -18px rgba(255, 91, 0, 0.5);
}
.bento-stat-num {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.bento-stat-lab {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.3;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  padding-left: 12px;
}

@media (max-width: 1080px) {
  .hero-inner {
    gap: 40px;
  }
  .hero-meta {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 14px;
  }
  .hm-item:nth-child(3) {
    border-right: 0;
    padding-right: 0;
  }
  .hm-item:nth-child(4) {
    border-left: 0;
    padding-left: 0;
  }
}
@media (max-width: 900px) {
  .hero {
    padding: 110px var(--pad) 64px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-bento {
    max-width: 100%;
    margin: 0;
  }
  .hero-cta-row {
    margin-bottom: 32px;
  }
  .hero-meta {
    grid-template-columns: repeat(2, 1fr);
  }
  .hm-item {
    border-right: 0 !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .bento-stat {
    right: 8px;
  }
}
@media (max-width: 700px) {
  .hero-br {
    display: none;
  }
}
@media (max-width: 600px) {
  :root {
    --pad: 20px;
  }
  .hero-h1 {
    font-size: 36px;
  }
  .hero-sub {
    font-size: 16px;
  }
  .bento-stat-num {
    font-size: 24px;
  }
}

/* ============================================================
   CREDIBILITY STRIP
   ============================================================ */
.cred {
  background: var(--ink);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px var(--pad);
}
.cred-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.cred-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.01em;
}
.cred-spark {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--orange);
  margin-top: 1px;
}
@media (max-width: 900px) {
  .cred-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ============================================================
   WHO — 2 cards
   ============================================================ */
.who {
  background: var(--paper);
  padding: 128px 0 26px;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.who-card {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding: 44px 40px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.4s var(--ease-soft);
  overflow: hidden;
}
.who-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--orange) 0%, #b13f00 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 0;
}
.who-card:hover {
  transform: translateY(-4px);
}
.who-card:hover::before {
  opacity: 1;
}
.who-card > * {
  position: relative;
  z-index: 1;
}
.who-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  transition: color 0.4s ease;
}
.who-card:hover .who-num {
  color: rgba(255, 255, 255, 0.85);
}
.who-title {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
}
.who-body {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  max-width: 440px;
  margin: 0;
  transition: color 0.4s ease;
}
.who-card:hover .who-body {
  color: rgba(255, 255, 255, 0.92);
}
.who-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.who-tags li {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.who-card:hover .who-tags li {
  background: rgba(0, 0, 0, 0.18);
  border-color: rgba(0, 0, 0, 0.22);
}
@media (max-width: 800px) {
  .who {
    padding: 80px 0 16px;
  }
  .who-grid {
    grid-template-columns: 1fr;
  }
  .who-title {
    font-size: 26px;
  }
}

/* ============================================================
   WHY — 3 USP cards on grey
   ============================================================ */
.why {
  background: var(--grey-200);
  padding: 128px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.usp {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 36px 32px 32px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  transition:
    transform 0.4s var(--ease-soft),
    box-shadow 0.4s var(--ease-soft),
    border-color 0.4s var(--ease-soft);
}
.usp:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 91, 0, 0.35);
  box-shadow:
    0 18px 40px -22px rgba(255, 91, 0, 0.45),
    0 6px 18px -10px rgba(10, 10, 10, 0.18);
}
.usp.is-active {
  transform: translateY(-10px) scale(1.015);
  border-color: var(--orange);
  box-shadow:
    0 0 0 2px rgba(255, 91, 0, 0.18),
    0 30px 70px -28px rgba(255, 91, 0, 0.7),
    0 18px 40px -18px rgba(255, 91, 0, 0.45),
    0 0 80px -10px rgba(255, 91, 0, 0.4);
}
.usp-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--orange);
}
.usp-title {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
  color: #fff;
}
.usp-body {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.usp-kicker {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--orange);
  margin: auto 0 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  line-height: 1.5;
}
@media (max-width: 1000px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why {
    padding: 80px 0;
  }
}

/* ============================================================
   BUILD / OUTCOMES — dark
   ============================================================ */
.build {
  background: var(--ink);
  color: #fff;
  padding: 128px 0;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.outcome {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 180px;
  transition:
    background 0.35s ease,
    border-color 0.35s ease;
}
.outcome:hover {
  background: rgba(255, 91, 0, 0.08);
  border-color: rgba(255, 91, 0, 0.25);
}
.outcome-num {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
}
.outcome p {
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: -0.012em;
  color: #fff;
  margin: 0;
  font-weight: 400;
}
.outcome strong {
  font-weight: 500;
  color: #fff;
}
@media (max-width: 900px) {
  .build {
    padding: 80px 0;
  }
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SCHEDULE — light, timeline
   ============================================================ */
.schedule {
  background: var(--grey-50);
  padding: 128px 0;
}
.schedule-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.sch-row {
  display: grid;
  grid-template-columns: 180px 1fr 110px;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background 0.25s ease;
}
.sch-row:hover {
  background: rgba(255, 91, 0, 0.03);
}
.sch-time {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  padding-top: 4px;
}
.sch-time-sep {
  color: var(--ink-4);
  margin: 0 4px;
  font-weight: 400;
}
.sch-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sch-title {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.sch-body p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-3);
  margin: 0;
  max-width: 620px;
}
.sch-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 10px;
  background: var(--ink);
  color: #fff;
  align-self: start;
  justify-self: end;
  margin-top: 4px;
}
.sch-tag--build {
  background: var(--orange);
}
.sch-tag--quiet {
  background: transparent;
  color: var(--ink-3);
  border: 1px solid var(--line);
}
.sch-row--break .sch-title {
  color: var(--ink-3);
  font-weight: 400;
}
@media (max-width: 800px) {
  .schedule {
    padding: 80px 0;
  }
  .sch-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }
  .sch-tag {
    justify-self: start;
  }
  .sch-title {
    font-size: 18px;
  }
}

/* ============================================================
   TRAINERS
   ============================================================ */
.trainers {
  background: var(--paper);
  padding: 128px 0;
}
.trainers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.trainer {
  background: var(--cream);
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 380px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-soft);
}
.trainer:hover {
  transform: translateY(-4px);
}
.trainer-photo {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.trainer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.02) brightness(0.92);
  transition:
    filter 0.5s var(--ease-soft),
    transform 0.6s var(--ease-soft);
}
.trainer:hover .trainer-photo img {
  filter: grayscale(0) contrast(1.02);
  transform: scale(1.04);
}
.trainer-body {
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.trainer-name-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trainer-name {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0;
  color: var(--ink);
}
.trainer-role {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}
.trainer-bio {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-3);
  margin: 0;
}
.trainer-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.trainer-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.trainer-points .i-check {
  width: 14px;
  height: 14px;
  color: var(--orange);
  flex-shrink: 0;
}
.trainers-note {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-3);
}
.trainers-note .i-spark {
  width: 16px;
  height: 16px;
  color: var(--orange);
}
@media (max-width: 1000px) {
  .trainers-grid {
    grid-template-columns: 1fr;
  }
}
.trainers-grid--single {
  grid-template-columns: 1fr;
  max-width: 620px;
}
/* Trainer headline + card side by side (1:2) */
.trainers-split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: center;
}
.trainers-head {
  margin-bottom: 0;
}
.trainers-split .trainers-grid--single {
  max-width: none;
}
@media (max-width: 900px) {
  .trainers-split {
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start;
  }
}
@media (max-width: 700px) {
  .trainers {
    padding: 80px 0;
  }
  .trainer {
    grid-template-columns: 1fr;
  }
  .trainer-photo {
    aspect-ratio: 4 / 3;
  }
}

/* ============================================================
   TESTIMONIAL VIDEO — dark
   ============================================================ */
.vid {
  background: var(--ink);
  color: #fff;
  padding: 128px 0;
}
.vid-frame {
  background: #050505;
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.vid-poster {
  position: relative;
  width: 100%;
  height: 100%;
}
.vid-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vid-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.05) 0,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px,
      transparent 12px
    ),
    rgba(10, 10, 10, 0.6);
  z-index: 1;
}
.vid-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition:
    background 0.3s ease,
    transform 0.4s var(--ease-soft);
  clip-path: polygon(
    14px 0,
    100% 0,
    100% calc(100% - 14px),
    calc(100% - 14px) 100%,
    0 100%,
    0 14px
  );
}
.vid-play:hover {
  background: var(--orange-2);
  transform: translate(-50%, -50%) scale(1.05);
}
.vid-play svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}
.vid-overlay-meta {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}
.vid-caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vid-caption-key {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}
.vid-caption-val {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.vid-progress {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
}
.vid-progress span {
  display: block;
  height: 100%;
  background: var(--orange);
}
@media (max-width: 700px) {
  .vid {
    padding: 80px 0;
  }
  .vid-play {
    width: 64px;
    height: 64px;
  }
  .vid-play svg {
    width: 22px;
    height: 22px;
  }
}

/* ============================================================
   FAQ — split: aside + accordion
   ============================================================ */
.faq {
  background: var(--grey-200);
  padding: 128px 0;
}
.faq-inner {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}
.faq-aside {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-aside .section-h {
  font-size: clamp(32px, 3.4vw, 44px);
}
.faq-aside .section-lede {
  margin: 0;
}
.faq-cta {
  margin-top: 6px;
  align-self: flex-start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(10, 10, 10, 0.12);
}
.faq-item {
  border-bottom: 1px solid rgba(10, 10, 10, 0.12);
}
.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: 36px 1fr 32px;
  gap: 18px;
  align-items: center;
  padding: 24px 4px;
  text-align: left;
  cursor: pointer;
  transition: color 0.25s ease;
}
.faq-q:hover {
  color: var(--orange);
}
.faq-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--orange);
}
.faq-q-text {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.3;
  color: inherit;
}
.faq-toggle {
  width: 32px;
  height: 32px;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  transition: background 0.3s ease;
}
.faq-toggle svg {
  width: 16px;
  height: 16px;
}
.faq-q:hover .faq-toggle {
  background: var(--orange);
}
.faq-plus {
  display: block;
}
.faq-minus {
  display: none;
}
.faq-item.open .faq-plus {
  display: none;
}
.faq-item.open .faq-minus {
  display: block;
}
.faq-item.open .faq-toggle {
  background: var(--orange);
}
.faq-item.open .faq-q-text {
  color: var(--orange);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-emph);
}
.faq-item.open .faq-a {
  max-height: 600px;
}
.faq-a > * {
  margin-left: 54px;
  margin-right: 50px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-3);
}
.faq-a > *:first-child {
  margin-top: 0;
  padding-top: 0;
}
.faq-a > *:last-child {
  padding-bottom: 28px;
}
.faq-a p + p {
  margin-top: 12px;
}
.faq-a strong {
  color: var(--ink);
  font-weight: 600;
}
.faq-item--placeholder .faq-q-text {
  color: var(--ink-4);
  font-style: italic;
}

@media (max-width: 900px) {
  .faq {
    padding: 80px 0;
  }
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-aside {
    position: static;
  }
  .faq-q-text {
    font-size: 17px;
  }
  .faq-a > * {
    margin-left: 0;
    margin-right: 0;
  }
}

/* ============================================================
   PRICING — one card, Sparkbytes booker vibe
   ============================================================ */
.pricing {
  background: var(--paper);
  padding: 128px 0;
}
.price-card {
  background: var(--cream);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  overflow: hidden;
  box-shadow:
    0 30px 80px -30px rgba(255, 91, 0, 0.35),
    0 10px 30px -10px rgba(0, 0, 0, 0.08);
}
.price-left {
  background: var(--ink);
  color: #fff;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.price-tag {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-variant-numeric: tabular-nums;
}
.price-currency {
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--orange);
}
.price-num {
  font-size: 88px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}
.price-unit {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}
.price-summary {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 420px;
}
.price-cta {
  align-self: flex-start;
  margin-top: 4px;
}
.price-finep {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.price-right {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.price-incl-h {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 4px;
}
.price-incl {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.price-incl li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}
.price-incl svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 3px;
}
@media (max-width: 900px) {
  .pricing {
    padding: 80px 0;
  }
  .price-card {
    grid-template-columns: 1fr;
  }
  .price-left,
  .price-right {
    padding: 36px 28px;
  }
  .price-num {
    font-size: 64px;
  }
}

/* ============================================================
   RESERVE BAND — orange
   ============================================================ */
.reserve-band {
  background: var(--orange);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.reserve-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      50% 50% at 90% 20%,
      rgba(255, 255, 255, 0.18),
      transparent 60%
    ),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 14px
    );
  pointer-events: none;
}
.reserve-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
}
.reserve-eyebrow {
  color: #fff !important;
}
.reserve-eyebrow::before {
  background: #fff;
}
.reserve-h {
  font-size: clamp(36px, 4.2vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 18px 0 0;
  color: #fff;
}
.reserve-h em {
  color: var(--ink);
  font-style: normal;
}
.reserve-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.reserve-fine {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  text-align: right;
}
@media (max-width: 800px) {
  .reserve-band {
    padding: 72px 0;
  }
  .reserve-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .reserve-actions {
    align-items: flex-start;
  }
  .reserve-fine {
    text-align: left;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: var(--ink);
  color: #fff;
  padding: 80px var(--pad) 32px;
}
.foot-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.foot-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.foot-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #fff;
}
.foot-partner {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.foot-partner-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}
.foot-partner-logo {
  height: 40px;
  width: auto;
  display: block;
}
@media (max-width: 700px) {
  .foot-partner {
    justify-self: start;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.foot-ce {
  height: 36px;
  width: auto;
  display: block;
}
.foot-divider {
  width: 1.5px;
  height: 28px;
  background: rgba(255, 255, 255, 0.35);
}
.foot-sb {
  height: 44px;
  width: auto;
  color: #fff;
  display: block;
}
.foot-lede {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  max-width: 540px;
  margin: 0;
  justify-self: end;
  text-align: right;
}

.foot-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
.foot-col p,
.foot-col a {
  font-family: var(--font-mono);
  font-size: 13.5px;
  letter-spacing: 0.01em;
  line-height: 1.55;
}
.foot-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.foot-col-h {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.foot-col-line {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.foot-dim {
  color: rgba(255, 255, 255, 0.45);
}
.foot-link {
  font-family: var(--font-mono-2);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-block;
  align-self: flex-start;
  padding-bottom: 1px;
  transition:
    color 0.25s ease,
    border-color 0.25s ease;
}
.foot-link:hover {
  color: var(--orange);
  border-color: var(--orange);
}
.foot-link--quiet {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  border-bottom-color: transparent;
}
.foot-link--quiet:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 14px;
}
.foot-bottom-right {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.foot-sep {
  color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 1000px) {
  .foot-cols {
    grid-template-columns: repeat(2, 1fr);
  }
  .foot-lede {
    justify-self: start;
    text-align: left;
  }
}
@media (max-width: 700px) {
  .foot-top {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .foot-cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .foot {
    padding: 56px var(--pad) 28px;
  }
}

/* ============================================================
   MODAL
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.open {
  display: flex;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal-card {
  position: relative;
  background: var(--paper);
  width: 100%;
  max-width: 540px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 40px 40px 36px;
  --notch-lg: 18px;
  animation: modal-in 0.35s var(--ease-soft);
}
@keyframes modal-in {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  background: var(--grey-50);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}
.modal-close:hover {
  background: var(--orange);
  color: #fff;
}
.modal-close svg {
  width: 18px;
  height: 18px;
}

.modal-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.modal-h {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.modal-sub {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-3);
  margin: 0;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 12px 14px;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  resize: vertical;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 91, 0, 0.15);
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-4);
}

.modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.modal-submit {
  flex: 0 0 auto;
}
.modal-fine {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.modal-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-out infinite;
}

.modal-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
}
.modal-tick {
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: #fff;
  padding: 10px;
  --notch-sm: 10px;
  clip-path: polygon(
    10px 0,
    100% 0,
    100% calc(100% - 10px),
    calc(100% - 10px) 100%,
    0 100%,
    0 10px
  );
}
.modal-success h4 {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
}
.modal-success p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-3);
  margin: 0;
}
.modal-success strong {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 500px) {
  .modal-card {
    padding: 32px 24px 28px;
  }
  .modal-h {
    font-size: 24px;
  }
}

/* ============================================================
   SCHEDULE — sticky aside + list
   ============================================================ */
.schedule-section {
  background: var(--ink);
  color: #fff;
  padding: 128px 0;
}
.sch-layout {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}
.sch-aside {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.sch-aside .section-h {
  color: #fff;
}
.schedule-section .schedule-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.schedule-section .sch-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 4px 24px;
  padding: 22px 0;
  align-items: baseline;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: padding 0.25s ease;
}
.schedule-section .sch-row:hover {
  padding-left: 8px;
  background: #dff4f4;
}
.schedule-section .sch-time {
  color: #008f86;
}
.schedule-section .sch-time {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.schedule-section .sch-title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.3;
  color: #fff;
  margin: 0;
}
.schedule-section .sch-row--break .sch-title {
  color: rgba(255, 255, 255, 0.5);
}
.schedule-section .sch-row--break .sch-time {
  color: rgba(255, 255, 255, 0.45);
}
@media (max-width: 900px) {
  .schedule-section {
    padding: 80px 0;
  }
  .sch-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sch-aside {
    position: static;
  }
  .schedule-section .sch-row {
    grid-template-columns: 90px 1fr;
    padding: 18px 0;
  }
  .schedule-section .sch-title {
    font-size: 16px;
  }
}

/* ============================================================
   GALLERY MARQUEE — horizontal auto-scroll, 3.5 visible @ desktop
   ============================================================ */
.gallery {
  background: var(--paper);
  padding: 56px 0 88px;
  overflow: hidden;
}
.gallery-marquee {
  --gap: 16px;
  --tile-h: 280px;
  --tile-w: calc((100vw - 5 * var(--gap)) / 3.5);
  display: flex;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}
.gallery-marquee.is-dragging {
  cursor: grabbing;
}
.gallery-track {
  display: flex;
  gap: var(--gap);
  flex-shrink: 0;
  width: max-content;
  will-change: transform;
}
/* JS drives the position via translateX. The animation handle below
   stays so reduced-motion users get no scroll at all. */
.g-item {
  position: relative;
  margin: 0;
  flex: 0 0 auto;
  width: var(--tile-w);
  height: var(--tile-h);
  overflow: hidden;
  background: var(--ink-2);
  clip-path: polygon(
    var(--notch-lg) 0,
    100% 0,
    100% calc(100% - var(--notch-lg)),
    calc(100% - var(--notch-lg)) 100%,
    0 100%,
    0 var(--notch-lg)
  );
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(0.98) brightness(1.06) saturate(0.95);
  transition:
    filter 0.5s var(--ease-soft),
    transform 0.7s var(--ease-soft);
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}
.g-item:hover img {
  filter: contrast(1) brightness(1.08) saturate(1);
  transform: scale(1.04);
}
/* portrait tiles are a touch narrower so 3.5 still works in the rhythm */
.g-item.g-portrait {
  width: calc(var(--tile-w) * 0.7);
}
@media (max-width: 900px) {
  .gallery-marquee {
    --tile-h: 220px;
    --tile-w: calc((100vw - 4 * var(--gap)) / 2.5);
  }
}
@media (max-width: 600px) {
  .gallery {
    padding: 40px 0 64px;
  }
  .gallery-marquee {
    --tile-h: 180px;
    --tile-w: calc((100vw - 3 * var(--gap)) / 1.5);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-track {
    transform: none !important;
  }
}
/* ============================================================
   WHY (USP) cards — light card overrides handled in the main .usp
   block above; keep these for the kicker treatment.
   ============================================================ */
.usp-num {
  color: var(--orange);
}
.usp-title {
  color: var(--ink);
}
.usp-body {
  color: var(--ink-3);
}
.usp-kicker {
  color: var(--orange);
  border-top-color: var(--line);
}
.day-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.ds-col {
  padding: 96px 56px;
  min-width: 0; /* let grid items shrink to col width */
}
.ds-build {
  background: var(--ink);
  color: #fff;
}
.ds-schedule {
  background: var(--grey-50);
  color: var(--ink);
}
.day-split .section-head {
  margin-bottom: 40px;
  max-width: 100%;
  gap: 18px;
}
.day-split .section-h {
  font-size: clamp(26px, 2.4vw, 36px);
}
.day-split .section-lede {
  font-size: 15px;
}

.ds-build .outcomes-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ds-build .outcome {
  min-height: 0;
  padding: 22px 24px;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
}
.ds-build .outcome-num {
  white-space: nowrap;
  padding-top: 2px;
  font-size: 11px;
  min-width: 44px;
}
.ds-build .outcome p {
  font-size: 15px;
  line-height: 1.5;
}

.ds-schedule .schedule-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(10, 10, 10, 0.12);
}
.ds-schedule .sch-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 4px 18px;
  padding: 16px 0;
  align-items: baseline;
}
.ds-schedule .sch-time {
  font-size: 13px;
  letter-spacing: 0.02em;
  padding-top: 0;
  white-space: nowrap;
}
.ds-schedule .sch-body {
  display: block;
}
.ds-schedule .sch-title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.3;
}
.ds-schedule .sch-row--break .sch-title {
  color: var(--ink-3);
}

@media (max-width: 1080px) {
  .day-split {
    grid-template-columns: 1fr;
  }
  .ds-col {
    padding: 72px var(--pad);
  }
}

/* ============================================================
   TRAINER CARDS — horizontal: photo left, body right, badge top-left
   (overrides earlier .trainer rules)
   ============================================================ */
.trainers-grid .trainer {
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  min-height: 408px;
  transition:
    transform 0.4s var(--ease-soft),
    box-shadow 0.4s ease;
  clip-path: polygon(
    var(--notch-lg) 0,
    100% 0,
    100% calc(100% - var(--notch-lg)),
    calc(100% - var(--notch-lg)) 100%,
    0 100%,
    0 var(--notch-lg)
  );
  overflow: hidden;
}
.trainers-grid .trainer:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px -28px rgba(10, 10, 10, 0.18);
}
.trainers-grid .trainer-photo {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.trainers-grid .trainer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  filter: grayscale(0.12) contrast(1.02);
  transition:
    filter 0.5s var(--ease-soft),
    transform 0.6s var(--ease-soft);
}
.trainers-grid .trainer:hover .trainer-photo img {
  filter: grayscale(0) contrast(1.02);
  transform: scale(1.03);
}
.trainer-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 11px;
  z-index: 2;
}
.trainers-grid .trainer-body {
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.trainers-grid .trainer-name {
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0;
  color: var(--ink);
}
.trainers-grid .trainer-role {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.trainers-grid .trainer-bio {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-3);
  margin: 4px 0 0;
}
.trainers-grid .trainer-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.trainers-grid .trainer-points li {
  position: relative;
  display: block;
  padding-left: 26px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--ink);
}
.trainers-grid .trainer-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF5B00' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'><path d='M4 12l5 5L20 7'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 720px) {
  .trainers-grid .trainer {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .trainers-grid .trainer-photo {
    aspect-ratio: 1 / 1;
  }
  .trainers-grid .trainer-photo img {
    object-position: 50% 18%;
  }
}

/* ============================================================
   PRICING — new split layout: info left, dark price card right
   (overrides earlier .price-card rules)
   ============================================================ */
.pricing {
  background: var(--paper);
  padding: 128px 0;
}
.price-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}
.price-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.price-h {
  font-size: clamp(40px, 4.4vw, 60px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 14px 0 8px;
  color: var(--ink);

  @media (max-width: 1024px) {
    font-size: 36px;
  }
}
.price-h em {
  font-style: normal;
  color: var(--orange);
}

.price-lang {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  margin: 0;
  padding: 10px 20px 10px 16px;
  border-radius: 999px;
  background: rgba(255, 91, 0, 0.1);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.price-lang svg {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--orange);
}

.price-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 14px 0 18px;
  border: 1px solid var(--line);
}
.pm-cell {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pm-cell:nth-child(2n) {
  border-right: 0;
}
.pm-cell:last-child {
  border-bottom: 0;
}
/* Spans both columns, so it is always the sole cell on the last row. */
.pm-cell.pm-wide {
  grid-column: 1 / -1;
  border-right: 0;
}
/* Numbered list rather than "1." typed into the text, so a wrapped line
   indents under the sentence instead of under the marker. */
.pm-wide dd ol {
  list-style: decimal;
  padding-left: 1.3em;
}
.pm-wide dd li + li {
  margin-top: 4px;
}
.pm-cell dt {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.pm-cell dd {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.price-foot {
  font-size: 14px;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.55;
}

.price-card {
  background: var(--ink);
  color: #fff;
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow:
    0 30px 80px -30px rgba(255, 91, 0, 0.35),
    0 10px 30px -10px rgba(0, 0, 0, 0.08);
  --notch-lg: 18px;
}
.price-card-top {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.price-tier {
  background: var(--orange);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 12px;
  margin-bottom: 10px;
}
.price-tag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hrd-badge {
  height: 106px;
  width: auto;
  flex: none;
}
.price-tag {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-variant-numeric: tabular-nums;
}
.price-currency {
  font-family: var(--font-mono);
  font-size: 22px;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #fff;
  align-self: flex-start;
  margin-top: 8px;
}
.price-num {
  font-size: 88px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}
.price-sub {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: -0.005em;
}
.price-card-mid {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.pc-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.pc-row-key {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}
.pc-row-note {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.01em;
}
.pc-row-val {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.005em;
}
.price-card-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}
.price-card-actions .price-cta {
  width: 100%;
  padding: 22px 28px;
  min-height: 64px;
  font-size: 14px;
  justify-content: center;
}
.price-wa {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  padding: 8px 4px;
  position: relative;
  transition: color 0.25s ease;
}
.price-wa svg {
  width: 14px;
  height: 14px;
  transition: transform 0.35s var(--ease-soft);
}
.price-wa:hover {
  color: var(--orange);
}
.price-wa:hover svg {
  transform: translateX(4px);
}
.price-finep {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin: 4px 0 0;
  text-align: center;
}
.price-contact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  padding-top: 18px;
  margin-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.price-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0;
}
.price-contact svg {
  width: 15px;
  height: 15px;
  color: var(--orange);
  flex-shrink: 0;
}
.price-contact a {
  color: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 1px;
  transition:
    color 0.25s ease,
    border-color 0.25s ease;
}
.price-contact a:hover {
  color: var(--orange);
  border-color: var(--orange);
}
@media (max-width: 1000px) {
  .price-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .pricing {
    padding: 80px 0;
  }
  .price-num {
    font-size: 72px;
  }
  .hrd-badge {
    height: 86px;
  }
}
@media (max-width: 600px) {
  .price-num {
    font-size: 58px;
  }
  .price-meta {
    grid-template-columns: 1fr;
  }
  .pm-cell {
    border-right: 0;
  }
  /* The <br> in the Date cell (Settings → Workshop) is a desktop nicety: it
     keeps "25 Sept … or / 9 Oct …" on two tidy lines beside the price card.
     In one narrow column the text should just wrap where it wants, so the
     break is suppressed rather than forced. The setting value keeps a space
     before the <br> — with the break gone that space is what separates the
     two halves; on desktop it collapses against the break and shows nothing. */
  .pm-cell dd br {
    display: none;
  }
}
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s var(--ease-soft),
    transform 0.9s var(--ease-soft);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   ============================================================
   LIGHT THEME OVERRIDES  (no black backgrounds except footer)
   Appended last so these win the cascade over the dark rules above.
   ============================================================
   ============================================================ */

/* ---------- NAV (light) ---------- */
.nav {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.brand-lockup {
  color: var(--ink);
}
.brand-sb {
  color: var(--ink);
}
.brand-divider {
  background: rgba(10, 10, 10, 0.2);
}
.nav-link {
  color: var(--ink-3);
}
.nav-link:hover {
  color: var(--ink);
}
.nav-burger span {
  background: var(--ink);
}

.lang-toggle {
  border-color: rgba(10, 10, 10, 0.22);
}
.lang-opt {
  color: var(--ink-3);
}
.lang-opt + .lang-opt {
  border-left-color: rgba(10, 10, 10, 0.22);
}
.lang-opt:hover {
  background: var(--cream);
  color: var(--orange);
}
.lang-opt.is-active {
  background: var(--ink);
  color: #fff;
}
.lang-opt.is-active:hover {
  background: var(--ink);
  color: #fff;
}

@media (max-width: 1040px) {
  .nav {
    background: rgba(255, 255, 255, 0.94);
    border-bottom-color: var(--line);
  }
}

/* ---------- HERO (light) ---------- */
.hero {
  background: var(--cream);
  color: var(--ink);
}
.hero::before,
.hero::after {
  display: none;
}
.hero-h1 {
  color: var(--ink);
}
.hero-sub {
  color: var(--ink-3);
}
.hero-eyebrow {
  color: var(--orange);
}

/* Outline CTA for light hero */
.btn-outline {
  color: var(--ink);
  background: transparent;
  box-shadow: inset 0 0 0 1.5px rgba(10, 10, 10, 0.25);
  transition:
    color 0.35s ease,
    box-shadow 0.35s ease;
}
.btn-outline::before {
  background: var(--ink);
}
.btn-outline:hover {
  color: #fff;
  box-shadow: inset 0 0 0 1.5px var(--ink);
}
.wa-ico {
  width: 16px;
  height: 16px;
}

/* ---------- WHO cards (light cream) ---------- */
.who-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.who-card {
  background: #dff4f4;
  color: var(--ink);
  border: 1px solid var(--line);
  min-height: 0;
}
.who-card::before {
  display: none;
}
.who-num {
  color: #008f86;
}
.who-title {
  color: var(--ink);
}
.who-body {
  color: var(--ink-3);
}
.who-card:hover .who-num {
  color: #008f86;
}
.who-card:hover .who-body {
  color: var(--ink-3);
}
@media (max-width: 900px) {
  .who-grid--3 {
    grid-template-columns: 1fr;
  }
}

/* ---------- SCHEDULE (light) ---------- */
.schedule-section {
  background: var(--grey-50);
  color: var(--ink);
}
.sch-aside .section-h {
  color: var(--ink);
}
.schedule-section .schedule-list {
  border-top-color: var(--line);
}
.schedule-section .sch-row {
  border-bottom-color: var(--line);
}
.schedule-section .sch-time {
  color: #008f86;
}
.schedule-section .sch-title {
  color: var(--ink);
}
.schedule-section .sch-row--break .sch-title {
  color: var(--ink-3);
}
.schedule-section .sch-row--break .sch-time {
  color: var(--ink-4);
}

/* ---------- WHAT WE'LL COVER ---------- */
.cover {
  background: var(--paper);
  padding: 128px 0;
}
.cover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cover-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    transform 0.4s var(--ease-soft),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
}
.cover-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 91, 0, 0.35);
  box-shadow:
    0 18px 40px -22px rgba(255, 91, 0, 0.35),
    0 6px 18px -10px rgba(10, 10, 10, 0.12);
}
.cover-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--orange);
}
.cover-ico {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: none;
  clip-path: none;
}
.cover-ico svg {
  width: 44px;
  height: 44px;
}
.cover-title {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}
.cover-body {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-3);
  margin: 0;
}
.cover-close {
  margin: 48px auto 0;
  max-width: 820px;
  text-align: center;
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.45;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--ink);
}
.cover-close em {
  font-style: normal;
  color: var(--orange);
}
/* Alternating cover cards: even (2,4,6) dark teal + light text */
#cover .cover-grid .cover-card:nth-child(2n) {
  background: #dff4f4;
  border-color: #dff4f4;
}
#cover .cover-grid .cover-card:nth-child(2n):hover {
  border-color: #57d5d0;
  box-shadow:
    0 18px 40px -22px rgba(0, 143, 134, 0.35),
    0 6px 18px -10px rgba(10, 10, 10, 0.12);
}
#cover .cover-grid .cover-card:nth-child(2n) .cover-title {
  color: var(--ink);
}
#cover .cover-grid .cover-card:nth-child(2n) .cover-body {
  color: var(--ink-3);
}
#cover .section-h em {
  font-style: normal;
  background: linear-gradient(100deg, #008f86 0%, #57d5d0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media (max-width: 980px) {
  .cover {
    padding: 80px 0;
  }
  .cover-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- WHAT YOU WALK OUT WITH ---------- */
.takeaways {
  background: var(--grey-200);
  padding: 128px 0;
}
.take-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.take-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 32px 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition:
    transform 0.4s var(--ease-soft),
    box-shadow 0.4s ease;
}
.take-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -24px rgba(10, 10, 10, 0.2);
}
.take-num {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
  background: var(--orange);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  clip-path: polygon(
    8px 0,
    100% 0,
    100% calc(100% - 8px),
    calc(100% - 8px) 100%,
    0 100%,
    0 8px
  );
}
.take-body {
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink-3);
  margin: 0;
  padding-top: 6px;
}
.take-body strong {
  color: var(--ink);
  font-weight: 600;
}
.take-close {
  margin: 44px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: var(--ink);
}
@media (max-width: 760px) {
  .takeaways {
    padding: 80px 0;
  }
  .take-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- PRICING left-column note + earlybird ---------- */
.price-note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-3);
  margin: 4px 0 0;
}
.price-note a {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid var(--orange);
  padding-bottom: 1px;
  transition: color 0.25s ease;
}
.price-note a:hover {
  color: var(--orange);
}
.price-earlybird {
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 12px 0 0;
}

/* ---------- PRICE CARD (orange gradient focal, not black) ---------- */
.price-card {
  background: linear-gradient(155deg, #ff6a1a 0%, #e24500 55%, #c23400 100%);
  color: #fff;
}
.price-card .price-tier {
  background: #fff;
  color: var(--orange);
}
.price-card .price-currency {
  color: #fff;
}
.price-card .price-num {
  color: #fff;
}
.price-card .price-sub {
  color: rgba(255, 255, 255, 0.85);
}
.price-card .price-card-mid {
  border-top-color: rgba(255, 255, 255, 0.28);
}
.price-card .pc-row-key {
  color: rgba(255, 255, 255, 0.85);
}
.price-card .pc-row-val {
  color: #fff;
}
.price-card .price-cta {
  background: #fff;
  color: var(--ink);
}
.price-card .price-cta::before {
  background: var(--ink);
}
.price-card .price-cta:hover {
  color: #fff;
}
.price-card .price-wa {
  color: #fff;
}
.price-card .price-wa:hover {
  color: rgba(255, 255, 255, 0.75);
}
.price-card .price-finep {
  color: rgba(255, 255, 255, 0.72);
}
