:root {
  color-scheme: dark;
  --bg: #0a0a0b;
  --panel: #111113;
  --panel-2: #191b12;
  --ink: #f5f3ee;
  --muted: #b8b6b0;
  --dim: #7e7d78;
  --line: rgba(245, 243, 238, 0.12);
  --line-strong: rgba(245, 243, 238, 0.22);
  --accent: #dfff00;
  --accent-soft: rgba(223, 255, 0, 0.14);
  --shadow-accent: 0 0 32px rgba(223, 255, 0, 0.28);
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --container: 1232px;
  --gutter: 64px;
  --nav-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(102, 37, 18, 0.24), transparent 24%),
    linear-gradient(115deg, transparent 46%, rgba(152, 194, 33, 0.24), transparent 72%),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(245, 243, 238, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 243, 238, 0.055) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.86) 48%, transparent 100%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, transparent, rgba(10, 10, 11, 0.82) 70%, var(--bg)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.015) 0 1px, transparent 1px 4px);
}

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

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

button,
input {
  font: inherit;
}

em {
  color: var(--accent);
  font-style: normal;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--nav-height);
  padding: 18px 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 10, 11, 0.68);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
}

.brand__copy {
  display: grid;
  gap: 3px;
  line-height: 1;
}

.brand__copy strong {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand__copy small {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand__dot,
.pulse-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: var(--shadow-accent);
}

.site-nav {
  display: flex;
  gap: clamp(12px, 1.8vw, 24px);
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a,
.location,
.program-row,
.text-button {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.location:hover,
.program-row:hover,
.text-button:hover {
  color: var(--accent);
}

.button {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.button--ghost:hover,
.button--accent {
  border-color: var(--accent);
  background: var(--accent);
  color: #111;
  box-shadow: var(--shadow-accent);
}

.button--motion {
  position: relative;
  min-height: 68px;
  padding-inline: 34px;
  overflow: hidden;
  isolation: isolate;
  animation: cta-breathe 2.8s ease-in-out infinite;
}

.button--motion::before {
  position: absolute;
  inset: -40% auto -40% -55%;
  z-index: -1;
  width: 42%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  transform: skewX(-18deg);
  animation: cta-shine 2.6s ease-in-out infinite;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 2.2fr);
  gap: clamp(28px, 5vw, 96px);
  width: calc(100% - var(--gutter));
  max-width: var(--container);
  margin-inline: auto;
}

.hero {
  min-height: calc(100svh - var(--nav-height) - 44px);
  align-content: space-between;
  padding: 34px 0 48px;
}

.hero__meta {
  grid-column: 1 / -1;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.location {
  display: inline-flex;
  gap: 14px;
  align-items: flex-start;
}

.location b {
  display: block;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 6px;
}

.location small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: none;
}

.hero__content {
  grid-column: 1 / -1;
  max-width: 1040px;
}

.hero__eyebrow {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--accent);
  background: rgba(10, 10, 11, 0.54);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1040px;
  margin: 0 0 34px;
  font-family: var(--font-display);
  font-size: clamp(58px, 9vw, 116px);
  font-weight: 800;
  line-height: 0.91;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero p {
  max-width: 690px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
}

.hero-choice {
  position: relative;
  grid-column: 1 / -1;
  overflow: hidden;
  margin-top: clamp(18px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #050506;
}

.hero-choice::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 42%;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(5, 5, 6, 0.82));
}

.hero-choice img {
  width: 100%;
  height: clamp(320px, 34vw, 520px);
  object-fit: cover;
}

.hero-choice__pill {
  position: absolute;
  z-index: 3;
  top: 68%;
  display: grid;
  width: clamp(26px, 3vw, 44px);
  aspect-ratio: 0.56;
  place-items: center;
  border-radius: 999px;
  transform: translate(-50%, -50%) rotate(8deg);
  transition: transform 180ms ease, filter 180ms ease;
  animation: pill-float 3.8s ease-in-out infinite;
}

.hero-choice__pill span {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: inherit;
  box-shadow: inset 0 8px 10px rgba(255, 255, 255, 0.35), inset 0 -10px 14px rgba(0, 0, 0, 0.34);
}

.hero-choice__pill::before {
  position: absolute;
  inset: -90%;
  border-radius: 50%;
  opacity: 0.78;
  pointer-events: none;
  content: "";
  filter: blur(12px);
}

.hero-choice__pill::after {
  position: absolute;
  top: 48%;
  left: 50%;
  width: 66%;
  height: 2px;
  border-radius: 999px;
  content: "";
  transform: translate(-50%, -50%);
  opacity: 0.55;
}

.hero-choice__pill:hover,
.hero-choice__pill:focus-visible {
  transform: translate(-50%, -62%) rotate(8deg) scale(1.12);
  filter: brightness(1.18);
}

.hero-choice__pill--blue {
  left: 18.2%;
  animation-delay: -0.8s;
}

.hero-choice__pill--blue span {
  background: linear-gradient(90deg, #123fff 0%, #5aa9ff 48%, #0a2cff 100%);
  box-shadow: 0 0 26px rgba(60, 128, 255, 0.78), inset 0 8px 10px rgba(255, 255, 255, 0.35), inset 0 -10px 14px rgba(0, 0, 0, 0.34);
}

.hero-choice__pill--blue::before {
  background: radial-gradient(circle, rgba(70, 142, 255, 0.7), transparent 64%);
}

.hero-choice__pill--blue::after {
  background: rgba(174, 211, 255, 0.82);
}

.hero-choice__pill--red {
  left: 79.4%;
  animation-delay: -1.9s;
}

.hero-choice__pill--red span {
  background: linear-gradient(90deg, #e10e18 0%, #ff5850 48%, #9e0710 100%);
  box-shadow: 0 0 28px rgba(255, 40, 40, 0.78), inset 0 8px 10px rgba(255, 255, 255, 0.32), inset 0 -10px 14px rgba(0, 0, 0, 0.36);
}

.hero-choice__pill--red::before {
  background: radial-gradient(circle, rgba(255, 35, 35, 0.7), transparent 64%);
}

.hero-choice__pill--red::after {
  background: rgba(255, 187, 180, 0.8);
}

@keyframes pill-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-choice__pill {
    animation: none;
  }
}

.hero-choice__option {
  position: absolute;
  z-index: 2;
  top: calc(68% - 106px);
  display: grid;
  gap: 5px;
  max-width: min(360px, 36%);
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: rgba(10, 10, 11, 0.78);
  backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.28;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-choice__option span {
  color: var(--muted);
}

.hero-choice__option strong {
  color: var(--ink);
}

.hero-choice__option--blue {
  left: 18.2%;
  box-shadow: 0 0 24px rgba(39, 116, 255, 0.18);
}

.hero-choice__option--blue strong {
  color: #8bb2ff;
}

.hero-choice__option--red {
  left: 79.4%;
  border-color: rgba(223, 255, 0, 0.42);
  box-shadow: var(--shadow-accent);
}

.hero-choice__option--red strong {
  color: var(--accent);
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(10, 10, 11, 0.72);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee span {
  padding: 18px 28px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes cta-breathe {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: var(--shadow-accent);
  }

  50% {
    transform: translateY(-2px);
    box-shadow: 0 0 44px rgba(223, 255, 0, 0.4);
  }
}

@keyframes cta-shine {
  0% {
    left: -55%;
  }

  52%,
  100% {
    left: 120%;
  }
}

.section {
  padding: clamp(88px, 10vw, 150px) 0;
}

.section--tight {
  padding-top: 64px;
}

.section-kicker {
  display: flex;
  gap: 14px;
  align-items: baseline;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker span:first-child {
  display: inline-grid;
  place-items: center;
  min-width: 46px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
}

.section-copy h2,
.section-heading h2,
.program-statement h2,
.cta h2 {
  max-width: 880px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.6vw, 64px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.copy-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 820px;
  margin-top: 34px;
  color: var(--muted);
}

.copy-columns p {
  margin: 0;
}

.pain-section .section-copy {
  display: grid;
  gap: 42px;
}

.pain-section .section-copy h2 {
  max-width: 940px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.pain-grid article {
  min-height: 116px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: rgba(245, 243, 238, 0.02);
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.18;
}

.pain-grid article::before {
  color: var(--accent);
  content: "— ";
}

.problem-strip {
  display: grid;
  grid-template-columns: minmax(180px, 0.62fr) minmax(0, 1.38fr);
  gap: 28px;
  align-items: start;
  margin-top: 0;
  padding: 28px;
  border: 1px solid rgba(223, 255, 0, 0.28);
  background: linear-gradient(135deg, rgba(223, 255, 0, 0.1), rgba(245, 243, 238, 0.025));
}

.problem-strip strong {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.05;
}

.problem-strip p {
  margin: 0;
  color: var(--muted);
}

.outcome-grid {
  display: grid;
  grid-column: 2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.outcome-card,
.audience-list article,
.program-cards article {
  min-height: 188px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(245, 243, 238, 0.02);
}

.outcome-card span,
.audience-list span,
.program-cards span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.outcome-card h3,
.audience-list h3,
.program-cards h3 {
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 29px);
  line-height: 1.15;
}

.outcome-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

.section-heading {
  align-items: end;
  margin-bottom: 44px;
}

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: calc(100% - var(--gutter));
  max-width: var(--container);
  margin-inline: auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.speaker-card {
  min-height: 620px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.speaker-card--featured {
  grid-column: span 1;
}

.speaker-card__visual {
  position: relative;
  height: 310px;
  border-bottom: 1px solid var(--line);
}

.visual {
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent 55%, rgba(10, 10, 11, 0.92)),
    linear-gradient(135deg, rgba(245, 243, 238, 0.08), transparent 44%),
    #080809;
}

.visual::before {
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 170px;
  height: 260px;
  border-radius: 88px 88px 18px 18px;
  content: "";
  transform: translateX(-50%);
  background:
    linear-gradient(145deg, rgba(245, 243, 238, 0.74), rgba(119, 135, 132, 0.24)),
    linear-gradient(#202024, #050506);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.48);
}

.visual::after {
  position: absolute;
  left: 50%;
  top: 58px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
  background: linear-gradient(145deg, #e8e2d2, #6f7771);
}

.visual--two::before {
  background: linear-gradient(145deg, #202537, #f4f0df 62%, #111);
}

.visual--three::before {
  background: linear-gradient(145deg, #101010, #67764c 54%, #e6e0d0);
}

.badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  padding: 9px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--accent);
  background: rgba(10, 10, 11, 0.45);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.badge--right {
  right: 20px;
  left: auto;
  color: var(--ink);
}

.speaker-card__body {
  padding: 28px;
}

.speaker-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(25px, 3vw, 35px);
  line-height: 1.05;
}

.speaker-card p {
  margin: 12px 0 22px;
  color: var(--dim);
}

.speaker-card strong {
  display: block;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.3;
}

.speaker-card ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.speaker-card li::before {
  color: var(--accent);
  content: "— ";
}

.text-button {
  margin-top: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.program {
  position: relative;
  padding-top: clamp(56px, 7vw, 96px);
}

.program::before {
  position: absolute;
  top: -82px;
  right: clamp(-42px, -3vw, -12px);
  z-index: -1;
  width: clamp(340px, 46vw, 680px);
  aspect-ratio: 1;
  overflow: hidden;
  pointer-events: none;
  content: "";
  background: url("./assets/inkvizitoshnaya-logo.png") center / contain no-repeat;
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0.075;
}

.program-statement {
  width: calc(100% - var(--gutter));
  max-width: var(--container);
  margin: 0 auto 48px;
}

.program-statement h2 {
  max-width: 940px;
}

.program .section-heading {
  align-items: start;
  margin-bottom: 28px;
}

.program-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: calc(100% - var(--gutter));
  max-width: var(--container);
  margin: 0 auto 68px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.program-cards article.is-accent {
  background: var(--panel-2);
}

.program-cards p {
  margin: 18px 0 0;
  color: var(--muted);
}

.program-list {
  width: calc(100% - var(--gutter));
  max-width: var(--container);
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

.program-row {
  display: grid;
  grid-template-columns: 180px 1fr 220px 24px;
  gap: 28px;
  align-items: center;
  min-height: 118px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.program-row time {
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 700;
}

.program-row strong {
  font-family: var(--font-display);
  font-size: clamp(23px, 3.1vw, 36px);
  line-height: 1.12;
}

.program-row span {
  color: var(--muted);
}

.program-row i {
  color: var(--muted);
  font-style: normal;
  text-align: right;
}

.program-row__visual {
  grid-column: 2 / -1;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #050506;
}

.program-row__visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  cursor: zoom-in;
  object-fit: cover;
}

.modules {
  border-top: 1px solid var(--line);
}

.modules__heading,
.pricing__heading {
  align-items: start;
}

.module-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: calc(100% - var(--gutter));
  max-width: var(--container);
  margin-inline: auto;
}

.module-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(245, 243, 238, 0.02);
}

.module-card__visual {
  overflow: hidden;
  margin: 0 0 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #050506;
}

.module-card__visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.module-card:nth-child(even) {
  transform: translateY(28px);
}

.module-card:nth-child(7) {
  background: linear-gradient(135deg, rgba(223, 255, 0, 0.08), rgba(245, 243, 238, 0.025));
}

.module-card span,
.price-card__tag {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.module-card h3 {
  max-width: 560px;
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-size: clamp(21px, 2.5vw, 32px);
  line-height: 1.12;
}

.module-card p {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
}

.audience-panel {
  display: grid;
  grid-column: 2;
  align-self: start;
}

.audience-panel h2 {
  margin: 0 0 32px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: 0;
}

.audience-list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.audience-list article {
  min-height: 136px;
}

.cases {
  position: relative;
  padding-top: clamp(68px, 8vw, 120px);
  border-top: 1px solid var(--line);
}

.cases__heading {
  align-items: start;
  margin-bottom: 44px;
}

.case-pairs,
.case-gallery,
.review-wall {
  width: calc(100% - var(--gutter));
  max-width: var(--container);
  margin-inline: auto;
}

.case-pairs {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.case-pair {
  display: grid;
  grid-template-columns: minmax(410px, 0.52fr) minmax(0, 1.48fr);
  gap: 18px;
  align-items: start;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(245, 243, 238, 0.02);
}

.case-pair__meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.case-pair__meta span {
  font-family: var(--font-display);
  font-size: clamp(25px, 2.8vw, 38px);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.case-pair__meta small {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

.case-pair__photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.case-pair figure,
.case-card,
.review-grid article {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #050506;
}

.case-pair figure {
  position: relative;
  aspect-ratio: 9 / 16;
  max-height: 680px;
}

.case-pair img,
.case-card img,
.review-grid img {
  width: 100%;
  height: 100%;
  cursor: zoom-in;
  object-fit: contain;
}

.case-pair figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 8px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: rgba(10, 10, 11, 0.68);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.case-card {
  position: relative;
  aspect-ratio: 9 / 16;
}

.case-card span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(223, 255, 0, 0.38);
  border-radius: 4px;
  background: rgba(10, 10, 11, 0.74);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-wall {
  display: grid;
  grid-template-columns: minmax(210px, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
  margin-top: 58px;
}

.review-wall__head {
  position: sticky;
  top: calc(var(--nav-height) + 22px);
}

.review-wall__head span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-wall__head p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

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

.review-grid article {
  aspect-ratio: 9 / 13;
}

.about {
  border-top: 1px solid var(--line);
}

.about__heading {
  align-items: start;
  margin-bottom: 44px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  width: calc(100% - var(--gutter));
  max-width: var(--container);
  margin-inline: auto;
}

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

.about-photo {
  position: relative;
  display: grid;
  overflow: visible;
  margin: 0;
  background: transparent;
}

.about-photo--current {
  aspect-ratio: auto;
}

.about-photo--stage {
  align-self: end;
  aspect-ratio: auto;
}

.about-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4.25;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #050506;
  cursor: zoom-in;
  object-fit: cover;
}

.about-photo figcaption {
  position: static;
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-story {
  display: grid;
  gap: 22px;
}

.about-story p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.pricing {
  border-top: 1px solid var(--line);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: calc(100% - var(--gutter));
  max-width: var(--container);
  margin-inline: auto;
}

.price-card {
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  align-content: start;
  gap: 22px;
  min-width: 0;
  min-height: 620px;
  padding: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(223, 255, 0, 0.12), rgba(245, 243, 238, 0.025));
}

.price-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.price-card__price {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  line-height: 1;
}

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

.price-card ul {
  display: grid;
  align-content: start;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: var(--ink);
  list-style: none;
  min-width: 0;
}

.price-card li {
  overflow-wrap: anywhere;
}

.price-card li::before {
  color: var(--accent);
  content: "— ";
}

.price-card .button {
  align-self: end;
  width: 100%;
  margin-top: auto;
  text-align: center;
}

body.lightbox-open {
  overflow: hidden;
}

.case-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 42px);
  background: rgba(5, 5, 6, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  visibility: hidden;
}

.case-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.case-lightbox__frame {
  position: relative;
  display: grid;
  gap: 12px;
  justify-items: center;
  max-width: min(94vw, 1160px);
  max-height: 94vh;
}

.case-lightbox__image {
  max-width: 100%;
  max-height: 82vh;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #050506;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.62);
  cursor: zoom-out;
  object-fit: contain;
}

.case-lightbox__caption {
  max-width: min(94vw, 980px);
  margin: 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.case-lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(10, 10, 11, 0.82);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.case-lightbox__close:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.cta {
  padding: clamp(96px, 12vw, 180px) 0;
  border-top: 1px solid var(--line);
}

.choice-stack {
  display: grid;
  gap: 0;
  width: 100%;
  max-width: none;
  margin-bottom: clamp(42px, 6vw, 76px);
  border-top: 1px solid var(--line);
}

.choice-stack article {
  display: grid;
  gap: 18px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.choice-stack article:nth-child(2),
.choice-stack article.choice-stack__accent {
  border-bottom: 0;
}

.choice-stack h3 {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.08;
}

.choice-stack p {
  max-width: 860px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.choice-stack__accent {
  position: relative;
  z-index: 0;
  padding: clamp(34px, 5vw, 58px) 0;
  border: 0;
  background: transparent;
}

.choice-stack__accent::before {
  position: absolute;
  inset: 0 -50vw;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(223, 255, 0, 0.12), rgba(223, 255, 0, 0.12) 42%, rgba(223, 255, 0, 0.05) 78%, transparent),
    rgba(245, 243, 238, 0.025);
}

.choice-stack__accent h3,
.choice-stack__accent p:last-child {
  color: var(--ink);
}

.choice-stack__accent h3 em,
.choice-stack__accent p em {
  color: var(--accent);
}

.cta__body p {
  max-width: 680px;
  margin: 28px 0 34px;
  color: var(--muted);
  font-size: 20px;
}

.access-action {
  display: grid;
  justify-items: start;
  gap: 14px;
  max-width: 520px;
}

.access-action small {
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer > span:nth-child(2) {
  text-align: center;
}

.site-footer__links {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  text-align: right;
}

.site-footer__links a {
  color: var(--dim);
  transition: color 180ms ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--accent);
}

.legal-page {
  display: grid;
  min-height: 100svh;
  align-content: start;
  gap: 48px;
  width: calc(100% - var(--gutter));
  max-width: 920px;
  margin-inline: auto;
  padding: 56px 0;
}

.legal-page__back {
  width: max-content;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-page__content {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(223, 255, 0, 0.08), rgba(245, 243, 238, 0.025));
}

.legal-page__content span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-page__content h1 {
  margin: 22px 0 26px;
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.96;
}

.legal-page__content p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.legal-document {
  display: grid;
  gap: 42px;
}

.legal-document__head {
  display: grid;
  gap: 0;
}

.legal-document__head .button {
  width: max-content;
  margin-top: 10px;
}

.legal-document__head .button span {
  color: #111;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.legal-document__body {
  display: grid;
  gap: 18px;
  max-width: 820px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.legal-document__body h2 {
  margin: 28px 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1.05;
}

.legal-document__body h2:first-child {
  margin-top: 0;
}

.legal-document__body p,
.legal-document__body li {
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.62;
}

.legal-document__body p {
  max-width: none;
  margin: 0;
}

.legal-document__body ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.1em;
}

.legal-page--plain {
  max-width: 980px;
}

.legal-document--plain {
  background: rgba(245, 243, 238, 0.025);
}

.legal-document--plain .legal-document__head {
  gap: 12px;
}

.legal-document--plain .legal-document__head h1 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.legal-document--plain .legal-document__head p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
}

.legal-document--plain .legal-document__body {
  gap: 12px;
  max-width: none;
  padding-top: 28px;
}

.legal-document--plain .legal-document__body h2,
.legal-document--plain .legal-document__body h3 {
  margin: 22px 0 2px;
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: 0;
}

.legal-document--plain .legal-document__body h2 {
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.22;
}

.legal-document--plain .legal-document__body h3 {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.3;
}

.legal-document--plain .legal-document__body p,
.legal-document--plain .legal-document__body li {
  color: var(--muted);
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.62;
}

.legal-table-wrap {
  width: 100%;
  margin: 8px 0 10px;
  overflow-x: auto;
}

.legal-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.legal-table th,
.legal-table td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 980px) {
  :root {
    --container: 720px;
    --gutter: 32px;
    --nav-height: 74px;
  }

  .site-header {
    grid-template-columns: auto auto;
    column-gap: 12px;
    justify-content: space-between;
    padding: 14px 16px;
  }

  .site-nav {
    display: none;
  }

  .section-grid,
  .copy-columns,
  .meta-grid,
  .pain-grid,
  .problem-strip,
  .speaker-grid,
  .program-cards,
  .case-pairs,
  .review-wall,
  .about-layout,
  .module-list,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .module-card:nth-child(even) {
    transform: none;
  }

  .hero {
    min-height: calc(100svh - var(--nav-height) - 44px);
    padding-top: 24px;
  }

  .meta-grid {
    gap: 16px;
  }

  .hero-choice img {
    height: 420px;
    object-position: center;
  }

  .hero-choice__pill {
    top: 286px;
  }

  .hero-choice__pill--blue {
    left: 17.8%;
  }

  .hero-choice__pill--red {
    left: 80%;
  }

  .hero-choice__option {
    max-width: calc(50% - 24px);
    top: 174px;
    bottom: auto;
    padding: 12px;
    font-size: 10px;
  }

  .hero-choice__option--blue {
    left: 17.8%;
  }

  .hero-choice__option--red {
    left: 80%;
    right: auto;
  }

  .section-kicker,
  .outcome-grid,
  .audience-panel,
  .cases__heading .section-copy {
    grid-column: 1;
  }

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

  .speaker-card {
    min-height: auto;
  }

  .program-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .program-row i {
    text-align: left;
  }

  .program-row__visual {
    grid-column: 1;
  }

  .case-pair {
    grid-template-columns: 1fr;
  }

  .case-gallery,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-wall__head {
    position: static;
  }

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

  .module-card,
  .price-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .button {
    min-height: 44px;
    padding: 0 16px;
    font-size: 14px;
  }

  .brand {
    max-width: calc(100% - 62px);
  }

  .brand__copy strong {
    font-size: 13px;
  }

  .brand__copy small {
    font-size: 9px;
  }

  .site-header > .button {
    position: absolute;
    top: 15px;
    right: 16px;
    flex: 0 0 44px;
    width: 44px;
    padding: 0;
    border-color: var(--accent);
    background: var(--accent);
    color: #111;
    box-shadow: var(--shadow-accent);
  }

  .site-header > .button span:first-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(40px, 13vw, 52px);
  }

  .hero__content,
  .hero h1,
  .hero p,
  .hero__eyebrow,
  .hero-choice {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .hero__eyebrow {
    display: block;
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero p,
  .cta__body p {
    font-size: 17px;
  }

  .hero-choice img {
    height: 500px;
    object-position: center;
  }

  .hero-choice__pill {
    top: 340px;
    width: 30px;
  }

  .hero-choice__pill--blue {
    left: 18%;
  }

  .hero-choice__pill--red {
    left: 80%;
  }

  .hero-choice__option {
    position: absolute;
    right: auto;
    bottom: auto;
    top: 218px;
    max-width: 42%;
    margin: 0;
    padding: 10px;
    font-size: 9px;
  }

  .hero-choice__option--blue {
    left: 24%;
  }

  .hero-choice__option--red {
    left: 76%;
  }

  .hero-choice__option--red {
    margin-bottom: 0;
  }

  .section {
    padding: 72px 0;
  }

  .speaker-card__visual {
    height: 250px;
  }

  .outcome-card,
  .audience-list article,
  .program-cards article,
  .speaker-card__body {
    padding: 22px;
  }

  .site-footer {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
    padding-inline: 16px;
  }

  .site-footer > span:nth-child(2),
  .site-footer__links {
    text-align: left;
  }

  .site-footer__links {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .choice-stack article {
    padding: 26px 0;
  }

  .choice-stack__accent {
    padding: 28px 0;
  }

  .case-pair {
    padding: 16px;
  }

  .case-pair__photos,
  .case-gallery,
  .review-grid,
  .about-media {
    grid-template-columns: 1fr;
  }

  .module-card,
  .price-card {
    padding: 22px;
  }

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

  .case-pair__meta small {
    text-align: left;
  }
}
