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

:root {
  --red:   #EC1E30;
  --black: #0A0A0A;
  --ink:   #1A1A1A;
  --off:   #F6F6F6;
  --g100:  #E8E8E8;
  --g200:  #CECECE;
  --g400:  #6E6E6E;
  --g600:  #3A3A3A;
  --white: #FFFFFF;
  --ff:    'IBM Plex Sans', sans-serif;
  --mono:  'IBM Plex Mono', monospace;
  --ease:  cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--ff);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.locked { overflow: hidden; }

/* ── PATH DISPLAY ─────────────────────────────── */
[data-e], [data-n] { display: none; }
body.pe [data-e]                        { display: block; }
body.pn [data-n]                        { display: block; }
body.pe span[data-e], body.pe a[data-e] { display: inline; }
body.pn span[data-n], body.pn a[data-n] { display: inline; }
/* Force-hide the opposite path regardless of other display rules */
body.pe [data-n], body.pn [data-e] { display: none !important; }

/* ── SCROLL REVEAL ────────────────────────────── */
.sr { opacity: 0; transform: translateY(20px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.sr.show { opacity: 1; transform: none; }
.sr.d1 { transition-delay: 0.08s; }
.sr.d2 { transition-delay: 0.16s; }
.sr.d3 { transition-delay: 0.24s; }
.sr.d4 { transition-delay: 0.32s; }
.sr.d5 { transition-delay: 0.40s; }

/* ══════════════════════════════════════════════
   CHOOSER SCREEN
══════════════════════════════════════════════ */
#chooser {
  position: fixed; inset: 0; z-index: 800;
  background: var(--white);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 40px 24px;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
#chooser.hide { opacity: 0; transform: scale(0.97); pointer-events: none; }

.ch-logo { margin-bottom: 52px; }
.ch-logo img { height: 36px; width: auto; display: block; }

.ch-heading {
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  font-weight: 600; letter-spacing: -0.02em;
  color: var(--black); text-align: center;
  margin-bottom: 8px;
}
.ch-sub {
  font-size: 0.88rem; font-weight: 300;
  color: var(--g400); text-align: center;
  margin-bottom: 48px; letter-spacing: 0.01em;
}

.ch-cards {
  display: flex; gap: 16px;
  width: 100%; max-width: 700px;
}
.ch-card {
  flex: 1; padding: 32px 28px;
  border: 1px solid var(--g100);
  cursor: pointer; position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
  background: var(--white);
}
.ch-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--black);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.ch-card:hover { border-color: var(--g200); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.07); }
.ch-card:hover::before { transform: scaleX(1); }
.ch-card:active { transform: translateY(-1px); }

.ch-card-icon {
  width: 40px; height: 40px; margin-bottom: 20px;
  background: var(--off);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s;
}
.ch-card:hover .ch-card-icon { background: var(--black); }
.ch-card-icon svg { width: 18px; height: 18px; color: var(--g400); transition: color 0.25s; }
.ch-card:hover .ch-card-icon svg { color: var(--white); }

.ch-card-label {
  font-family: var(--mono);
  font-size: 0.55rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px;
}
.ch-card-title {
  font-size: 1rem; font-weight: 600;
  letter-spacing: -0.01em; color: var(--black);
  margin-bottom: 10px; line-height: 1.35;
}
.ch-card-desc {
  font-size: 0.83rem; font-weight: 300;
  line-height: 1.75; color: var(--g600);
  margin-bottom: 24px;
}
.ch-card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--black); border-bottom: 1px solid var(--g200);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.ch-card:hover .ch-card-cta { color: var(--red); border-color: var(--red); }
.ch-card-cta::after { content: '→'; transition: transform 0.2s; }
.ch-card:hover .ch-card-cta::after { transform: translateX(3px); }

.ch-footer {
  margin-top: 36px;
  font-family: var(--mono);
  font-size: 0.56rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--g200); text-align: center;
}

/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 300;
  height: 60px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--g100);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 1px 24px rgba(0,0,0,0.05); }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 28px; width: auto; display: block; }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-switch {
  font-family: var(--mono);
  font-size: 0.56rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--g400); border: 1px solid var(--g100);
  padding: 7px 14px; cursor: pointer; background: none;
  transition: all 0.18s; white-space: nowrap;
}
.nav-switch:hover { border-color: var(--black); color: var(--black); }
.nav-cta {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); background: var(--black);
  padding: 9px 22px; text-decoration: none;
  border: 1.5px solid var(--black);
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.nav-cta:hover { background: var(--red); border-color: var(--red); }

/* Dark nav for new-path */
body.pn .nav {
  background: rgba(10,10,10,0.94);
  border-bottom-color: rgba(255,255,255,0.05);
}
body.pn .nav-logo img { filter: brightness(0) invert(1); }
body.pn .nav-switch { color: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.08); }
body.pn .nav-switch:hover { color: var(--white); border-color: rgba(255,255,255,0.35); }
body.pn .nav-cta { background: var(--red); border-color: var(--red); }
body.pn .nav-cta:hover { background: var(--white); color: var(--black); border-color: var(--white); }

/* ── PAGE WRAPPER ──────────────────────────────── */
#page {
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  pointer-events: none;
}
#page.show { opacity: 1; transform: none; pointer-events: auto; }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  padding: 108px 56px 96px;
  min-height: 76vh;
  display: flex; align-items: center;
}
/* Existing — white with fine grid */
.hero-e { background: var(--white); }
.hero-e::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--g100) 1px, transparent 1px),
    linear-gradient(90deg, var(--g100) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.5;
}
/* New — dark with grid */
.hero-n {
  background: #0C0C0C;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px, 16px 16px, 16px 16px;
}
.hero-n::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 75% at 15% 65%, rgba(236,30,48,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1000px; margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red); margin-bottom: 28px;
}
.hero-eyebrow-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--red);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.35; transform:scale(0.6); } }

.hero-title {
  font-size: clamp(3.2rem, 6.5vw, 6.2rem);
  font-weight: 700; letter-spacing: -0.035em; line-height: 0.97;
  margin-bottom: 32px; max-width: 720px;
}
.hero-e .hero-title { color: var(--black); }
.hero-n .hero-title { color: var(--white); }
.hero-title .red { color: var(--red); }

.hero-sub {
  font-size: 1rem; font-weight: 300; line-height: 1.85;
  max-width: 480px; margin-bottom: 48px;
  letter-spacing: 0.01em;
}
.hero-e .hero-sub { color: var(--g600); }
.hero-n .hero-sub { color: rgba(255,255,255,0.72); }

.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 32px; text-decoration: none;
  border: 1.5px solid; position: relative; overflow: hidden;
  transition: color 0.25s, border-color 0.25s;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: currentColor;
  transform: translateX(-101%);
  transition: transform 0.3s var(--ease);
  z-index: 0;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary::after { content: '→'; position: relative; z-index: 1; transition: transform 0.2s; margin-left: 2px; }
.btn-primary:hover::after { transform: translateX(3px); }

.btn-red   { color: var(--white); background: var(--red); border-color: var(--red); }
.btn-red::before { background: #c9151f; }
.btn-red:hover { color: var(--white); }

.btn-dark  { color: var(--white); background: var(--black); border-color: var(--black); }
.btn-dark::before { background: var(--red); }
.btn-dark:hover { color: var(--white); border-color: var(--red); }

.btn-ghost-light {
  color: var(--black); background: transparent; border-color: var(--g200);
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 32px; text-decoration: none;
  position: relative; overflow: hidden; border-width: 1.5px; border-style: solid;
  transition: color 0.25s, border-color 0.25s;
}
.btn-ghost-light::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--black);
  transform: translateX(-101%);
  transition: transform 0.3s var(--ease);
  z-index: 0;
}
.btn-ghost-light:hover { color: var(--white); border-color: var(--black); }
.btn-ghost-light:hover::before { transform: translateX(0); }
.btn-ghost-light span { position: relative; z-index: 1; }
.btn-ghost-light::after { content: '→'; position: relative; z-index: 1; transition: transform 0.2s; margin-left: 2px; }
.btn-ghost-light:hover::after { transform: translateX(3px); }

.btn-ghost-dark {
  color: rgba(255,255,255,0.65); background: transparent; border-color: rgba(255,255,255,0.18);
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 32px; text-decoration: none;
  position: relative; overflow: hidden; border-width: 1.5px; border-style: solid;
  transition: color 0.25s, border-color 0.25s;
}
.btn-ghost-dark::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-101%);
  transition: transform 0.3s var(--ease);
  z-index: 0;
}
.btn-ghost-dark:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-ghost-dark:hover::before { transform: translateX(0); }
.btn-ghost-dark span { position: relative; z-index: 1; }
.btn-ghost-dark::after { content: '→'; position: relative; z-index: 1; transition: transform 0.2s; margin-left: 2px; }
.btn-ghost-dark:hover::after { transform: translateX(3px); }

.hero-scroll-hint {
  position: absolute; bottom: 36px; left: 56px;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 0.52rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.hero-e .hero-scroll-hint { color: var(--g200); }
.hero-n .hero-scroll-hint { color: rgba(255,255,255,0.25); }
.scroll-line {
  width: 30px; height: 1px;
  background: currentColor;
  animation: scrollpulse 2.2s ease-in-out infinite;
}
@keyframes scrollpulse { 0%,100% { width:30px; opacity:1; } 50% { width:46px; opacity:0.5; } }

/* ══════════════════════════════════════════════
   CSI PART DIVIDERS
══════════════════════════════════════════════ */
.csi-div {
  padding: 0 56px;
  background: var(--white);
}
.csi-div-row {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--g100);
  border-bottom: 1px solid var(--g100);
  padding: 11px 0;
}
.csi-div-label {
  font-family: var(--mono);
  font-size: 0.5rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--g400);
  display: flex; gap: 12px; align-items: center;
}
.csi-div-part { color: var(--red); }
.csi-div-sep { color: var(--g200); }
.csi-div-num {
  font-family: var(--mono);
  font-size: 0.5rem; font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--g200);
}
@media (max-width: 860px) {
  .csi-div { padding: 0 20px; }
}

/* ══════════════════════════════════════════════
   SPEC READY STAMP
══════════════════════════════════════════════ */
.spec-stamp {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-14deg);
  width: 150px; height: 150px;
  pointer-events: none;
  opacity: 0.22;
  z-index: 0;
}
.spec-stamp svg { width: 100%; height: 100%; }
@media (max-width: 860px) { .spec-stamp { display: none; } }

/* ══════════════════════════════════════════════
   SECTION UTILITIES
══════════════════════════════════════════════ */
.sec-eye {
  font-family: var(--mono);
  font-size: 0.56rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red); display: block; margin-bottom: 16px;
}
.sec-title {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.08;
  color: var(--black);
}
.sec-sub {
  font-size: 0.95rem; font-weight: 300; line-height: 1.8;
  color: var(--g600); max-width: 480px; margin-top: 16px;
}
.inner { max-width: 1000px; margin: 0 auto; }

/* ══════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════ */
.how {
  padding: 112px 56px;
  background: var(--white);
}
.how-hd {
  display: grid; grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 72px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--g100);
}
.how-hd-note {
  font-size: 0.82rem; font-weight: 300;
  color: var(--g400); line-height: 1.7;
  max-width: 280px; text-align: right;
}

.step-rows { position: relative; }
.step-row {
  display: grid;
  grid-template-columns: 96px 1px 1fr 1fr;
  gap: 0 48px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--g100);
  transition: background 0.2s;
}
.step-row:first-child { border-top: none; }
.step-row:hover { background: var(--off); margin: 0 -56px; padding-left: 56px; padding-right: 56px; }

.step-num {
  font-family: var(--mono);
  font-size: 2.8rem; font-weight: 400;
  color: var(--g100); letter-spacing: -0.05em; line-height: 1;
  transition: color 0.3s;
  padding-top: 4px;
}
.step-row:hover .step-num { color: var(--g200); }

.step-divider {
  background: var(--g100); width: 1px; align-self: stretch;
  min-height: 80px;
}

.step-content {}
.step-title {
  font-size: 1.05rem; font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--black); margin-bottom: 14px; line-height: 1.3;
}
.step-body {
  font-size: 0.88rem; font-weight: 300;
  line-height: 1.85; color: var(--g600);
}
.step-body strong { color: var(--black); font-weight: 500; }

.step-meta {
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-end; padding-top: 4px;
}
.step-tag {
  font-family: var(--mono);
  font-size: 0.52rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--g400);
  border: 1px solid var(--g100);
  padding: 4px 10px;
}

/* ══════════════════════════════════════════════
   BENEFITS
══════════════════════════════════════════════ */
.benefits {
  padding: 112px 56px;
  background: var(--off);
  border-top: 1px solid var(--g100);
  border-bottom: 1px solid var(--g100);
}
.benefits-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}
.benefits-hd { position: sticky; top: 88px; }
.benefits-hd .sec-sub { max-width: 260px; }

.b-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.b-card {
  background: var(--white);
  padding: 40px 36px;
  position: relative;
  transition: background 0.25s;
  cursor: default;
}
.b-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.b-card:hover { background: var(--ink); }
.b-card:hover::after { transform: scaleX(1); }

.b-icon-wrap {
  width: 40px; height: 40px; margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--g100); transition: border-color 0.25s;
}
.b-card:hover .b-icon-wrap { border-color: rgba(255,255,255,0.08); }
.b-icon { width: 18px; height: 18px; color: var(--g200); transition: color 0.25s; }
.b-card:hover .b-icon { color: var(--red); }

.b-name {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--black); margin-bottom: 12px;
  transition: color 0.25s;
}
.b-card:hover .b-name { color: var(--white); }
.b-desc {
  font-size: 0.87rem; font-weight: 300; line-height: 1.8; color: var(--ink);
  transition: color 0.25s;
}
.b-card:hover .b-desc { color: rgba(255,255,255,0.45); }

/* ══════════════════════════════════════════════
   SPEAKER / ADAM
══════════════════════════════════════════════ */
.speaker-sec {
  padding: 112px 56px;
  background: var(--white);
  border-bottom: 1px solid var(--g100);
}
.speaker-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.speaker-left {}
.speaker-photo-wrap {
  width: 100%; aspect-ratio: 3/4; max-width: 360px;
  background: var(--off);
  overflow: hidden;
  position: relative;
}
.speaker-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
  filter: grayscale(20%);
}
.speaker-photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 32px 24px 20px;
}
.speaker-photo-name {
  font-size: 0.82rem; font-weight: 600;
  color: var(--white); letter-spacing: -0.01em;
}
.speaker-photo-title {
  font-family: var(--mono);
  font-size: 0.52rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-top: 4px;
}

.speaker-right {}
.speaker-quote-mark {
  font-size: 6rem; font-weight: 700; line-height: 0.6;
  color: var(--red); margin-bottom: 28px; display: block;
  font-family: Georgia, serif;
}
.speaker-quote {
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 300; font-style: italic;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: -0.005em;
  border-left: 2px solid var(--red);
  padding-left: 28px;
}
.speaker-attr {
  padding-left: 28px;
  font-family: var(--mono);
  font-size: 0.56rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--g400);
  margin-bottom: 36px;
}
.speaker-attr span { color: var(--black); }

.speaker-body {
  font-size: 0.88rem; font-weight: 300;
  line-height: 1.85; color: var(--g600);
}
.speaker-body strong { color: var(--black); font-weight: 500; }
.speaker-body p + p { margin-top: 16px; }

/* ══════════════════════════════════════════════
   STATS
══════════════════════════════════════════════ */
.stats-sec {
  background: var(--black);
  padding: 0 56px;
  border-top: 2px solid var(--red);
}
.stats-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 60px 32px;
  border-right: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { border-right: none; padding-right: 0; }

.stat-num-wrap { display: flex; align-items: baseline; gap: 2px; margin-bottom: 12px; }
.stat-num {
  font-family: var(--mono);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem); font-weight: 400;
  color: var(--white); line-height: 1; letter-spacing: -0.04em;
}
.stat-suffix {
  font-family: var(--mono);
  font-size: clamp(1.1rem, 2vw, 1.6rem); font-weight: 400;
  color: var(--red); letter-spacing: -0.02em;
}
.stat-lbl {
  font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.55);
}

/* ══════════════════════════════════════════════
   BOOKING CTA
══════════════════════════════════════════════ */
.booking {
  padding: 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.booking-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 380px;
  position: relative; z-index: 1;
}
.booking-left {
  padding: 80px 56px 80px 0;
  border-right: 1px solid var(--g100);
  display: flex; flex-direction: column; justify-content: center;
}
.booking-eye {
  font-family: var(--mono);
  font-size: 0.56rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red); display: block; margin-bottom: 20px;
}
.booking-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; letter-spacing: -0.035em; line-height: 1.05;
  color: var(--black); margin-bottom: 12px;
}
.booking-sub {
  font-family: var(--mono);
  font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--g400); margin-bottom: 40px;
}
.btn-book {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); background: var(--red);
  padding: 15px 40px; text-decoration: none;
  border: 1.5px solid var(--red); overflow: hidden;
  position: relative; transition: color 0.25s, border-color 0.25s;
}
.btn-book::before {
  content: ''; position: absolute; inset: 0;
  background: var(--black);
  transform: translateX(-101%);
  transition: transform 0.3s var(--ease);
}
.btn-book span, .btn-book .arr { position: relative; z-index: 1; }
.btn-book .arr { transition: transform 0.2s; }
.btn-book:hover { border-color: var(--black); }
.btn-book:hover::before { transform: translateX(0); }
.btn-book:hover .arr { transform: translateX(3px); }

.booking-right {
  padding: 80px 0 80px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.booking-contact-label {
  font-family: var(--mono);
  font-size: 0.54rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--g200); margin-bottom: 24px;
}
.contact-person {
  font-size: 1.05rem; font-weight: 600;
  color: var(--black); margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.contact-detail {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 300;
  color: var(--g600); margin-bottom: 10px;
}
.contact-detail a {
  color: var(--black); text-decoration: none;
  border-bottom: 1px solid var(--g100);
  transition: color 0.18s, border-color 0.18s;
}
.contact-detail a:hover { color: var(--red); border-color: var(--red); }
.contact-icon {
  width: 14px; height: 14px;
  color: var(--g200); flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-top {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 260px auto;
  gap: 40px;
  padding: 56px 56px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.footer-brand {}
.footer-brand-link { display: inline-block; margin-bottom: 10px; }
.footer-brand-img  { height: 36px; width: auto; display: block; }
.footer-logo-t {
  display: flex; align-items: baseline; gap: 1px;
  margin-bottom: 10px;
}
.fl-a  { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.65); line-height: 1; }
.fl-d  { font-size: 1rem; font-weight: 700; color: var(--red); line-height: 1; }
.fl-dt { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.65); line-height: 1; }
.fl-y  {
  font-family: var(--mono);
  font-size: 0.34rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); vertical-align: super; margin-left: 4px;
}
.footer-tag {
  font-size: 0.82rem; font-weight: 300;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.01em;
}

.footer-links {}
.footer-links-label {
  font-family: var(--mono);
  font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 16px; display: block;
}
.footer-links ul {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
}
.footer-links a {
  font-size: 0.9rem; font-weight: 300;
  color: rgba(255,255,255,0.5); text-decoration: none;
  transition: color 0.18s;
}
.footer-links a:hover { color: var(--white); }

.footer-socials {}
.footer-socials-label {
  font-family: var(--mono);
  font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 16px; display: block;
}
.socials { display: flex; gap: 8px; }
.soc {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.55); text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 18px;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
}
.soc:hover { color: var(--white); border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); }
.soc svg { width: 18px; height: 18px; flex-shrink: 0; }

.footer-addresses {
  max-width: 1000px; margin: 0 auto;
  padding: 32px 56px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.footer-addr-region {
  font-family: var(--mono);
  font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 10px; display: block;
}
.footer-addr address {
  font-style: normal;
  font-size: 0.82rem; font-weight: 300; line-height: 1.9;
  color: rgba(255,255,255,0.38);
}
.footer-addr address a {
  color: rgba(255,255,255,0.38); text-decoration: none;
  transition: color 0.18s;
}
.footer-addr address a:hover { color: rgba(255,255,255,0.65); }

.footer-bottom {
  max-width: 1000px; margin: 0 auto;
  padding: 20px 56px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy {
  font-family: var(--mono);
  font-size: 0.52rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.12);
}
.footer-legal {
  font-size: 0.72rem; font-weight: 300;
  color: rgba(255,255,255,0.12);
}

/* ══════════════════════════════════════════════
   FLOATING CTA BAR
══════════════════════════════════════════════ */
#float-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 400;
  background: var(--black); border-top: 2px solid var(--red);
  transform: translateY(100%);
  transition: transform 0.45s var(--ease);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 64px;
  will-change: transform;
}
#float-bar.up { transform: translateY(0); }

.fb-text {
  font-size: 0.82rem; font-weight: 300;
  color: rgba(255,255,255,0.4);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.fb-text strong { color: rgba(255,255,255,0.85); font-weight: 600; }
.fb-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.fb-dismiss {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.18); line-height: 1;
  padding: 6px 4px; transition: color 0.18s; flex-shrink: 0;
  font-size: 1.1rem;
}
.fb-dismiss:hover { color: rgba(255,255,255,0.5); }
.fb-btn {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); background: var(--red);
  padding: 10px 26px; text-decoration: none; white-space: nowrap;
  transition: background 0.18s; display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer;
}
.fb-btn:hover { background: #c9151f; }
.fb-btn-arr { transition: transform 0.18s; }
.fb-btn:hover .fb-btn-arr { transform: translateX(3px); }

/* ══════════════════════════════════════════════
   PATH FLASH OVERLAY
══════════════════════════════════════════════ */
#path-flash {
  position: fixed; inset: 0; z-index: 600;
  background: var(--white); opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
#path-flash.in  { opacity: 1;  pointer-events: all; }
#path-flash.out { opacity: 0;  pointer-events: none; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 960px) {
  .benefits-layout { grid-template-columns: 1fr; gap: 40px; }
  .benefits-hd { position: static; }
  .benefits-hd .sec-sub { max-width: 560px; }
  .speaker-inner { grid-template-columns: 1fr; gap: 40px; }
  .speaker-photo-wrap { max-width: 300px; aspect-ratio: 3/4; }
  .booking-inner { grid-template-columns: 1fr; }
  .booking-left { padding: 64px 0 40px; border-right: none; border-bottom: 1px solid var(--g100); }
  .booking-right { padding: 40px 0 64px; }
  .footer-top { grid-template-columns: 1fr auto; }
}
@media (max-width: 860px) {
  /* Nav */
  .nav { padding: 0 20px; }
  .nav-switch { font-size: 0.52rem; padding: 6px 10px; max-width: 130px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  /* Chooser */
  #chooser { padding: 32px 16px; }
  .ch-cards { flex-direction: column; max-width: 420px; }
  /* Hero */
  .hero { padding: 72px 20px 72px; min-height: auto; }
  .hero-scroll-hint { display: none; }
  /* How it works */
  .how { padding: 72px 20px; }
  .how-hd { grid-template-columns: 1fr; gap: 10px; }
  .how-hd-note { text-align: left; max-width: 100%; }
  .step-row { grid-template-columns: 56px 1px 1fr; padding: 36px 0; }
  .step-row:hover { margin: 0; padding-left: 0; padding-right: 0; }
  .step-meta { display: none; }
  .step-num { font-size: 2rem; }
  /* Benefits */
  .benefits { padding: 72px 20px; }
  .b-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  /* Speaker */
  .speaker-sec { padding: 72px 20px; }
  .speaker-quote { font-size: 1.1rem; }
  /* Stats */
  .stats-sec { padding: 0 20px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 40px 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .stat-item:last-child { border-bottom: none; }
  .stat-item:first-child { padding-left: 0; }
  .stat-item:nth-child(3) { padding-left: 0; }
  /* Booking */
  .booking-inner { padding: 0 20px; max-width: 100%; }
  .booking-left { padding: 56px 0 36px; }
  .booking-right { padding: 32px 0 56px; }
  /* Footer */
  .footer-top { grid-template-columns: 1fr; padding: 40px 20px 32px; }
  .footer-addresses { grid-template-columns: 1fr; padding: 28px 20px; gap: 28px; }
  .footer-bottom { padding: 16px 20px; flex-direction: column; gap: 8px; align-items: flex-start; }
  /* Float bar */
  #float-bar { padding: 0 16px; height: 58px; }
  .fb-text { display: none; }
}
@media (max-width: 560px) {
  .hero-title { font-size: 2.9rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-ghost-light, .btn-ghost-dark { width: 100%; justify-content: center; }
  .ch-cards { max-width: 100%; }
  .b-grid { grid-template-columns: 1fr; }
  .booking-title { font-size: 2.2rem; }
}
@media (max-width: 420px) {
  .hero-title { font-size: 2.4rem; }
  .step-row { grid-template-columns: 48px 1fr; }
  .step-divider { display: none; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { padding-left: 0; padding-right: 0; }
  .sec-title { font-size: 1.75rem; }
}
