:root {
  --ink: #111210;
  --ink-soft: #292b27;
  --paper: #d8d2c5;
  --paper-deep: #c5bcad;
  --white: #f7f4ed;
  --line: rgba(17, 18, 16, 0.24);
  --line-light: rgba(255, 255, 255, 0.18);
  --muted: #53574f;
  --acid: #d7ff45;
  --acid-strong: #c7f22c;
  --orange: #ff7548;
  --orange-on-light: #8d2c13;
  --blue: #7fa8ff;
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 34px;
  --shadow: 0 24px 70px rgba(28, 25, 17, 0.11);
  --shell: min(1440px, calc(100vw - 48px));
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 7% 2%, rgba(215, 255, 69, 0.16), transparent 23rem),
    var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

p,
h1,
h2,
h3,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

::selection {
  color: var(--ink);
  background: var(--acid);
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 74px;
  padding: 12px 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(216, 210, 197, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 9px;
  width: max-content;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--acid);
  background: var(--ink);
  border-radius: 9px;
  font-size: 18px;
  letter-spacing: -0.08em;
}

.brand-name {
  font-size: 17px;
}

.brand-index {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.main-nav a {
  position: relative;
  padding-block: 10px;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switcher {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 5px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
}

.language-option {
  min-width: 30px;
  min-height: 30px;
  padding: 4px 6px;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
}

.language-option.is-active {
  color: var(--ink);
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(440px, 0.97fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  min-height: calc(100svh - 74px);
  padding-block: clamp(64px, 8vw, 120px);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  margin-bottom: clamp(32px, 5vw, 64px);
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #78bb36;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(120, 187, 54, 0.14);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 7px rgba(120, 187, 54, 0); }
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(64px, 7.8vw, 124px);
  font-weight: 750;
  letter-spacing: -0.078em;
  line-height: 0.84;
}

.hero h1 span {
  display: block;
}

.hero h1 .accent-script {
  margin-top: 0.1em;
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.94em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.hero-intro {
  max-width: 650px;
  margin-top: clamp(32px, 4vw, 50px);
  color: var(--ink-soft);
  font-size: clamp(18px, 1.5vw, 23px);
  letter-spacing: -0.02em;
  line-height: 1.5;
}

.hero-proof {
  margin-top: 13px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 720;
  letter-spacing: -0.01em;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary,
.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-primary:hover,
.button-dark:hover {
  background: #30332e;
}

.button-accent {
  color: var(--ink);
  background: var(--acid);
}

.button-accent:hover {
  background: var(--acid-strong);
}

.button-quiet {
  border-color: var(--line);
  background: transparent;
}

.button-quiet:hover {
  background: rgba(17, 18, 16, 0.055);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: transparent;
}

.button-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.button-arrow {
  font-size: 16px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 670px;
  margin-top: clamp(40px, 6vw, 76px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-facts div {
  padding: 18px 16px 18px 0;
}

.hero-facts div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.hero-facts dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-facts dd {
  font-size: 13px;
  font-weight: 670;
}

.hero-facts dd span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.hero-conversion {
  min-height: calc(100svh - 74px);
}

.workshop-snapshot {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: min(650px, 74vh);
  overflow: hidden;
  padding: clamp(30px, 4vw, 54px);
  color: var(--white);
  background:
    radial-gradient(circle at 94% 4%, rgba(215, 255, 69, 0.19), transparent 34%),
    radial-gradient(circle at 0 100%, rgba(127, 168, 255, 0.16), transparent 38%),
    var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.workshop-snapshot::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 42%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0 0 0 100%;
  content: "";
  pointer-events: none;
}

.snapshot-topline,
.snapshot-date {
  display: flex;
  align-items: center;
}

.snapshot-topline {
  position: relative;
  z-index: 1;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.11em;
}

.snapshot-availability {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.snapshot-availability i {
  width: 7px;
  height: 7px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(215, 255, 69, 0.1);
}

.snapshot-date {
  position: relative;
  z-index: 1;
  gap: clamp(18px, 3vw, 34px);
  margin-top: clamp(42px, 7vh, 72px);
}

.snapshot-day {
  color: var(--acid);
  font-size: clamp(74px, 8vw, 118px);
  font-weight: 760;
  letter-spacing: -0.09em;
  line-height: 0.75;
}

.snapshot-date div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.snapshot-date strong {
  font-size: clamp(19px, 2vw, 27px);
  letter-spacing: -0.04em;
}

.snapshot-date div span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.snapshot-divider {
  height: 1px;
  margin-block: clamp(34px, 5vh, 55px) 27px;
  background: var(--line-light);
}

.workshop-snapshot h2 {
  font-size: clamp(24px, 2.4vw, 35px);
  letter-spacing: -0.045em;
}

.snapshot-outcomes {
  display: grid;
  gap: 0;
  margin-top: 15px;
  list-style: none;
}

.snapshot-outcomes li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: center;
  padding-block: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.snapshot-outcomes li span {
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 8px;
}

.snapshot-outcomes li strong {
  font-size: 12px;
  font-weight: 580;
}

.workshop-snapshot .button {
  width: 100%;
  margin-top: auto;
}

.snapshot-note {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  text-align: center;
}

.hero-stage {
  position: relative;
  min-height: min(710px, 76vh);
  overflow: hidden;
  padding: 24px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.stage-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.hero-stage::before {
  position: absolute;
  z-index: -1;
  top: -16%;
  right: -20%;
  width: 75%;
  aspect-ratio: 1;
  background: var(--acid);
  border-radius: 50%;
  content: "";
  filter: blur(70px);
  opacity: 0.16;
}

.stage-topline,
.stage-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.stage-live {
  display: flex;
  align-items: center;
  gap: 7px;
}

.stage-live i {
  width: 6px;
  height: 6px;
  background: var(--acid);
  border-radius: 50%;
}

.prompt-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  margin-top: clamp(45px, 7vh, 75px);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.prompt-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 11px;
}

.prompt-label,
.result-kicker {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.prompt-text {
  max-width: 360px;
  font-size: clamp(17px, 1.45vw, 22px);
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.workflow-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 56px;
}

.workflow-line span {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  animation: workflowPulse 1.8s ease-in-out infinite;
}

.workflow-line span:nth-child(2) { animation-delay: 0.15s; }
.workflow-line span:nth-child(3) { animation-delay: 0.3s; }
.workflow-line span:nth-child(4) { animation-delay: 0.45s; }

@keyframes workflowPulse {
  40% { background: var(--acid); transform: scale(1.4); }
}

.agent-card {
  width: 82%;
  margin-left: auto;
  padding: 18px;
  color: var(--ink);
  background: var(--white);
  border-radius: 15px;
  transform: rotate(-1.4deg);
}

.agent-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.agent-orb {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

.agent-time {
  margin-left: auto;
  color: var(--muted);
}

.agent-card ol {
  list-style: none;
}

.agent-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 2px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.agent-card li:last-child {
  border-bottom: 0;
}

.agent-card li.is-done b {
  color: #4c8430;
}

.agent-card li.is-active {
  color: var(--ink);
  font-weight: 700;
}

.typing-dots {
  letter-spacing: 3px;
  animation: blink 1.2s steps(2) infinite;
}

@keyframes blink { 50% { opacity: 0.2; } }

.result-card {
  position: absolute;
  right: 24px;
  bottom: 61px;
  left: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 5px 18px;
  padding: 19px 20px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 14px;
}

.result-card .result-kicker {
  grid-column: 1 / -1;
  color: rgba(17, 18, 16, 0.54);
}

.result-card strong {
  font-size: 19px;
  letter-spacing: -0.03em;
}

.result-pill {
  padding: 5px 8px;
  border: 1px solid rgba(17, 18, 16, 0.35);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.stage-caption {
  position: absolute;
  right: 24px;
  bottom: 25px;
  left: 24px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--ink);
  background: var(--acid);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 13px 0;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  animation: ticker 26s linear infinite;
  will-change: transform;
}

.ticker-group {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
  min-width: 100vw;
  padding-right: 32px;
  white-space: nowrap;
}

.ticker-group i {
  font-style: normal;
}

@keyframes ticker {
  to { transform: translate3d(-50%, 0, 0); }
}

.manifesto,
.curriculum,
.teams,
.day-plan,
.faq {
  padding-block: clamp(84px, 9vw, 140px);
}

#workshop,
#curriculum,
#dates,
#teams {
  scroll-margin-top: 88px;
}

.manifesto,
.curriculum,
.teams,
.day-plan {
  border-bottom: 1px solid var(--line);
}

.section-marker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(50px, 7vw, 96px);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.13em;
}

.section-marker span:first-child {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid currentColor;
  border-radius: 50%;
  letter-spacing: 0;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(50px, 9vw, 150px);
  align-items: start;
}

.display-title {
  font-size: clamp(48px, 6.5vw, 98px);
  font-weight: 730;
  letter-spacing: -0.066em;
  line-height: 0.96;
}

.manifesto-copy {
  padding-top: 0.5vw;
}

.manifesto-copy p:first-child {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.manifesto-copy p + p {
  margin-top: 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(80px, 10vw, 150px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-card {
  position: relative;
  min-height: 290px;
  padding: 30px;
}

.principle-card + .principle-card {
  border-left: 1px solid var(--line);
}

.principle-icon {
  position: absolute;
  top: 22px;
  right: 25px;
  color: var(--orange);
  font-size: 29px;
}

.principle-index,
.corporate-number {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.principle-card h3 {
  max-width: 260px;
  margin-top: 72px;
  font-size: clamp(22px, 2vw, 29px);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.principle-card > p:last-child {
  max-width: 330px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.outcome-grid {
  margin-top: clamp(55px, 7vw, 95px);
}

.outcome-grid .principle-card {
  min-height: 330px;
}

.outcome-grid .principle-card h3 {
  margin-top: 55px;
}

.outcome-grid .principle-card h3 + p {
  max-width: 330px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.use-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 28px;
}

.use-case-tags span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.curriculum {
  position: relative;
}

.curriculum-heading,
.dates-heading,
.teams-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(50px, 9vw, 150px);
  align-items: end;
}

.section-intro {
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 21px);
  letter-spacing: -0.02em;
  line-height: 1.6;
}

.module-list {
  margin-top: clamp(70px, 9vw, 130px);
  border-top: 1px solid var(--ink);
}

.module-row {
  display: grid;
  grid-template-columns: 55px minmax(200px, 0.65fr) minmax(300px, 1fr) 105px;
  gap: 25px;
  align-items: center;
  min-height: 122px;
  padding: 22px 10px;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, padding 180ms ease;
}

.module-row:hover {
  padding-inline: 20px;
  background: rgba(255, 255, 255, 0.46);
}

.module-number {
  font-family: var(--font-mono);
  font-size: 10px;
}

.module-row h3 {
  font-size: clamp(21px, 2vw, 29px);
  letter-spacing: -0.04em;
}

.module-row p {
  max-width: 600px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.module-tag,
.label-chip {
  justify-self: end;
  padding: 6px 9px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.module-row:nth-child(2n) .module-tag {
  background: var(--blue);
}

.module-row:nth-child(3n) .module-tag {
  background: #ffc7b6;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: clamp(55px, 7vw, 95px);
}

.program-card {
  min-height: 235px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  background: rgba(247, 244, 237, 0.42);
  border-radius: var(--radius-md);
}

.program-card > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--orange-on-light);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 800;
}

.program-card h3 {
  max-width: 310px;
  margin-top: 42px;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.program-card p {
  max-width: 350px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.programme-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 12px;
}

.programme-note > span:first-child {
  display: grid;
  flex: 0 0 27px;
  place-items: center;
  width: 27px;
  height: 27px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 50%;
  font-weight: 800;
}

.dates {
  width: min(1500px, calc(100vw - 24px));
  margin-block: 12px;
  padding: clamp(64px, 8vw, 120px) clamp(24px, 4vw, 70px);
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
}

.dates .section-intro {
  color: rgba(255, 255, 255, 0.6);
}

.session-list {
  margin-top: clamp(60px, 8vw, 110px);
  border-top: 1px solid var(--line-light);
}

.session-card {
  display: grid;
  grid-template-columns: 130px minmax(300px, 1fr) 125px auto;
  gap: 34px;
  align-items: center;
  min-height: 190px;
  padding: 28px 5px;
  border-bottom: 1px solid var(--line-light);
}

.date-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 8px;
  align-items: end;
}

.date-day {
  grid-row: 1 / 3;
  font-size: 65px;
  font-weight: 720;
  letter-spacing: -0.08em;
  line-height: 0.82;
}

.date-month,
.date-year {
  font-family: var(--font-mono);
  font-size: 9px;
  line-height: 1;
}

.date-month {
  color: var(--acid);
  font-weight: 800;
}

.date-year {
  color: rgba(255, 255, 255, 0.5);
}

.session-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 16px;
}

.session-labels .label-chip {
  justify-self: auto;
}

.label-chip-outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: transparent;
}

.session-main h3 {
  font-size: clamp(22px, 2.2vw, 33px);
  letter-spacing: -0.045em;
}

.session-main > p {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.session-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.session-price span,
.session-price small {
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.05em;
}

.session-price strong {
  margin-block: 2px;
  font-size: 31px;
  letter-spacing: -0.05em;
}

.session-card .button {
  min-width: 188px;
}

.included-grid {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 60px;
  margin-top: 60px;
  padding-top: 40px;
}

.included-heading {
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.included-grid ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 40px;
  list-style: none;
}

.included-grid li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.69);
  font-size: 13px;
}

.included-grid li span:first-child {
  color: var(--acid);
  font-weight: 900;
}

.corporate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: clamp(70px, 9vw, 130px);
}

.corporate-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 650px;
  padding: clamp(30px, 4vw, 58px);
  border-radius: var(--radius-lg);
}

.corporate-card-light {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(28, 25, 17, 0.06);
}

.corporate-card-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 95% 5%, rgba(127, 168, 255, 0.28), transparent 38%),
    var(--ink);
}

.corporate-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.label-chip-inverse {
  color: var(--ink);
  background: var(--white);
}

.corporate-card-dark .corporate-number {
  color: rgba(255, 255, 255, 0.5);
}

.corporate-kicker {
  margin-bottom: 18px;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.corporate-card-light .corporate-kicker {
  color: var(--orange-on-light);
}

.corporate-card-dark .corporate-kicker {
  color: var(--acid);
}

.corporate-card h3 {
  max-width: 590px;
  font-size: clamp(36px, 4.2vw, 64px);
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.corporate-card > div:nth-child(2) > p:last-child {
  max-width: 550px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.corporate-card-dark > div:nth-child(2) > p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

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

.corporate-card-dark .corporate-facts {
  border-color: var(--line-light);
}

.corporate-facts div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.corporate-card-dark .corporate-facts div {
  border-color: var(--line-light);
}

.corporate-facts dt {
  color: var(--muted);
}

.corporate-card-dark .corporate-facts dt {
  color: rgba(255, 255, 255, 0.5);
}

.corporate-facts dd {
  text-align: right;
  font-weight: 650;
}

.corporate-card > .button {
  width: 100%;
  margin-top: 34px;
}

.team-offer-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(45px, 7vw, 110px);
  margin-top: clamp(55px, 7vw, 95px);
  padding: clamp(30px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 95% 0, rgba(127, 168, 255, 0.2), transparent 35%),
    var(--ink);
  border-radius: var(--radius-lg);
}

.team-offer-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.team-offer-main .corporate-kicker {
  color: var(--acid);
}

.team-offer-main h3 {
  max-width: 650px;
  font-size: clamp(38px, 5vw, 72px);
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.team-offer-main > p:nth-of-type(2) {
  max-width: 650px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.72;
}

.team-offer-card .corporate-facts {
  width: 100%;
  margin-top: 42px;
  border-color: var(--line-light);
}

.team-offer-card .corporate-facts div {
  border-color: var(--line-light);
}

.team-offer-card .corporate-facts dt {
  color: rgba(255, 255, 255, 0.48);
}

.team-offer-main > .button {
  width: 100%;
  margin-top: 30px;
}

.team-formats {
  align-self: stretch;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  border-radius: var(--radius-md);
}

.team-formats-label {
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.team-formats ol {
  margin-top: 20px;
  list-style: none;
}

.team-formats li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.team-formats li > span {
  padding-top: 3px;
  color: var(--acid);
  font-family: var(--font-mono);
  font-size: 8px;
}

.team-formats strong {
  display: block;
  font-size: 16px;
  letter-spacing: -0.025em;
}

.team-formats li p {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.6;
}

.team-takeaway {
  display: flex;
  gap: 11px;
  margin-top: 13px;
  padding: 17px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 12px;
}

.team-takeaway > span {
  font-weight: 900;
}

.team-takeaway p {
  font-size: 11px;
  font-weight: 650;
  line-height: 1.55;
}

.day-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(70px, 12vw, 180px);
}

.day-copy .section-intro {
  margin-top: 32px;
}

.requirements {
  margin-top: 60px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-md);
}

.requirements-title {
  margin-bottom: 17px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.requirements ul {
  display: grid;
  gap: 11px;
  padding-left: 19px;
  font-size: 13px;
}

.requirements li::marker {
  color: var(--orange);
}

.requirements-note {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.timeline {
  list-style: none;
  border-top: 1px solid var(--ink);
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 25px;
  min-height: 112px;
  padding: 28px 15px;
  border-bottom: 1px solid var(--line);
}

.timeline li::before {
  position: absolute;
  top: 35px;
  right: 6px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.timeline time {
  padding-top: 2px;
  font-family: var(--font-mono);
  font-size: 11px;
}

.timeline div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.timeline strong {
  font-size: 20px;
  letter-spacing: -0.03em;
}

.timeline span {
  color: var(--muted);
  font-size: 13px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: clamp(70px, 12vw, 180px);
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 26px 5px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 620;
  letter-spacing: -0.025em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details > p {
  max-width: 720px;
  padding: 0 55px 28px 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.closing {
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
  padding: clamp(90px, 12vw, 180px) 40px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
  text-align: center;
  isolation: isolate;
}

.closing-orb {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: min(55vw, 760px);
  aspect-ratio: 1;
  background: var(--orange);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
  transform: translate(-50%, -50%);
}

.closing-kicker {
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.13em;
}

.closing h2 {
  font-size: clamp(76px, 15vw, 220px);
  font-weight: 740;
  letter-spacing: -0.085em;
  line-height: 0.72;
}

.closing h2 span,
.closing h2 em {
  display: block;
}

.closing h2 em {
  margin-top: 0.18em;
  color: var(--acid);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.84em;
  font-weight: 400;
}

.closing-actions {
  justify-content: center;
  margin-top: 70px;
}

.mobile-conversion-bar {
  display: none;
}

.site-footer {
  width: var(--shell);
  margin: 0 auto;
  padding: 60px 0 28px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding-bottom: 50px;
}

.brand-footer .brand-mark {
  color: var(--ink);
  background: var(--acid);
}

.footer-main > p {
  justify-self: center;
  color: var(--muted);
  font-size: 13px;
}

.footer-top {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  justify-self: end;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.07em;
}

.footer-bottom > span:last-child {
  justify-self: end;
}

.footer-bottom > div {
  display: flex;
  gap: 20px;
}

.footer-bottom button {
  min-height: 40px;
  padding: 8px 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.footer-bottom button:hover {
  color: var(--ink);
}

.modal {
  width: min(1060px, calc(100vw - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  overflow: visible;
  border: 0;
  color: var(--ink);
  background: transparent;
}

.modal::backdrop {
  background: rgba(12, 13, 11, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal[open] {
  animation: modalIn 220ms ease both;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
}

.modal-panel {
  position: relative;
  max-height: calc(100svh - 32px);
  overflow: auto;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(216, 210, 197, 0.88);
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}

.application-layout {
  display: grid;
  grid-template-columns: 0.87fr 1.13fr;
  min-height: 670px;
}

.application-summary {
  padding: clamp(40px, 5vw, 70px);
  color: var(--white);
  background:
    radial-gradient(circle at 10% 90%, rgba(215, 255, 69, 0.21), transparent 44%),
    var(--ink);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.modal-kicker {
  margin-bottom: 22px;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.application-summary h2,
.application-success h2,
.text-modal h2,
.consent-modal h2 {
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 720;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.application-summary > p:nth-of-type(2) {
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.7;
}

.selected-offer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 75px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
}

.selected-offer > span {
  color: var(--acid);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.selected-offer strong {
  font-size: 17px;
  letter-spacing: -0.025em;
}

.selected-offer small {
  color: rgba(255, 255, 255, 0.55);
}

.application-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: clamp(48px, 6vw, 84px);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field > span {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(17, 18, 16, 0.08);
}

.field input[aria-invalid="true"] {
  border-color: #b3261e;
}

.field-error {
  min-height: 0;
  color: #a21c15;
  font-size: 11px;
}

.field-error:empty {
  display: none;
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.consent-field input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  accent-color: var(--ink);
}

.consent-field button {
  display: inline-block;
  min-height: 44px;
  margin-block: -8px;
  padding: 8px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: inherit;
  text-decoration: underline;
}

.form-status {
  display: none;
  padding: 11px 13px;
  border-radius: 8px;
  font-size: 12px;
}

.form-status.is-error {
  display: block;
  color: #81120e;
  background: #ffe3df;
}

.submit-application {
  width: 100%;
}

.submit-application.is-loading {
  pointer-events: none;
  opacity: 0.75;
}

.submit-spinner {
  display: none;
  width: 17px;
  height: 17px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

.is-loading .submit-arrow {
  display: none;
}

.is-loading .submit-spinner {
  display: block;
}

@keyframes spin { to { transform: rotate(1turn); } }

.form-note {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
  text-align: center;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.application-success {
  grid-column: 1 / -1;
  align-self: center;
  width: min(600px, 100%);
  margin: auto;
  padding: 80px 50px;
  text-align: center;
}

.application-success[hidden] {
  display: none;
}

.success-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 32px;
  background: var(--acid);
  border-radius: 50%;
  font-size: 27px;
}

.application-success > p:not(.modal-kicker, .reference-line) {
  margin-top: 25px;
  color: var(--muted);
  line-height: 1.7;
}

.application-success .modal-kicker,
.text-modal .modal-kicker,
.consent-modal .modal-kicker {
  color: var(--orange-on-light);
}

.reference-line {
  display: inline-flex;
  gap: 8px;
  margin: 25px 0;
  padding: 8px 12px;
  background: var(--paper-deep);
  border-radius: 7px;
  font-family: var(--font-mono);
  font-size: 9px;
}

.application-success .button {
  min-width: 170px;
}

.text-modal,
.consent-modal {
  width: min(760px, calc(100vw - 32px));
}

.text-modal .modal-panel,
.consent-modal .modal-panel {
  padding: clamp(42px, 7vw, 80px);
}

.legal-copy {
  margin-top: 42px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.legal-copy[hidden] {
  display: none;
}

.legal-copy h3 {
  margin: 28px 0 6px;
  color: var(--ink);
  font-size: 15px;
}

.legal-copy h3:first-child {
  margin-top: 0;
}

.legal-copy p + p {
  margin-top: 14px;
}

.legal-warning {
  padding: 14px;
  border: 1px solid #d59b44;
  color: #6b470d;
  background: #fff1d4;
  border-radius: 8px;
}

.cookie-banner {
  position: fixed;
  z-index: 900;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 35px;
  align-items: end;
  max-width: 1060px;
  margin: auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(17, 18, 16, 0.97);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-kicker {
  margin-bottom: 7px;
  color: var(--acid);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.cookie-banner h2 {
  font-size: 20px;
  letter-spacing: -0.035em;
}

.cookie-banner p:last-child {
  max-width: 660px;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions .button {
  min-height: 44px;
  padding: 10px 14px;
  font-size: 11px;
}

.cookie-actions .button-quiet {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.cookie-actions .button-dark {
  color: var(--ink);
  background: var(--acid);
}

.consent-modal .modal-panel > p:nth-of-type(2) {
  max-width: 580px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

#consent-form {
  margin-top: 40px;
}

.consent-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 5px;
  border-top: 1px solid var(--line);
  cursor: pointer;
}

.consent-option span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.consent-option strong {
  font-size: 14px;
}

.consent-option small {
  color: var(--muted);
  font-size: 11px;
}

.consent-option input {
  width: 20px;
  height: 20px;
  accent-color: var(--ink);
}

.consent-option.is-locked {
  cursor: default;
}

.consent-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.page-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
}

.learning-snapshot .snapshot-code {
  margin-top: clamp(55px, 8vh, 95px);
  color: var(--acid);
  font-family: var(--font-mono);
  font-size: clamp(70px, 8vw, 118px);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.75;
}

.learning-snapshot .snapshot-divider {
  margin-block: clamp(38px, 6vh, 60px) 28px;
}

.learning-snapshot h2 {
  max-width: 560px;
}

.session-market {
  padding-block: clamp(48px, 6vw, 82px);
}

.dates-compact-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 35px;
  border-bottom: 1px solid var(--line-light);
}

.compact-marker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.compact-marker > span:first-child {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid currentColor;
  border-radius: 50%;
  letter-spacing: 0;
}

.dates-compact-header h2 {
  font-size: clamp(34px, 4.5vw, 62px);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.dates-compact-header > p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.format-group {
  margin-top: 42px;
}

.format-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 17px;
}

.format-heading h3 {
  font-size: 20px;
  letter-spacing: -0.035em;
}

.format-heading > span {
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.session-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.session-option-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: clamp(22px, 2.5vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(127, 168, 255, 0.08), transparent 32%),
    rgba(255, 255, 255, 0.035);
  border-radius: var(--radius-md);
}

.session-option-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.session-option-top .session-labels {
  margin-bottom: 0;
}

.capacity-badge {
  padding: 6px 9px;
  border: 1px solid rgba(215, 255, 69, 0.38);
  color: var(--acid);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.session-option-date {
  display: flex;
  align-items: flex-end;
  gap: 11px;
  margin-top: 30px;
}

.session-option-date > strong {
  color: var(--acid);
  font-size: 68px;
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.session-option-date > div {
  display: flex;
  flex-direction: column;
  padding-bottom: 2px;
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.15;
}

.session-option-date > div span {
  color: var(--orange);
  font-weight: 800;
}

.session-option-date small {
  color: rgba(255, 255, 255, 0.4);
  margin-top: 3px;
  font-size: 9px;
}

.session-option-card > h3 {
  margin-top: 28px;
  font-size: clamp(23px, 2.5vw, 34px);
  letter-spacing: -0.045em;
}

.session-time,
.session-location {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.session-time {
  margin-top: 9px;
}

.session-location {
  margin-top: 4px;
}

.session-option-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-top: auto;
  padding-top: 28px;
}

.session-option-footer .button {
  min-width: 170px;
}

.online-format {
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
}

.virtual-session-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr) auto;
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  min-height: 0;
  background:
    radial-gradient(circle at 5% 100%, rgba(215, 255, 69, 0.1), transparent 36%),
    rgba(255, 255, 255, 0.045);
}

.virtual-session-copy .session-labels {
  align-items: center;
}

.virtual-session-copy .capacity-badge {
  margin-left: auto;
}

.virtual-session-copy h3 {
  margin-top: 28px;
  font-size: clamp(28px, 3.4vw, 48px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.virtual-session-copy > p {
  max-width: 610px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.65;
}

.virtual-dates {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}

.virtual-dates > div {
  display: flex;
  flex-direction: column;
}

.virtual-dates strong {
  color: var(--acid);
  font-size: 52px;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.virtual-dates span,
.virtual-dates small {
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.virtual-dates > i {
  color: var(--orange);
  font-style: normal;
}

.virtual-dates small {
  grid-column: 1 / -1;
  padding-top: 7px;
}

.virtual-session-action {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 22px;
  min-width: 210px;
}

.belief-section {
  padding-bottom: clamp(84px, 9vw, 140px);
}

.belief-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(55px, 7vw, 90px);
  border-block: 1px solid var(--line);
}

.belief-facts > div {
  min-height: 210px;
  padding: 28px;
}

.belief-facts > div + div {
  border-left: 1px solid var(--line);
}

.belief-facts span {
  display: block;
  margin-bottom: 48px;
  color: var(--orange-on-light);
  font-family: var(--font-mono);
  font-size: 8px;
}

.belief-facts strong {
  display: block;
  font-size: 23px;
  letter-spacing: -0.035em;
}

.belief-facts p {
  max-width: 360px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.compact-module-list {
  margin-top: clamp(55px, 7vw, 90px);
}

.compact-module-list .module-row {
  min-height: 98px;
  padding-block: 18px;
}

.compact-module-list .module-row h3 {
  font-size: clamp(19px, 1.8vw, 26px);
}

.private-bookings {
  padding-block: clamp(84px, 9vw, 140px);
}

.private-booking-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: clamp(45px, 8vw, 120px);
  padding: clamp(34px, 6vw, 82px);
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(127, 168, 255, 0.2), transparent 36%),
    var(--ink);
  border-radius: var(--radius-lg);
}

.private-booking-card h2 {
  max-width: 760px;
  font-size: clamp(42px, 5.8vw, 84px);
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.private-booking-card > div:first-child > p:last-child {
  max-width: 670px;
  margin-top: 27px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.72;
}

.private-booking-details .corporate-facts {
  border-color: var(--line-light);
}

.private-booking-details .corporate-facts div {
  border-color: var(--line-light);
}

.private-booking-details .corporate-facts dt {
  color: rgba(255, 255, 255, 0.48);
}

.private-booking-details .button {
  width: 100%;
  margin-top: 28px;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
    gap: 45px;
  }

  .hero-stage {
    min-height: 650px;
  }

  .session-card {
    grid-template-columns: 105px 1fr 105px;
  }

  .session-card .button {
    grid-column: 2 / -1;
    width: max-content;
    min-width: 220px;
  }
}

@media (max-width: 940px) {
  :root {
    --shell: min(100% - 32px, 900px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 18px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

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

  .hero-stage {
    width: min(700px, 100%);
    min-height: 690px;
    margin-left: auto;
  }

  .workshop-snapshot {
    width: min(720px, 100%);
    min-height: 590px;
    margin-left: auto;
  }

  .manifesto-grid,
  .curriculum-heading,
  .dates-heading,
  .teams-heading,
  .day-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .manifesto-copy {
    max-width: 640px;
  }

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

  .principle-card {
    min-height: 250px;
  }

  .principle-card + .principle-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .module-row {
    grid-template-columns: 45px minmax(180px, 0.7fr) 1fr;
  }

  .module-tag {
    display: none;
  }

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

  .session-card {
    grid-template-columns: 105px 1fr;
  }

  .session-price {
    grid-column: 2;
  }

  .session-card .button {
    grid-column: 2;
  }

  .included-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .corporate-card {
    min-height: 600px;
  }

  .team-offer-card {
    grid-template-columns: 1fr;
  }

  .day-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .day-copy .display-title {
    grid-column: 1 / -1;
  }

  .day-copy .section-intro,
  .requirements {
    margin-top: 0;
  }

  .application-layout {
    grid-template-columns: 1fr;
  }

  .application-summary {
    min-height: auto;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .selected-offer {
    margin-top: 38px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cookie-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: calc(100% - 24px);
    --radius-lg: 24px;
  }

  .site-header {
    min-height: 64px;
  }

  .brand-index {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-block: 48px 70px;
  }

  .status-pill {
    margin-bottom: 34px;
  }

  .hero h1 {
    font-size: clamp(58px, 17vw, 86px);
    line-height: 0.88;
  }

  .hero-intro {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .hero-facts div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-stage {
    min-height: 590px;
    padding: 18px;
  }

  .prompt-card {
    grid-template-columns: 44px 1fr;
    margin-top: 45px;
    padding: 16px;
  }

  .prompt-number {
    width: 40px;
    height: 40px;
  }

  .agent-card {
    width: 92%;
  }

  .result-card {
    right: 18px;
    bottom: 53px;
    left: 18px;
    grid-template-columns: 1fr;
  }

  .result-pill {
    justify-self: start;
  }

  .stage-caption {
    right: 18px;
    bottom: 20px;
    left: 18px;
  }

  .manifesto,
  .curriculum,
  .teams,
  .day-plan,
  .faq {
    padding-block: 90px;
  }

  .section-marker {
    margin-bottom: 44px;
  }

  .display-title {
    font-size: clamp(44px, 13vw, 68px);
  }

  .principle-grid {
    margin-top: 65px;
  }

  .principle-card {
    min-height: 230px;
    padding: 25px 18px;
  }

  .module-list {
    margin-top: 60px;
  }

  .module-row {
    grid-template-columns: 36px 1fr;
    gap: 12px;
    padding-block: 24px;
  }

  .module-row p {
    grid-column: 2;
  }

  .module-row:hover {
    padding-inline: 10px;
  }

  .dates {
    width: calc(100vw - 12px);
    padding: 70px 18px;
  }

  .session-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 36px;
  }

  .date-block {
    width: max-content;
  }

  .session-price,
  .session-card .button {
    grid-column: 1;
  }

  .session-card .button {
    width: 100%;
  }

  .included-grid ul {
    grid-template-columns: 1fr;
  }

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

  .corporate-card {
    min-height: 610px;
    padding: 28px 22px;
  }

  .corporate-card h3 {
    font-size: 41px;
  }

  .day-copy {
    grid-template-columns: 1fr;
  }

  .day-copy .display-title {
    grid-column: 1;
  }

  .day-copy .section-intro {
    margin-top: 10px;
  }

  .requirements {
    margin-top: 20px;
  }

  .timeline li {
    grid-template-columns: 65px 1fr;
    padding-inline: 5px;
  }

  .timeline li::before {
    display: none;
  }

  .closing {
    padding: 85px 18px;
  }

  .closing h2 {
    font-size: clamp(74px, 23vw, 120px);
  }

  .closing-actions {
    flex-direction: column;
    margin-top: 55px;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-main > p,
  .footer-top,
  .footer-bottom > span:last-child {
    justify-self: start;
  }

  .footer-bottom > div {
    flex-wrap: wrap;
  }

  .modal {
    width: calc(100vw - 12px);
    max-height: calc(100svh - 12px);
  }

  .modal-panel {
    max-height: calc(100svh - 12px);
  }

  .application-summary,
  .application-form {
    padding: 52px 24px 36px;
  }

  .application-form {
    padding-top: 40px;
  }

  .text-modal .modal-panel,
  .consent-modal .modal-panel {
    padding: 58px 24px 34px;
  }

  .cookie-banner {
    right: 6px;
    bottom: 6px;
    left: 6px;
    padding: 20px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-actions .button:last-child {
    grid-column: 1 / -1;
  }

  .consent-buttons {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .site-header {
    padding-inline: 12px;
  }

  .language-switcher {
    gap: 0;
    padding: 1px 4px;
  }

  .language-option {
    min-width: 44px;
    min-height: 44px;
  }

  .hero {
    gap: 30px;
    padding-block: 38px 52px;
  }

  .status-pill {
    max-width: 100%;
    margin-bottom: 26px;
    font-size: 8px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 68px);
    line-height: 0.9;
  }

  .hero-intro {
    margin-top: 26px;
    font-size: 16px;
    line-height: 1.52;
  }

  .hero-proof {
    font-size: 12px;
  }

  .hero-actions {
    margin-top: 25px;
  }

  .hero-facts {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 30px;
  }

  .hero-facts div {
    padding: 13px 7px 13px 0;
  }

  .hero-facts div + div {
    padding-left: 10px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .hero-facts dt {
    font-size: 7px;
  }

  .hero-facts dd {
    font-size: 11px;
    line-height: 1.35;
  }

  .hero-facts dd span {
    display: block;
    font-size: 8px;
  }

  .workshop-snapshot {
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 22px;
  }

  .snapshot-topline {
    font-size: 7px;
  }

  .snapshot-date {
    gap: 17px;
    margin-top: 31px;
  }

  .snapshot-day {
    font-size: 66px;
  }

  .snapshot-date strong {
    font-size: 18px;
  }

  .snapshot-date div span {
    font-size: 9px;
  }

  .snapshot-divider {
    margin-block: 26px 20px;
  }

  .workshop-snapshot h2 {
    font-size: 23px;
  }

  .snapshot-outcomes li {
    padding-block: 9px;
  }

  .snapshot-outcomes li strong {
    font-size: 11px;
  }

  .workshop-snapshot .button {
    margin-top: 24px;
  }

  .ticker-track {
    animation-duration: 22s;
  }

  .ticker-group {
    gap: 24px;
    padding-right: 24px;
  }

  .manifesto,
  .curriculum,
  .teams,
  .faq {
    padding-block: 72px;
  }

  .section-marker {
    margin-bottom: 36px;
  }

  .display-title {
    font-size: clamp(41px, 12vw, 58px);
  }

  .manifesto-grid,
  .curriculum-heading,
  .dates-heading,
  .teams-heading,
  .faq-grid {
    gap: 26px;
  }

  .outcome-grid {
    margin-top: 48px;
  }

  .outcome-grid .principle-card {
    min-height: 0;
    padding: 24px 18px 28px;
  }

  .outcome-grid .principle-card h3 {
    margin-top: 44px;
  }

  .program-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 46px;
  }

  .program-card {
    min-height: 0;
    padding: 22px;
  }

  .program-card h3 {
    margin-top: 25px;
    font-size: 23px;
  }

  .programme-note {
    align-items: flex-start;
  }

  .dates {
    padding: 58px 16px;
  }

  .session-list {
    margin-top: 42px;
  }

  .session-card {
    gap: 18px;
    padding-block: 29px;
  }

  .included-grid {
    margin-top: 42px;
    padding-top: 26px;
  }

  .team-offer-card {
    gap: 34px;
    margin-top: 46px;
    padding: 24px 18px;
  }

  .team-offer-main h3 {
    font-size: 39px;
  }

  .team-offer-main > p:nth-of-type(2) {
    margin-top: 20px;
    font-size: 14px;
  }

  .team-offer-card .corporate-facts {
    margin-top: 30px;
  }

  .team-formats {
    padding: 20px 16px;
  }

  .team-formats li {
    padding-block: 18px;
  }

  .faq-list summary {
    min-height: 62px;
    padding-block: 18px;
  }

  .closing {
    padding: 72px 18px;
  }

  .closing h2 {
    font-size: clamp(62px, 19vw, 92px);
  }

  .closing-actions {
    margin-top: 44px;
  }

  .mobile-conversion-bar {
    position: fixed;
    z-index: 170;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    left: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 9px 9px 15px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--white);
    background: rgba(17, 18, 16, 0.97);
    border-radius: 18px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.32);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
    transition: opacity 180ms ease, transform 220ms ease;
  }

  .mobile-conversion-bar.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mobile-conversion-bar > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .mobile-conversion-bar small {
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-mono);
    font-size: 7px;
    letter-spacing: 0.08em;
  }

  .mobile-conversion-bar strong {
    font-size: 13px;
  }

  .mobile-conversion-bar .button {
    min-height: 50px;
    padding-inline: 17px;
    white-space: nowrap;
  }

  body.mobile-cta-visible .site-footer {
    padding-bottom: calc(105px + env(safe-area-inset-bottom));
  }

  .modal-close {
    top: 8px;
    right: 8px;
  }

  .application-layout {
    min-height: 0;
  }

  .application-summary {
    padding: 20px 62px 17px 18px;
  }

  .application-summary .modal-kicker,
  .application-summary > p:nth-of-type(2) {
    display: none;
  }

  .application-summary h2 {
    font-size: 24px;
    line-height: 1;
  }

  .selected-offer {
    gap: 3px;
    margin-top: 14px;
    padding: 10px 12px;
  }

  .selected-offer strong {
    font-size: 14px;
  }

  .selected-offer small {
    font-size: 10px;
  }

  .application-form {
    gap: 14px;
    padding: 22px 18px 26px;
  }

  .field {
    gap: 6px;
  }

  .field input {
    height: 52px;
    font-size: 16px;
  }

  .form-note {
    font-size: 10px;
  }

  .cookie-banner {
    gap: 12px;
    padding: 15px;
  }

  .cookie-banner h2 {
    font-size: 17px;
  }

  .cookie-banner p:last-child {
    display: none;
  }

  .cookie-actions .button {
    min-height: 46px;
  }

  .footer-bottom button {
    min-height: 44px;
  }
}

@media (max-width: 940px) {
  .virtual-session-card {
    grid-template-columns: 1fr 1fr;
  }

  .virtual-session-copy {
    grid-column: 1 / -1;
  }

  .private-booking-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .learning-snapshot .snapshot-code {
    margin-top: 38px;
    font-size: 66px;
  }

  .learning-snapshot .snapshot-divider {
    margin-block: 27px 20px;
  }

  .dates-compact-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    padding-bottom: 25px;
  }

  .compact-marker {
    margin-bottom: 14px;
  }

  .dates-compact-header h2 {
    font-size: 34px;
  }

  .format-group {
    margin-top: 33px;
  }

  .format-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .session-option-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .session-option-card {
    min-height: 320px;
    padding: 20px 17px;
  }

  .session-option-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .session-option-date {
    margin-top: 25px;
  }

  .session-option-date > strong {
    font-size: 61px;
  }

  .session-option-card > h3 {
    margin-top: 24px;
    font-size: 25px;
  }

  .session-option-footer {
    gap: 12px;
    padding-top: 23px;
  }

  .session-option-footer .button {
    min-width: 165px;
    padding-inline: 15px;
  }

  .online-format {
    padding-top: 20px;
  }

  .virtual-session-card {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    padding-block: 25px;
  }

  .virtual-session-copy {
    grid-column: 1;
  }

  .virtual-session-copy .session-labels {
    align-items: flex-start;
  }

  .virtual-session-copy .capacity-badge {
    margin-left: 0;
  }

  .virtual-session-copy h3 {
    margin-top: 24px;
    font-size: 32px;
  }

  .virtual-session-action {
    min-width: 0;
  }

  .belief-facts {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .belief-facts > div {
    min-height: 0;
    padding: 24px 18px;
  }

  .belief-facts > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .belief-facts span {
    margin-bottom: 30px;
  }

  .compact-module-list {
    margin-top: 46px;
  }

  .compact-module-list .module-row {
    min-height: 0;
  }

  .private-booking-card {
    gap: 34px;
    padding: 30px 20px;
  }

  .private-booking-card h2 {
    font-size: 40px;
  }

  .private-booking-card > div:first-child > p:last-child {
    margin-top: 21px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
