/* -------------------------------------------------------------
   TOKENS
------------------------------------------------------------- */
:root {
  /* Type scale — fluid */
  --type-display-2xl: clamp(3.5rem, 13vw, 15rem);
  --type-display-xl:  clamp(2.75rem, 9vw, 9rem);
  --type-display-lg:  clamp(2.25rem, 5.5vw, 5.5rem);
  --type-heading:     clamp(1.5rem, 3vw, 2.5rem);
  --type-subheading:  clamp(1.125rem, 1.5vw, 1.375rem);
  --type-body:        clamp(0.9375rem, 1vw, 1.0625rem);
  --type-caption:     0.8125rem;
  --type-label:       0.6875rem;

  --tracking-display: -0.045em;
  --tracking-heading: -0.025em;
  --tracking-body:    -0.008em;
  --tracking-label:    0.18em;

  --leading-display: 0.92;
  --leading-heading: 1.05;
  --leading-body:    1.6;

  /* Color primitives — Aesthetic Hub hybrid (cool, clinical, precise) */
  --primitive-white:   oklch(100% 0 0);               /* #FFFFFF — pure white */
  --primitive-cream:   oklch(96% 0.022 85);           /* #F5EDDD — warm cream tiles */
  --primitive-ink:     oklch(13% 0 0);                /* #0A0A0A — near-black */
  --primitive-ink-soft: oklch(22% 0 0);               /* #2A2A2A */
  --primitive-cyan:    oklch(80% 0.15 195);           /* #2EDCDC — Hub cyan */
  --primitive-cyan-ink: oklch(55% 0.14 200);          /* deeper cyan for text on white */
  --primitive-gold:    oklch(82% 0.16 78);            /* #F5B340 — warm accent for dark sections */
  --primitive-rust:    oklch(60% 0.20 35);

  /* Semantic */
  --color-background: var(--primitive-white);
  --color-surface:    oklch(97% 0 0);                 /* #F7F7F7 — very light gray tiles */
  --color-surface-2:  var(--primitive-cream);         /* warm cream for highlight tiles */
  --color-foreground: var(--primitive-ink);
  --color-foreground-muted: oklch(45% 0 0);           /* #6A6A6A */
  --color-foreground-subtle: oklch(62% 0 0);          /* #9A9A9A */
  --color-accent:     var(--primitive-cyan);
  --color-accent-ink: var(--primitive-cyan-ink);      /* for accent text on white */
  --color-accent-warm: var(--primitive-cyan);         /* aliased to cyan for Hub consistency */
  --color-border:     oklch(90% 0 0);                 /* #E4E4E4 */
  --color-border-subtle: oklch(94% 0 0);              /* #F0F0F0 */

  /* Spacing */
  --space-2xs: clamp(0.25rem, 0.5vw, 0.375rem);
  --space-xs:  clamp(0.5rem, 1vw, 0.75rem);
  --space-sm:  clamp(0.75rem, 1.5vw, 1.25rem);
  --space-md:  clamp(1rem, 2vw, 1.75rem);
  --space-lg:  clamp(1.75rem, 3.5vw, 3rem);
  --space-xl:  clamp(2.75rem, 5.5vw, 5.5rem);
  --space-2xl: clamp(4rem, 9vw, 11rem);
  --space-3xl: clamp(6rem, 13vw, 17rem);

  --margin: clamp(1.25rem, 4vw, 4.5rem);
  --section-padding: var(--space-2xl);

  --ease-agency: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);

  /* Fonts — Hybrid: Fraunces for editorial H1/H2, Barlow for everything else */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body:    'Barlow', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'Barlow', system-ui, sans-serif;

  /* Border radius system — Hub uses subtle rounding */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 999px;
}

[data-theme="dark"] {
  --color-background: oklch(10% 0 0);
  --color-surface:    oklch(14% 0 0);
  --color-surface-2:  oklch(18% 0 0);
  --color-foreground: oklch(98% 0 0);
  --color-foreground-muted: oklch(70% 0 0);
  --color-foreground-subtle: oklch(50% 0 0);
  --color-border:     oklch(22% 0 0);
  --color-border-subtle: oklch(16% 0 0);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--type-body);
  line-height: var(--leading-body);
  letter-spacing: var(--tracking-body);
  color: var(--color-foreground);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--color-accent); color: var(--color-foreground); }

/* -------------------------------------------------------------
   HYBRID THEME — Hub aesthetic with editorial serif for display
   Tame Fraunces ornamentation globally. Signature moments re-enable
   via explicit selectors below.
------------------------------------------------------------- */
em {
  /* Default italic: neutral, no swashes, inherits color */
  font-variation-settings: 'SOFT' 20, 'WONK' 0, 'opsz' 144;
  color: inherit;
}
/* Fraunces within em uses a cleaner italic */
h1 em, h2 em, h3 em, h4 em, .hero__claim em, .hero__subline em,
.closing__line--answer em, .closing__coda em {
  font-variation-settings: 'SOFT' 30, 'WONK' 0, 'opsz' 144;
}
/* Signature moments — italic + colored accent only for explicitly marked elements */
.closing__line--answer em {
  color: var(--color-accent-ink);
  font-variation-settings: 'SOFT' 40, 'WONK' 1, 'opsz' 144;
}

/* Grain overlay removed — clean Hub aesthetic */

/* -------------------------------------------------------------
   UTILITY
------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-mono);
  font-size: var(--type-label);
  font-weight: 400;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-foreground-muted);
}
.eyebrow__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px oklch(from var(--color-accent) l c h / 0.15);
  animation: pulse 2.4s var(--ease-agency) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px oklch(from var(--color-accent) l c h / 0.15); }
  50%      { box-shadow: 0 0 0 8px oklch(from var(--color-accent) l c h / 0.05); }
}

.rule {
  width: 100%;
  height: 1px;
  background: var(--color-border);
  border: 0;
}

/* -------------------------------------------------------------
   NAVIGATION
------------------------------------------------------------- */

/* Top context bar — Aesthetic Hub ecosystem strip (empty placeholder) */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  height: 38px;
  background: var(--primitive-ink);
}

/* Main nav — offset below topbar */
.nav {
  position: fixed;
  top: 38px; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: var(--space-sm) var(--margin);
  transition: background 0.4s var(--ease-agency), backdrop-filter 0.4s var(--ease-agency), padding 0.3s ease, top 0.3s var(--ease-agency);
}
.nav.scrolled {
  background: oklch(100% 0 0 / 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  padding-top: var(--space-xs);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--color-border);
}

.nav__brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25em;
  color: var(--color-foreground);
  transition: opacity 0.3s var(--ease-agency);
  text-decoration: none;
  line-height: 1;
}
.nav__brand:hover { opacity: 0.75; }

.nav__brand-svg {
  display: block;
  height: clamp(22px, 2.2vw, 28px);
  width: auto;
}

/* Scrolled state — slightly smaller for density */
.nav.scrolled .nav__brand-svg {
  height: clamp(20px, 2vw, 25px);
  transition: height 0.3s var(--ease-agency);
}

.nav__meta {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-foreground-muted);
}
.nav__meta-divider {
  width: 1px; height: 14px;
  background: var(--color-border);
}

.nav__cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.nav__register {
  position: relative;
  overflow: hidden;
  padding: 0.85em 1.5em;
  background: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-foreground);
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  transition: background 0.3s var(--ease-agency), border-color 0.3s var(--ease-agency), transform 0.2s var(--ease-agency);
}
.nav__register svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease-agency);
}
.nav__register::before {
  /* Sweep effect disabled for Hub clarity */
  display: none;
}
.nav__register:hover {
  background: oklch(from var(--color-accent) calc(l - 0.06) c h);
  border-color: oklch(from var(--color-accent) calc(l - 0.06) c h);
  color: var(--color-foreground);
}
.nav__register:hover svg {
  transform: translateX(3px);
}

@media (max-width: 760px) {
  .nav__meta { display: none; }
  .nav { grid-template-columns: 1fr auto; }
}

/* -------------------------------------------------------------
   HERO
------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: calc(var(--space-2xl) + 3rem) var(--margin) var(--space-xl);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: var(--space-xl);
  overflow: hidden;
}

.hero__meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-md);
  font-family: var(--font-mono);
  font-size: var(--type-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-foreground-muted);
}
.hero__meta > div {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}
.hero__meta span:first-child {
  color: var(--color-foreground-subtle);
  font-size: 0.625rem;
}
.hero__meta span:last-child {
  color: var(--color-foreground);
  font-weight: 500;
}
@media (max-width: 720px) {
  .hero__meta { grid-template-columns: 1fr 1fr; }
  .hero__meta > div:last-child { grid-column: 1 / -1; }
}

/* Wrapper for claim + subline */
.hero__claim-wrap {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
  width: 100%;
  max-width: 100%;
}

/* Main claim — The Aesthetic Innovation Summit */
.hero__claim {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8.5vw, 9.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 500;
  font-variation-settings: 'SOFT' 10, 'WONK' 0, 'opsz' 144;
  color: var(--color-foreground);
  margin: 0;
  max-width: 14ch;
}
.hero__claim .claim-line {
  display: block;
  overflow: hidden;
}
.hero__claim .claim-line span {
  display: inline-block;
  transform: translateY(110%);
  animation: reveal 1.1s var(--ease-out-expo) forwards;
}
.hero__claim .claim-line:nth-child(2) span {
  animation-delay: 0.10s;
}
.hero__claim .italic {
  font-style: italic;
  font-weight: 500;
  color: var(--color-accent);
  font-variation-settings: 'SOFT' 30, 'WONK' 1, 'opsz' 144;
  position: relative;
}
.hero__claim .italic::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.04em;
  height: 0.12em;
  background: var(--color-accent);
  z-index: -1;
  transform-origin: left center;
  animation: hero-underline 1.2s var(--ease-out-expo) 0.6s forwards;
  transform: scaleX(0);
}
.hero__claim .outlined {
  font-style: normal;
  font-weight: 500;
  color: var(--color-foreground);
  background: var(--color-accent);
  padding: 0 0.12em;
  border-radius: 2px;
  -webkit-text-stroke: 0;
  -webkit-text-fill-color: currentColor;
}
@keyframes reveal {
  to { transform: translateY(0); }
}
@keyframes hero-underline {
  to { transform: scaleX(1); }
}

/* Subline — the question, subordinate but still substantive */
.hero__subline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.3vw, 2.125rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 400;
  font-variation-settings: 'SOFT' 30, 'WONK' 0, 'opsz' 72;
  color: var(--color-foreground-muted);
  margin: 0;
  max-width: 28ch;
  padding-top: clamp(0.75rem, 1.5vw, 1.25rem);
  border-top: 1px solid var(--color-border);
}
.hero__subline .sub-line {
  display: block;
  overflow: hidden;
}
.hero__subline .sub-line span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: reveal-subline 1s var(--ease-out-expo) forwards;
}
.hero__subline .sub-line:nth-child(1) span { animation-delay: 0.4s; }
.hero__subline .sub-line:nth-child(2) span { animation-delay: 0.5s; }
.hero__subline em {
  font-style: italic;
  font-weight: 500;
  color: var(--color-foreground);
  font-variation-settings: 'SOFT' 60, 'WONK' 1, 'opsz' 72;
}
@keyframes reveal-subline {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Large numeral accent — hidden for Hub clean aesthetic */
.hero__numeral {
  display: none;
}

.hero__footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: var(--space-lg);
  position: relative;
  z-index: 2;
}

.hero__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  max-width: 34ch;
}
.hero__features li {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: var(--space-sm);
  align-items: center;
  padding: 0.6em 0;
  border-bottom: 1px solid var(--color-border-subtle);
  font-size: var(--type-subheading);
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--color-foreground);
  font-weight: 500;
}
.hero__features li:last-child { border-bottom: none; }
.hero__features-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: var(--radius-full);
  background: var(--color-accent);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0;
  color: var(--color-foreground);
  font-weight: 700;
  text-transform: none;
  padding: 0;
}
.hero__features em {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  color: var(--color-foreground);
  font-variation-settings: normal;
  padding-right: 0;
  border-bottom: 2px solid var(--color-accent);
}

.hero__scroll {
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-mono);
  font-size: var(--type-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-foreground-muted);
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-foreground) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--color-accent);
  animation: scroll-line 2.4s var(--ease-agency) infinite;
}
@keyframes scroll-line {
  0%   { top: -50%; }
  100% { top: 100%; }
}

.hero__cta-link {
  justify-self: end;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.9375rem;
  letter-spacing: -0.005em;
  text-transform: none;
  font-weight: 600;
  padding: 0.95em 1.75em;
  font-family: var(--font-body);
  background: var(--color-accent);
  color: var(--color-foreground);
  border-radius: var(--radius-sm);
  transition: background 0.3s var(--ease-agency), transform 0.2s var(--ease-agency);
}
.hero__cta-link::after {
  display: none;
}
.hero__cta-link:hover {
  background: oklch(from var(--color-accent) calc(l - 0.06) c h);
}
.hero__cta-link svg {
  width: 16px; height: 16px;
  transition: transform 0.3s var(--ease-agency);
}
.hero__cta-link:hover svg { transform: translateX(3px); }

@media (max-width: 820px) {
  .hero__footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: var(--space-lg);
  }
  .hero__scroll { justify-self: start; }
  .hero__cta-link { justify-self: start; }
}

/* -------------------------------------------------------------
   MARQUEE
------------------------------------------------------------- */
.marquee {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  background: var(--color-background);
  padding: var(--space-sm) 0;
}
.marquee__track {
  display: flex;
  gap: var(--space-2xl);
  animation: marquee 50s linear infinite;
  width: max-content;
}
.marquee__item {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-foreground);
  font-variation-settings: normal;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}
.marquee__item::after {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* -------------------------------------------------------------
   SECTION — TREND COMPASS
------------------------------------------------------------- */
.trend-compass {
  padding: var(--section-padding) var(--margin);
  position: relative;
  overflow: hidden;
}

.trend-compass__frame {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-xl);
}
.trend-compass__label {
  font-family: var(--font-mono);
  font-size: var(--type-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-foreground-muted);
}

.trend-compass__headline-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-lg);
  align-items: center;
  margin-bottom: var(--space-2xl);
}
@media (max-width: 760px) {
  .trend-compass__headline-row {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

.trend-compass__headline {
  font-family: var(--font-display);
  font-size: var(--type-display-2xl);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 500;
  font-variation-settings: 'SOFT' 10, 'opsz' 144;
  color: var(--color-foreground);
}
.trend-compass__headline .line {
  display: block;
  overflow: hidden;
}
.trend-compass__headline .line span {
  display: inline-block;
}
.trend-compass__headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--color-foreground);
  font-variation-settings: 'SOFT' 30, 'WONK' 0, 'opsz' 144;
}
.trend-compass__headline .outlined {
  -webkit-text-stroke: 0;
  -webkit-text-fill-color: currentColor;
  font-style: normal;
  font-weight: 500;
  color: var(--color-foreground);
  background: var(--color-accent);
  padding: 0 0.1em;
  border-radius: 2px;
}

.trend-compass__arrow {
  width: clamp(6rem, 10vw, 10rem);
  color: var(--color-foreground-muted);
  justify-self: end;
  animation: compass-spin 40s linear infinite;
  transform-origin: center;
}
@media (max-width: 760px) {
  .trend-compass__arrow { justify-self: start; width: 6rem; }
}
@keyframes compass-spin {
  to { transform: rotate(360deg); }
}

.trend-compass__body {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border-subtle);
}
@media (max-width: 900px) {
  .trend-compass__body {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.trend-compass__subhead {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--color-foreground);
  font-variation-settings: 'SOFT' 50, 'opsz' 144;
  max-width: 18ch;
  position: relative;
  padding-left: var(--space-md);
}
.trend-compass__subhead::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35em;
  bottom: 0.2em;
  width: 1px;
  background: var(--color-accent);
}
.trend-compass__subhead em {
  font-style: italic;
  color: var(--color-foreground);
  font-weight: 300;
  font-variation-settings: 'SOFT' 30, 'WONK' 0;
}

.trend-compass__text p {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--color-foreground-muted);
  margin-bottom: var(--space-md);
  max-width: 52ch;
}
.trend-compass__text p:last-child { margin-bottom: 0; }
.trend-compass__text strong {
  color: var(--color-foreground);
  font-weight: 500;
}
.trend-compass__text em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
  font-variation-settings: 'SOFT' 20, 'WONK' 0;
  padding-right: 0.05em;
  font-size: 1.05em;
}

/* -------------------------------------------------------------
   SECTION — BUSINESS / WHY ATTEND
------------------------------------------------------------- */
.business {
  padding: var(--section-padding) var(--margin);
  background: var(--color-foreground);
  color: var(--color-background);
  position: relative;
  overflow: hidden;
}

.business::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    oklch(from var(--color-background) l c h / 0.2) 20%,
    oklch(from var(--color-background) l c h / 0.2) 80%,
    transparent 100%
  );
}

.business__header {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  max-width: 80rem;
}

.business__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-mono);
  font-size: var(--type-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: oklch(from var(--color-background) l c h / 0.55);
}
.business__eyebrow .line-deco {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: oklch(from var(--color-background) l c h / 0.35);
}

.business__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8.5vw, 9.5rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 500;
  font-variation-settings: 'SOFT' 40, 'opsz' 144;
  color: var(--color-background);
  max-width: 16ch;
}
.business__headline em {
  font-style: italic;
  color: var(--color-accent);
  font-weight: 200;
  font-variation-settings: 'SOFT' 30, 'WONK' 0;
}
.business__underlined {
  position: relative;
  display: inline-block;
}
.business__underlined::after {
  content: '';
  position: absolute;
  bottom: 0.08em;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent);
  transform-origin: left center;
  animation: business-underline 1.4s var(--ease-out-expo) 0.6s forwards;
  transform: scaleX(0);
}
@keyframes business-underline {
  to { transform: scaleX(1); }
}

.business__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
  padding-top: var(--space-xl);
  border-top: 1px solid oklch(from var(--color-background) l c h / 0.15);
}
@media (max-width: 900px) {
  .business__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

.business__principal {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.business__lead {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.2vw, 1.875rem);
  line-height: 1.3;
  letter-spacing: -0.015em;
  font-weight: 300;
  color: var(--color-background);
  font-variation-settings: 'SOFT' 40, 'opsz' 144;
  max-width: 28ch;
}
.business__lead strong {
  font-weight: 500;
  color: var(--color-accent-warm);
}
.business__lead em {
  font-style: italic;
  color: var(--color-accent-warm);
  font-weight: 300;
  font-variation-settings: 'SOFT' 30, 'WONK' 0;
  white-space: nowrap;
}
.business__supporting,
.business__closing {
  font-size: clamp(0.9375rem, 1.1vw, 1.125rem);
  line-height: 1.6;
  color: oklch(from var(--color-background) l c h / 0.75);
  max-width: 48ch;
}
.business__closing {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.125rem, 1.4vw, 1.375rem);
  color: oklch(from var(--color-background) l c h / 0.9);
  padding-top: var(--space-sm);
  margin-top: var(--space-xs);
  border-top: 1px solid oklch(from var(--color-background) l c h / 0.15);
  font-variation-settings: 'SOFT' 80;
}

.business__pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pillar {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-top: 1px solid oklch(from var(--color-background) l c h / 0.15);
  transition: padding-left 0.4s var(--ease-agency);
}
.pillar:last-child {
  border-bottom: 1px solid oklch(from var(--color-background) l c h / 0.15);
}
.pillar:hover {
  padding-left: var(--space-xs);
}
.pillar__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: oklch(from var(--color-background) l c h / 0.45);
  padding-top: 0.3em;
}
.pillar h4 {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--color-background);
  font-variation-settings: 'SOFT' 40, 'opsz' 144;
  margin-bottom: 0.35em;
}
.pillar h4 em {
  font-style: italic;
  color: var(--color-accent-warm);
  font-weight: 300;
  font-variation-settings: 'WONK' 0;
}
.pillar p {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: oklch(from var(--color-background) l c h / 0.6);
}


/* -------------------------------------------------------------
   PROGRAM — TWO DAYS
------------------------------------------------------------- */
.program {
  padding: var(--section-padding) var(--margin);
  background: var(--color-surface);
  position: relative;
}

.program__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-md);
  align-items: baseline;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}
.program__header .section-number {
  font-family: var(--font-mono);
  font-size: var(--type-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-foreground-muted);
}
.program__header h2 {
  font-family: var(--font-display);
  font-size: var(--type-display-lg);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
  font-variation-settings: 'SOFT' 50, 'opsz' 144;
  color: var(--color-foreground);
  justify-self: center;
  text-align: center;
}
.program__header h2 em {
  font-style: italic;
  color: var(--color-foreground);
  font-variation-settings: 'SOFT' 30, 'WONK' 0;
}
.program__header .section-meta {
  font-family: var(--font-mono);
  font-size: var(--type-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-foreground-muted);
  text-align: right;
}
@media (max-width: 760px) {
  .program__header { grid-template-columns: 1fr; }
  .program__header h2 { text-align: left; justify-self: start; }
  .program__header .section-meta { text-align: left; }
}

/* Intro block */
.program__intro {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border-subtle);
  align-items: start;
}
@media (max-width: 900px) {
  .program__intro {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}
.program__subhead {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 500;
  color: var(--color-foreground);
  font-variation-settings: 'SOFT' 40, 'opsz' 144;
  max-width: 18ch;
}
.program__subhead em {
  font-style: italic;
  color: var(--color-foreground);
  font-weight: 300;
  font-variation-settings: 'SOFT' 30, 'WONK' 0;
}
.program__lede p {
  font-size: clamp(0.9375rem, 1.05vw, 1.125rem);
  line-height: 1.6;
  letter-spacing: -0.005em;
  color: var(--color-foreground-muted);
  margin-bottom: var(--space-sm);
  max-width: 56ch;
}
.program__lede p:last-child { margin-bottom: 0; }
.program__lede strong {
  color: var(--color-foreground);
  font-weight: 500;
}
.program__lede em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
  font-variation-settings: 'SOFT' 20, 'WONK' 0;
  font-size: 1.05em;
}

/* Days */
.program__days {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--color-border);
}
@media (max-width: 900px) {
  .program__days { grid-template-columns: 1fr; }
}
.day {
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: relative;
  transition: background 0.5s var(--ease-agency);
}
.day:hover { background: var(--color-surface-2); }

.day__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border-subtle);
}
.day__num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.85;
  font-weight: 200;
  letter-spacing: -0.04em;
  font-variation-settings: 'SOFT' 20, 'opsz' 144;
  color: var(--color-foreground);
  display: flex;
  align-items: baseline;
  gap: 0.08em;
}
.day__num em {
  font-size: 0.3em;
  font-style: italic;
  color: var(--color-foreground-muted);
  font-variation-settings: 'WONK' 0;
  font-weight: 300;
}
.day__date {
  font-family: var(--font-mono);
  font-size: var(--type-caption);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-foreground-muted);
  text-align: right;
}
.day__date strong {
  display: block;
  color: var(--color-foreground);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.01em;
  text-transform: none;
  font-family: var(--font-display);
  font-style: italic;
  margin-bottom: 0.15em;
}

/* Audience block */
.day__audience {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding: var(--space-sm) 0 var(--space-md);
  border-bottom: 1px solid var(--color-border-subtle);
}
.day__audience-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  font-size: var(--type-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-foreground);
  font-weight: 500;
}
.day__audience-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
}

.day__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
  font-variation-settings: 'SOFT' 40, 'opsz' 144;
  color: var(--color-foreground);
}
.day__title em {
  font-style: italic;
  color: var(--color-foreground);
  font-variation-settings: 'SOFT' 30, 'WONK' 0;
  font-weight: 300;
}
.day__focus {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--color-foreground-muted);
  max-width: 42ch;
  margin-top: var(--space-2xs);
}

/* Schedule */
.day__schedule {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-xs);
}
.session {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-top: 1px solid var(--color-border-subtle);
  transition: padding-left 0.4s var(--ease-agency), background 0.4s var(--ease-agency);
  position: relative;
}
.session:hover { padding-left: var(--space-xs); }

.session__time {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--color-foreground);
  padding-top: 0.15em;
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  font-weight: 500;
}
.session__time span {
  color: var(--color-foreground-subtle);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
}
.session__content h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--color-foreground);
  margin-bottom: 0.2em;
}
.session__content h4 em {
  font-style: italic;
  font-weight: 300;
  color: var(--color-foreground);
  font-variation-settings: 'SOFT' 20, 'WONK' 0;
}
.session__content p {
  font-size: 0.875rem;
  color: var(--color-foreground-muted);
  line-height: 1.5;
}

/* Session variants */
.session--pause .session__time::after {
  content: 'Pause';
  display: inline-block;
  margin-top: 0.4em;
  padding: 0.15em 0.5em;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-foreground-muted);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border-subtle);
  width: fit-content;
}
.session--social .session__time::after {
  content: 'Social';
  display: inline-block;
  margin-top: 0.4em;
  padding: 0.15em 0.5em;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: oklch(from var(--color-accent) l c h / 0.08);
  border: 1px solid oklch(from var(--color-accent) l c h / 0.3);
  width: fit-content;
}

/* Outro — shared core */
.program__outro {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
  text-align: center;
}
.program__outro p {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}
.program__outro-label {
  font-family: var(--font-mono);
  font-size: var(--type-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-foreground);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}
.program__outro-label::before,
.program__outro-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: oklch(from var(--color-accent) l c h / 0.4);
}
.program__outro-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  font-weight: 500;
  color: var(--color-foreground);
  font-variation-settings: 'SOFT' 40, 'opsz' 144;
  max-width: 24ch;
}
.program__outro-text em {
  font-style: italic;
  color: var(--color-foreground);
  font-weight: 300;
  font-variation-settings: 'SOFT' 30, 'WONK' 0;
}


/* -------------------------------------------------------------
   SPEAKERS
------------------------------------------------------------- */
.speakers {
  padding: var(--section-padding) var(--margin);
  position: relative;
}

.speakers__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: end;
  margin-bottom: var(--space-xl);
}
@media (max-width: 760px) {
  .speakers__header { grid-template-columns: 1fr; }
}
.speakers__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 7rem);
  line-height: var(--leading-heading);
  letter-spacing: var(--tracking-display);
  font-weight: 500;
  font-variation-settings: 'SOFT' 40, 'opsz' 144;
}
.speakers__header h2 em {
  font-style: italic;
  color: var(--color-foreground);
  font-variation-settings: 'SOFT' 30, 'WONK' 0;
  display: block;
}
.speakers__header h2 .italic {
  font-style: italic;
  font-weight: 500;
  color: var(--color-accent);
  font-variation-settings: 'SOFT' 30, 'WONK' 1, 'opsz' 144;
  position: relative;
}
.speakers__header h2 .italic::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.04em;
  height: 0.06em;
  background: var(--color-accent);
  z-index: -1;
  transform-origin: left center;
  animation: hero-underline 1.2s var(--ease-out-expo) 0.6s forwards;
  transform: scaleX(0);
}
.speakers__header .aside {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.5;
  color: var(--color-foreground-muted);
  max-width: 38ch;
  justify-self: end;
  font-weight: 300;
  font-variation-settings: 'SOFT' 80;
}
@media (max-width: 760px) {
  .speakers__header .aside { justify-self: start; }
}

.speakers__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-md);
}
@media (max-width: 900px) {
  .speakers__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .speakers__grid { grid-template-columns: 1fr; }
}

.speaker {
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-surface);
  aspect-ratio: 3/4;
}
.speaker--lg { grid-column: span 5; }
.speaker--md { grid-column: span 4; }
.speaker--sm { grid-column: span 3; }
@media (max-width: 900px) {
  .speaker--lg, .speaker--md, .speaker--sm { grid-column: span 1; }
}

.speaker__portrait {
  position: absolute;
  inset: 0;
  background-image: var(--portrait-img);
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) contrast(1.05);
  transform: scale(1.04);
  transition: transform 1.2s var(--ease-out-expo), filter 0.8s var(--ease-agency);
}
.speaker:hover .speaker__portrait {
  transform: scale(1);
  filter: grayscale(0%) contrast(1);
}

.speaker__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    oklch(15% 0.015 60 / 0.75) 0%,
    oklch(15% 0.015 60 / 0.2) 45%,
    transparent 80%
  );
  pointer-events: none;
}

.speaker__info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--space-md);
  color: oklch(95% 0.012 82);
  z-index: 2;
}
.speaker__index {
  font-family: var(--font-mono);
  font-size: var(--type-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: var(--space-xs);
}
.speaker__name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: -0.02em;
  font-variation-settings: 'SOFT' 50, 'opsz' 144;
  margin-bottom: 0.2em;
}
.speaker__name em {
  font-style: italic;
  font-weight: 300;
  font-variation-settings: 'WONK' 0;
}
.speaker__role {
  font-size: 0.8125rem;
  line-height: 1.35;
  opacity: 0.85;
  font-weight: 400;
}
.speaker__role strong {
  color: oklch(from var(--color-accent) 75% c h);
  font-weight: 500;
}

.speaker__tag {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  padding: 0.4em 0.8em;
  background: oklch(95% 0.012 82 / 0.9);
  color: var(--color-foreground);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  z-index: 2;
}

/* -------------------------------------------------------------
   LIVE — TREATMENTS & DEMONSTRATIONS
------------------------------------------------------------- */
.live {
  padding: var(--section-padding) var(--margin);
  background: var(--color-background);
  position: relative;
}

.live__header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-lg);
  align-items: end;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-xl);
}
@media (max-width: 760px) {
  .live__header {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
}

.live__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-mono);
  font-size: var(--type-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-foreground-muted);
  align-self: start;
  padding-top: 0.5em;
}

/* Live indicator — red pulsing dot inside a ring */
.live__indicator {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}
.live__indicator-dot {
  width: 7px;
  height: 7px;
  background: oklch(58% 0.22 25);
  border-radius: 50%;
  box-shadow: 0 0 0 0 oklch(58% 0.22 25 / 0.4);
  animation: live-pulse 1.8s var(--ease-agency) infinite;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 oklch(58% 0.22 25 / 0.45); }
  70%  { box-shadow: 0 0 0 8px oklch(58% 0.22 25 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(58% 0.22 25 / 0); }
}

.live__headline {
  font-family: var(--font-display);
  font-size: var(--type-display-xl);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 500;
  font-variation-settings: 'SOFT' 40, 'opsz' 144;
  color: var(--color-foreground);
  justify-self: end;
  text-align: right;
  max-width: 14ch;
}
@media (max-width: 760px) {
  .live__headline { justify-self: start; text-align: left; }
}
.live__headline em {
  font-style: italic;
  color: var(--color-foreground);
  font-weight: 200;
  font-variation-settings: 'SOFT' 30, 'WONK' 0;
}
.live__struck {
  text-decoration: line-through;
  text-decoration-color: var(--color-foreground-subtle);
  text-decoration-thickness: 1.5px;
  color: var(--color-foreground-muted);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: 'WONK' 0;
}

/* Body — two columns: lede + treatment index */
.live__body {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: var(--space-2xl);
  align-items: start;
  margin-bottom: var(--space-2xl);
}
@media (max-width: 900px) {
  .live__body {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

.live__lede {
  position: sticky;
  top: calc(var(--space-xl) + 3rem);
}
@media (max-width: 900px) {
  .live__lede { position: static; }
}
.live__lede p {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--color-foreground-muted);
  margin-bottom: var(--space-md);
  max-width: 42ch;
}
.live__lede p strong {
  color: var(--color-foreground);
  font-weight: 500;
}
.live__lede p em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
  font-variation-settings: 'SOFT' 20, 'WONK' 0;
  font-size: 1.05em;
}
.live__lede-accent {
  padding-left: var(--space-md);
  border-left: 1px solid var(--color-accent);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.0625rem, 1.3vw, 1.3rem) !important;
  line-height: 1.45 !important;
  color: var(--color-foreground) !important;
  font-weight: 300;
  font-variation-settings: 'SOFT' 80;
  margin-bottom: 0 !important;
}
.live__lede-accent em {
  font-weight: 400 !important;
}

/* Treatment Index */
.live__index {
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
}
@media (max-width: 540px) {
  .live__index { padding: var(--space-md); }
}
.live__index-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-sm);
}
.live__index-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 400;
  font-variation-settings: 'WONK' 0;
  color: var(--color-foreground);
}
.live__index-count {
  font-family: var(--font-mono);
  font-size: var(--type-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-foreground-muted);
}

.live__index-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.treatment {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border-subtle);
  align-items: start;
  position: relative;
}
.treatment:last-child { border-bottom: none; }

.treatment__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--color-foreground-subtle);
  padding-top: 0.45em;
  font-weight: 500;
}
.treatment__body { min-width: 0; }
.treatment__meta {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-foreground-muted);
  margin-bottom: 0.35em;
}
.treatment__name {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.6vw, 1.5rem);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--color-foreground);
  font-variation-settings: 'SOFT' 40, 'opsz' 144;
  margin-bottom: 0.25em;
}
.treatment__name em {
  font-style: italic;
  font-weight: 300;
  color: var(--color-foreground);
  font-variation-settings: 'SOFT' 30, 'WONK' 0;
}
.treatment__note {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-foreground-muted);
  max-width: 42ch;
}

.treatment__tag {
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35em 0.7em;
  border-radius: 999px;
  margin-top: 0.3em;
  white-space: nowrap;
  font-weight: 500;
}
.treatment__tag--now {
  background: oklch(from var(--color-accent) l c h / 0.1);
  color: var(--color-accent);
  border: 1px solid oklch(from var(--color-accent) l c h / 0.3);
}
.treatment__tag--next {
  background: oklch(from var(--color-accent-warm) l c h / 0.12);
  color: oklch(from var(--color-accent-warm) calc(l - 0.1) c h);
  border: 1px solid oklch(from var(--color-accent-warm) l c h / 0.35);
}
@media (max-width: 540px) {
  .treatment { grid-template-columns: 2rem 1fr; }
  .treatment__tag {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 0.5em;
  }
}

/* Demo block — full-width statement */
.live__demo {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}
.live__demo-inner {
  max-width: 68rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}
.live__demo-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-mono);
  font-size: var(--type-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: oklch(58% 0.22 25);
  font-weight: 500;
}
.live__demo-text {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.6vw, 2.25rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--color-foreground);
  font-variation-settings: 'SOFT' 40, 'opsz' 144;
  max-width: 32ch;
}
.live__demo-text em {
  font-style: italic;
  color: var(--color-foreground);
  font-weight: 300;
  font-variation-settings: 'SOFT' 30, 'WONK' 0;
}
.live__demo-text strong {
  font-weight: 500;
  color: var(--color-foreground);
}

/* -------------------------------------------------------------
   BRANDS / EXHIBITORS
------------------------------------------------------------- */
.brands {
  padding: var(--section-padding) var(--margin);
  background: var(--color-foreground);
  color: var(--color-background);
  position: relative;
  overflow: hidden;
}

.brands__header {
  max-width: 72rem;
  margin: 0 auto var(--space-2xl);
  text-align: center;
  position: relative;
  z-index: 2;
}
.brands__header .section-number {
  font-family: var(--font-mono);
  font-size: var(--type-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: oklch(from var(--color-background) l c h / 0.5);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}
.brands__header .section-number::before,
.brands__header .section-number::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: oklch(from var(--color-background) l c h / 0.3);
}
.brands__header h2 {
  font-family: var(--font-display);
  font-size: var(--type-display-xl);
  line-height: 1;
  letter-spacing: var(--tracking-display);
  font-weight: 500;
  font-variation-settings: 'SOFT' 40, 'opsz' 144;
  max-width: 20ch;
  margin: 0 auto var(--space-md);
}
.brands__header h2 em {
  font-style: italic;
  color: var(--color-accent-warm);
  font-variation-settings: 'SOFT' 30, 'WONK' 0;
}
.brands__header p {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.55;
  color: oklch(from var(--color-background) l c h / 0.7);
  max-width: 52ch;
  margin: 0 auto;
}

.brands__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: oklch(from var(--color-background) l c h / 0.15);
  border: 1px solid oklch(from var(--color-background) l c h / 0.15);
  max-width: 78rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) { .brands__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .brands__grid { grid-template-columns: repeat(2, 1fr); } }

.brand {
  border-radius: var(--radius-md);
  aspect-ratio: 3/2;
  background: var(--color-foreground);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-md);
  position: relative;
  transition: background 0.5s var(--ease-agency);
}
.brand:hover {
  background: oklch(from var(--color-foreground) calc(l + 0.04) c h);
}
.brand__index {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  color: oklch(from var(--color-background) l c h / 0.4);
  text-transform: uppercase;
}
.brand__name {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.8vw, 1.75rem);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--color-background);
  font-variation-settings: 'SOFT' 40, 'opsz' 144;
}
.brand__name em {
  font-style: italic;
  font-weight: 200;
  color: var(--color-accent-warm);
  font-variation-settings: 'WONK' 0;
}
.brand__category {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: oklch(from var(--color-background) l c h / 0.55);
  text-transform: uppercase;
}

.brands__note {
  margin-top: var(--space-xl);
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 1.3vw, 1.3rem);
  color: oklch(from var(--color-background) l c h / 0.55);
  font-variation-settings: 'SOFT' 80;
}
.brands__note strong {
  color: var(--color-accent-warm);
  font-style: normal;
  font-weight: 500;
  font-family: var(--font-mono);
  font-size: 0.8em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 0.25em;
}

/* -------------------------------------------------------------
   PLACE — ORT & TEILNAHME
------------------------------------------------------------- */
.place {
  padding: var(--section-padding) var(--margin);
  background: var(--color-background);
  position: relative;
}

.place__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-md);
  align-items: baseline;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-xl);
}
.place__section-number,
.place__section-meta {
  font-family: var(--font-mono);
  font-size: var(--type-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-foreground-muted);
}
.place__section-meta { text-align: right; }
.place__headline {
  font-family: var(--font-display);
  font-size: var(--type-display-lg);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 500;
  font-variation-settings: 'SOFT' 40, 'opsz' 144;
  color: var(--color-foreground);
  justify-self: center;
  text-align: center;
}
.place__headline em {
  font-style: italic;
  color: var(--color-foreground);
  font-weight: 200;
  font-variation-settings: 'SOFT' 30, 'WONK' 0;
}
.place__underlined {
  position: relative;
  display: inline-block;
  font-style: italic;
  font-weight: 300;
}
.place__underlined::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent);
}
@media (max-width: 820px) {
  .place__header { grid-template-columns: 1fr; }
  .place__headline { justify-self: start; text-align: left; }
  .place__section-meta { text-align: left; }
}

/* Two-panel grid */
.place__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-xl);
}
@media (max-width: 900px) {
  .place__grid { grid-template-columns: 1fr; }
}

.place__panel {
  border-radius: var(--radius-lg);
  background: var(--color-background);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: background 0.5s var(--ease-agency);
  position: relative;
  overflow: hidden;
}
.place__panel:hover {
  background: var(--color-surface);
}
@media (max-width: 540px) {
  .place__panel { padding: var(--space-lg) var(--space-md); }
}

.place__panel-top {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border-subtle);
}
.place__panel-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 0.9;
  font-weight: 200;
  letter-spacing: -0.03em;
  font-variation-settings: 'SOFT' 30, 'opsz' 144;
  color: var(--color-foreground);
}
.place__panel-label {
  font-family: var(--font-mono);
  font-size: var(--type-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-foreground-muted);
}

.place__panel-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 500;
  font-variation-settings: 'SOFT' 50, 'opsz' 144;
  color: var(--color-foreground);
  margin-top: var(--space-xs);
}
.place__panel-title em {
  font-style: italic;
  color: var(--color-foreground);
  font-weight: 300;
  font-variation-settings: 'SOFT' 30, 'WONK' 0;
}

.place__panel-lede {
  font-size: clamp(0.9375rem, 1.1vw, 1.125rem);
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--color-foreground-muted);
  max-width: 42ch;
}
.place__panel-lede strong {
  color: var(--color-foreground);
  font-weight: 500;
}
.place__panel-note {
  padding-left: var(--space-md);
  border-left: 1px solid var(--color-accent);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  line-height: 1.45;
  color: var(--color-foreground);
  font-weight: 300;
  font-variation-settings: 'SOFT' 80;
  max-width: 38ch;
}
.place__panel-note em {
  color: var(--color-foreground);
  font-weight: 400;
  font-variation-settings: 'SOFT' 30, 'WONK' 0;
}

/* Tags on Teilnahme panel */
.place__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: auto;
  padding-top: var(--space-md);
}
.place__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.5em 0.9em;
  border: 1px solid var(--color-border);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-foreground);
  font-weight: 500;
  background: var(--color-background);
}
.place__tag-dot {
  width: 5px;
  height: 5px;
  background: var(--color-accent);
  border-radius: 50%;
}

/* Abstract map */
.place__map {
  width: 100%;
  aspect-ratio: 1;
  max-width: 18rem;
  align-self: center;
  color: var(--color-foreground);
  margin: var(--space-sm) auto var(--space-md);
  animation: map-slow-rotate 120s linear infinite;
  transform-origin: center;
}
@keyframes map-slow-rotate {
  to { transform: rotate(360deg); }
}
.place__map svg { width: 100%; height: 100%; }

/* Counter-rotate the label so it stays readable */
.place__map svg text {
  animation: map-counter 120s linear infinite;
  transform-origin: 120px 150px;
}
@keyframes map-counter {
  to { transform: rotate(-360deg); }
}

/* Arrival */
.place__arrival {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  padding: var(--space-lg);
}
@media (max-width: 540px) {
  .place__arrival { padding: var(--space-md); }
}

.place__arrival-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: var(--space-sm);
  margin-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}
.place__arrival-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 400;
  font-variation-settings: 'WONK' 0;
  color: var(--color-foreground);
}
.place__arrival-meta {
  font-family: var(--font-mono);
  font-size: var(--type-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-foreground-muted);
}
.place__arrival-meta em {
  color: var(--color-accent);
  font-style: normal;
  font-weight: 500;
}

.place__arrival-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.place__arrival-list li {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border-subtle);
  align-items: start;
  transition: padding-left 0.4s var(--ease-agency);
}
.place__arrival-list li:last-child { border-bottom: none; }
.place__arrival-list li:hover { padding-left: var(--space-xs); }

.arrival__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--color-foreground-subtle);
  padding-top: 0.4em;
  font-weight: 500;
}
.place__arrival-list h4 {
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, 1.4vw, 1.375rem);
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--color-foreground);
  font-variation-settings: 'SOFT' 40, 'opsz' 144;
  margin-bottom: 0.25em;
}
.place__arrival-list h4 em {
  font-style: italic;
  color: var(--color-foreground);
  font-weight: 300;
  font-variation-settings: 'SOFT' 30, 'WONK' 0;
}
.place__arrival-list p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-foreground-muted);
  max-width: 46ch;
}

.arrival__meta {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-foreground-muted);
  padding: 0.5em 0.8em;
  background: var(--color-background);
  border: 1px solid var(--color-border);
  white-space: nowrap;
  margin-top: 0.3em;
}
@media (max-width: 540px) {
  .place__arrival-list li {
    grid-template-columns: 2rem 1fr;
  }
  .arrival__meta {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 0.5em;
  }
}

/* -------------------------------------------------------------
   FORM — REGISTRATION
------------------------------------------------------------- */
.register {
  padding: var(--section-padding) var(--margin);
  background: var(--color-background);
  position: relative;
}

.register__inner {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: var(--space-2xl);
  max-width: 82rem;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 900px) {
  .register__inner { grid-template-columns: 1fr; gap: var(--space-xl); }
}

.register__intro {
  position: sticky;
  top: calc(var(--space-xl) + 3rem);
}
@media (max-width: 900px) {
  .register__intro { position: static; }
}
.register__intro .section-number {
  font-family: var(--font-mono);
  font-size: var(--type-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-foreground-muted);
  margin-bottom: var(--space-md);
}
.register__intro h2 {
  font-family: var(--font-display);
  font-size: var(--type-display-lg);
  line-height: 0.98;
  letter-spacing: var(--tracking-display);
  font-weight: 500;
  font-variation-settings: 'SOFT' 40, 'opsz' 144;
  margin-bottom: var(--space-md);
}
.register__intro h2 em {
  font-style: italic;
  color: var(--color-foreground);
  font-variation-settings: 'SOFT' 30, 'WONK' 0;
}
.register__intro p {
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.55;
  color: var(--color-foreground-muted);
  max-width: 42ch;
  margin-bottom: var(--space-lg);
}
.register__intro p strong {
  color: var(--color-foreground);
  font-weight: 500;
}

.register__details {
  margin-top: var(--space-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  max-width: 30rem;
}
.detail {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: var(--space-sm);
  align-items: start;
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--color-border-subtle);
}
.detail__key {
  font-family: var(--font-mono);
  font-size: var(--type-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-foreground-muted);
}
.detail__val {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
  color: var(--color-foreground);
  letter-spacing: -0.01em;
}
.detail__val em {
  font-style: italic;
  color: var(--color-foreground);
  font-variation-settings: 'WONK' 0;
}

/* Form */
.form {
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  padding: var(--space-xl);
  border: 1px solid var(--color-border);
  position: relative;
}
@media (max-width: 540px) {
  .form { padding: var(--space-lg) var(--space-md); }
}

.form__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-lg);
}
.form__header .title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 400;
  font-variation-settings: 'WONK' 0;
  color: var(--color-foreground);
}
.form__header .step {
  font-family: var(--font-mono);
  font-size: var(--type-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-foreground-muted);
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.form__field--full { grid-column: 1 / -1; }
@media (max-width: 600px) {
  .form__grid { grid-template-columns: 1fr; }
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  position: relative;
}
.form__field label {
  font-family: var(--font-mono);
  font-size: var(--type-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-foreground-muted);
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.form__field label::before {
  content: attr(data-num);
  color: var(--color-foreground-subtle);
  font-weight: 400;
}

.form__field input,
.form__field select,
.form__field textarea {
  font: inherit;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  color: var(--color-foreground);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  padding: 0.6em 0;
  transition: border-color 0.3s var(--ease-agency);
  width: 100%;
  outline: none;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  border-color: var(--color-accent);
}
.form__field input::placeholder,
.form__field textarea::placeholder {
  color: var(--color-foreground-subtle);
  font-style: italic;
  font-weight: 300;
}

.form__field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23666' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.3em center;
  padding-right: 1.5em;
}

.form__field textarea {
  resize: vertical;
  min-height: 5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
}

.form__consent {
  grid-column: 1 / -1;
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  padding-top: var(--space-sm);
  margin-top: var(--space-xs);
}
.form__consent input[type="checkbox"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-border);
  background: transparent;
  margin-top: 3px;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.3s ease;
}
.form__consent input[type="checkbox"]:checked {
  border-color: var(--color-accent);
}
.form__consent input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 3px; top: 0px;
  width: 4px; height: 8px;
  border: solid var(--color-accent);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.form__consent label {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--color-foreground-muted);
}
.form__consent a {
  color: var(--color-foreground);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--color-accent);
}

.form__submit {
  grid-column: 1 / -1;
  margin-top: var(--space-lg);
  position: relative;
  width: 100%;
  padding: 1.2em 2em;
  background: var(--color-accent);
  color: var(--color-foreground);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-transform: none;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.3s var(--ease-agency), border-color 0.3s var(--ease-agency);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
}
.form__submit::before {
  /* Sweep effect disabled for Hub clarity */
  display: none;
}
.form__submit:hover {
  background: oklch(from var(--color-accent) calc(l - 0.06) c h);
  border-color: oklch(from var(--color-accent) calc(l - 0.06) c h);
}
.form__submit[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}
.form__submit svg {
  width: 16px; height: 16px;
  transition: transform 0.3s var(--ease-agency);
}
.form__submit:hover svg { transform: translateX(3px); }

.form__note {
  grid-column: 1 / -1;
  margin-top: var(--space-sm);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-foreground-subtle);
  text-align: center;
}

.form__success {
  display: none;
  grid-column: 1 / -1;
  padding: var(--space-lg);
  text-align: center;
  background: oklch(from var(--color-accent) l c h / 0.08);
  border: 1px solid oklch(from var(--color-accent) l c h / 0.25);
}
.form__success.active { display: block; }
.form__success h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--color-foreground);
  margin-bottom: 0.5em;
}
.form__success p {
  font-size: 0.9375rem;
  color: var(--color-foreground-muted);
  line-height: 1.55;
}

/* -------------------------------------------------------------
   CLOSING STATEMENT
------------------------------------------------------------- */
.closing {
  padding: var(--space-3xl) var(--margin);
  background: var(--color-foreground);
  color: var(--color-background);
  position: relative;
  overflow: hidden;
}

/* Subtle spotlight gradient behind the statement */
.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(80vw, 60rem);
  aspect-ratio: 1;
  background: radial-gradient(
    circle at center,
    oklch(from var(--color-accent-warm) l c h / 0.08) 0%,
    oklch(from var(--color-accent-warm) l c h / 0.03) 35%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

.closing__inner {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xl);
}

/* Decorative mark on top */
.closing__mark {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: var(--color-accent-warm);
}
.closing__mark-line {
  display: block;
  width: clamp(40px, 8vw, 80px);
  height: 1px;
  background: oklch(from var(--color-background) l c h / 0.3);
}
.closing__mark-glyph {
  font-size: 0.85rem;
  transform: translateY(-1px);
}

/* The statement itself */
.closing__statement {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6.5vw, 7.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 500;
  font-variation-settings: 'SOFT' 40, 'opsz' 144;
  color: var(--color-background);
  max-width: 22ch;
}

.closing__line {
  display: block;
}

.closing__phrase {
  font-weight: 200;
}

.closing__strike {
  display: inline-block;
  font-style: italic;
  font-weight: 200;
  color: oklch(from var(--color-background) l c h / 0.55);
  text-decoration: line-through;
  text-decoration-color: oklch(from var(--color-background) l c h / 0.35);
  text-decoration-thickness: 2px;
  font-variation-settings: 'WONK' 0;
  padding: 0 0.1em;
}

.closing__crossed {
  display: inline-block;
  font-weight: 200;
  color: oklch(from var(--color-background) l c h / 0.45);
  font-style: italic;
  font-variation-settings: 'WONK' 0;
}

.closing__line--answer {
  margin-top: 0.2em;
  font-weight: 300;
  color: var(--color-background);
}
.closing__line--answer em {
  font-style: italic;
  color: var(--color-accent-warm);
  font-weight: 300;
  font-variation-settings: 'SOFT' 30, 'WONK' 0;
  position: relative;
  display: inline-block;
}
.closing__line--answer em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 3px;
  background: var(--color-accent-warm);
  transform: scaleX(0);
  transform-origin: left center;
  animation: closing-underline 1.4s var(--ease-out-expo) 0.8s forwards;
}
@keyframes closing-underline {
  to { transform: scaleX(1); }
}

/* Coda — italic serif couplet */
.closing__coda {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.125rem, 1.8vw, 1.75rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: oklch(from var(--color-background) l c h / 0.75);
  font-variation-settings: 'SOFT' 20, 'WONK' 0;
  max-width: 38ch;
}
.closing__coda em {
  color: var(--color-accent-warm);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: 'SOFT' 30, 'WONK' 0;
}

/* Footer-ish meta strip */
.closing__footer {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-md);
  margin-top: var(--space-md);
  font-family: var(--font-mono);
  font-size: var(--type-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: oklch(from var(--color-background) l c h / 0.5);
}
.closing__footer-mark {
  color: var(--color-background);
  font-weight: 500;
}
.closing__footer-divider {
  display: block;
  width: 24px;
  height: 1px;
  background: oklch(from var(--color-background) l c h / 0.3);
}

@media (max-width: 640px) {
  .closing__footer {
    flex-direction: column;
    gap: var(--space-xs);
  }
  .closing__footer-divider {
    width: 1px;
    height: 12px;
  }
}

/* -------------------------------------------------------------
   FOOTER
------------------------------------------------------------- */
.footer {
  padding: var(--space-lg) var(--margin) var(--space-md);
  background: var(--color-background);
  border-top: 1px solid var(--color-border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-md);
}
@media (max-width: 760px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

.footer__col h4 {
  font-family: var(--font-mono);
  font-size: var(--type-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-foreground-muted);
  margin-bottom: var(--space-sm);
}
.footer__col p, .footer__col li {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-foreground);
}
.footer__col ul { list-style: none; }
.footer__col a {
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}
.footer__col a:hover { color: var(--color-accent); }

.footer__col--brand p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.5;
  color: var(--color-foreground-muted);
  max-width: 32ch;
  font-variation-settings: 'SOFT' 80;
}

.footer__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: var(--type-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-foreground-subtle);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* -------------------------------------------------------------
   SCROLL REVEAL (intersection)
------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 200ms !important;
  }
  .hero__claim .claim-line span,
  .hero__subline .sub-line span {
    transform: translateY(0);
    opacity: 1;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}

/* Honeypot field — visually hidden, off-screen */
.field--honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* -------------------------------------------------------------
   LEGAL / PROSE PAGES (Datenschutz, Impressum)
------------------------------------------------------------- */
.legal-hero {
  padding: var(--space-2xl) var(--margin);
  padding-top: calc(var(--space-2xl) + 4rem); /* account for nav */
  border-bottom: 1px solid var(--color-border);
}

.legal-hero__label {
  font-family: var(--font-body);
  font-size: var(--type-label);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-foreground-muted);
  display: block;
  margin-bottom: var(--space-sm);
}

.legal-hero__title {
  font-family: var(--font-display);
  font-size: var(--type-display-lg);
  font-weight: 400;
  letter-spacing: var(--tracking-display);
  line-height: var(--leading-display);
  color: var(--color-foreground);
  margin: 0 0 var(--space-sm);
}

.legal-hero__meta {
  font-family: var(--font-body);
  font-size: var(--type-caption);
  color: var(--color-foreground-subtle);
}

.prose {
  max-width: 72ch;
  margin: 0 auto;
  padding: var(--space-2xl) var(--margin);
}

.prose h2 {
  font-family: var(--font-display);
  font-size: var(--type-heading);
  font-weight: 400;
  letter-spacing: var(--tracking-heading);
  line-height: var(--leading-heading);
  color: var(--color-foreground);
  margin: var(--space-xl) 0 var(--space-sm);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}

.prose h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.prose h3 {
  font-family: var(--font-body);
  font-size: var(--type-subheading);
  font-weight: 600;
  letter-spacing: var(--tracking-body);
  color: var(--color-foreground);
  margin: var(--space-lg) 0 var(--space-xs);
}

.prose p {
  font-family: var(--font-body);
  font-size: var(--type-body);
  font-weight: 300;
  line-height: var(--leading-body);
  letter-spacing: var(--tracking-body);
  color: var(--color-foreground);
  margin: 0 0 var(--space-sm);
}

.prose ul,
.prose ol {
  padding-left: 1.5em;
  margin: 0 0 var(--space-sm);
}

.prose li {
  font-family: var(--font-body);
  font-size: var(--type-body);
  font-weight: 300;
  line-height: var(--leading-body);
  letter-spacing: var(--tracking-body);
  color: var(--color-foreground);
  margin-bottom: var(--space-2xs);
}

.prose a {
  color: var(--color-accent-ink);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: opacity 0.2s;
}

.prose a:hover {
  opacity: 0.7;
}

.prose strong {
  font-weight: 600;
}

.prose .prose__note {
  background: var(--color-surface);
  border-left: 3px solid var(--color-accent-ink);
  padding: var(--space-sm) var(--space-md);
  margin: var(--space-md) 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: var(--type-caption);
  color: var(--color-foreground-muted);
  line-height: var(--leading-body);
}
