:root {
  --blue: #032B8E;
  --lime: #B8F47D;
  --black: #0E1116;
  --white: #ffffff;
  --cream: #FBFAF7;
  --ink: #374151;
  --muted: #6B7280;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}
body {
  font-family: 'Work Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: var(--blue);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- A11y utilities ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--lime);
  color: var(--black);
  padding: 12px 20px;
  z-index: 100;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

/* ---------- Fixed nav (matched to Landing Page) ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background-color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, backdrop-filter 0.24s ease;
}
.nav[data-scrolled="true"],
.nav[data-open="true"] {
  background: rgba(3,43,142,0.96);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 16px 34px rgba(4,20,64,0.22);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s ease;
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.14);
}
.nav-back:hover { color: var(--lime); }
.nav-back svg { display: block; }
.wordmark {
  display: inline-flex;
  align-items: center;
}
.wordmark-logo {
  height: 23px;
  width: auto;
  max-width: 180px;
  display: block;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255,255,255,0.88);
}
.nav-menu a { transition: color 0.15s ease; }
.nav-menu a:hover { color: var(--lime); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  -webkit-appearance: none;
          appearance: none;
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle:focus-visible { outline: 2px solid var(--lime); outline-offset: 2px; }
.nav[data-open="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav[data-open="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav[data-open="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  border-radius: 2px;
  transition: transform 0.08s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
  border: 0;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--lime);
  color: var(--black);
  padding: 10px 18px;
  font-size: 14px;
  letter-spacing: 0.01em;
}
.btn-primary:hover { background: #a8e76a; }
.btn-primary.btn-lg {
  padding: 20px 30px;
  font-size: 16px;
  font-weight: 700;
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
  padding: 18.5px 30px;
  font-size: 16px;
  font-weight: 600;
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--blue);
}

/* ---------- §2 Tages-Hero ---------- */
.day-hero {
  --day-hero-image: none;
  --day-hero-position: center top;
  --day-hero-position-mobile: var(--day-hero-position);
  --day-hero-position-current: var(--day-hero-position);
  background-color: var(--blue);
  background-image:
    linear-gradient(180deg, rgba(3,43,142,0.54) 0%, rgba(3,43,142,0.76) 32%, rgba(3,43,142,0.93) 66%, rgba(3,43,142,1) 100%),
    linear-gradient(90deg, rgba(4,17,54,0.68) 0%, rgba(4,17,54,0.28) 38%, rgba(3,43,142,0.12) 100%),
    radial-gradient(circle at 82% 18%, rgba(184,244,125,0.15) 0%, rgba(184,244,125,0) 28%),
    var(--day-hero-image);
  background-position:
    center,
    center,
    center,
    var(--day-hero-position-current);
  background-size:
    auto,
    auto,
    auto,
    cover;
  background-repeat:
    repeat,
    repeat,
    repeat,
    no-repeat;
  position: relative;
  overflow: hidden;
  padding: 164px 0 120px;
}
.day-hero--marketing {
  --day-hero-image: url("../assets/images/tage/hero_marketing.png");
  --day-hero-position: 58% top;
  --day-hero-position-mobile: 66% top;
}
.day-hero--backoffice {
  --day-hero-image: url("../assets/images/tage/hero_backoffice.png");
  --day-hero-position: 68% top;
  --day-hero-position-mobile: 74% top;
}
.day-hero--management {
  --day-hero-image: url("../assets/images/tage/hero_management.png");
  --day-hero-position: 62% top;
  --day-hero-position-mobile: 72% top;
}
.day-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
.day-hero-content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
}
.day-eyebrow {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime);
  margin: 0 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.day-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--lime);
}
.day-h1 {
  font-weight: 900;
  font-size: clamp(56px, 9vw, 112px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0;
}
.day-h1 .dot { color: var(--lime); }
.day-sub {
  font-weight: 400;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.4;
  color: rgba(255,255,255,0.85);
  margin: 24px 0 0;
  max-width: 42ch;
}
.day-audience {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  margin: 32px 0 0;
  max-width: 60ch;
}
.day-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
}
/* subtle editorial frame — matches landing hero */
.day-hero::before,
.day-hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.08);
  z-index: 1;
}
.day-hero::before { left: 40px; }
.day-hero::after { right: 40px; }

/* ---------- §3 Der Tag im Detail ---------- */
.detail {
  background: var(--cream);
  color: var(--black);
  padding: 120px 40px;
}
.detail-inner {
  max-width: 800px;
  margin: 0 auto;
}
.detail-eyebrow {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.detail-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--muted);
}
.detail-h2 {
  font-weight: 700;
  font-size: clamp(40px, 4.2vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 0;
}
.detail-body {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.detail-body p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0;
  text-wrap: pretty;
}
.detail-body p em {
  font-style: normal;
  font-weight: 600;
  color: var(--black);
}

/* ---------- §4 Tagesablauf ---------- */
.schedule {
  background: var(--white);
  color: var(--black);
  padding: 120px 40px;
}
.schedule-inner {
  max-width: 880px;
  margin: 0 auto;
}
.schedule-head {
  margin-bottom: 64px;
}
.schedule-eyebrow {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.schedule-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--muted);
}
.schedule-h2 {
  font-weight: 700;
  font-size: clamp(40px, 4.2vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 0 0 20px;
}
.schedule-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding-top: 20px;
  border-top: 1px solid #E6E3DC;
  font-weight: 500;
  font-size: 14px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.schedule-meta strong {
  font-weight: 600;
  color: var(--black);
}
.timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 95px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: #E6E3DC;
}
.tl-row {
  display: grid;
  grid-template-columns: 80px 30px 1fr;
  gap: 0;
  padding: 22px 0;
  position: relative;
  align-items: start;
}
.tl-row + .tl-row { border-top: 1px solid #F3F1EB; }
.tl-row:first-child { padding-top: 0; }
.tl-row:last-child { padding-bottom: 0; }
.tl-time {
  font-weight: 600;
  font-size: 14px;
  color: var(--black);
  letter-spacing: 0.01em;
  padding-top: 2px;
  font-variant-numeric: tabular-nums;
}
.tl-marker {
  position: relative;
  align-self: stretch;
}
.tl-marker::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0E1116;
  transform: translateX(-50%);
  z-index: 1;
  box-shadow: 0 0 0 3px var(--white);
}
.tl-content { padding-left: 20px; }
.tl-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: var(--black);
  margin: 0;
  letter-spacing: -0.005em;
}
.tl-sub {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  margin: 4px 0 0;
  text-wrap: pretty;
}

/* Cluster rows: editorial bump — lime counter on right, bigger title */
.tl-row.tl-cluster { padding: 28px 0; }
.tl-row.tl-cluster .tl-marker::before {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--blue);
  box-shadow: 0 0 0 3px var(--white), 0 0 0 4px var(--lime);
}
.tl-row.tl-cluster .tl-time { color: var(--blue); }
.tl-row.tl-cluster .tl-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 24px;
  align-items: baseline;
}
.tl-cluster-tag {
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blue);
  margin: 0;
  grid-column: 1;
}
.tl-row.tl-cluster .tl-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--black);
  grid-column: 1;
  line-height: 1.25;
}
.tl-row.tl-cluster .tl-sub { grid-column: 1; }
.tl-cluster-count {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: start;
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #E6E3DC;
  font-variant-numeric: tabular-nums;
  padding-top: 2px;
}

/* Keynote + Goldener KI-Moment — highlighted rows */
.tl-row.tl-highlight { padding: 26px 0; }
.tl-row.tl-highlight .tl-marker::before {
  width: 9px; height: 9px;
  background: var(--lime);
  box-shadow: 0 0 0 3px var(--white), 0 0 0 4px #0E1116;
}
.tl-row.tl-highlight .tl-title {
  font-size: 17px;
  font-weight: 700;
}

/* Pause rows: compressed & muted */
.tl-row.tl-pause {
  padding: 10px 0;
}
.tl-row.tl-pause .tl-marker::before {
  width: 4px;
  height: 4px;
  background: #C8C2B2;
  top: 10px;
}
.tl-row.tl-pause .tl-time,
.tl-row.tl-pause .tl-title {
  color: var(--muted);
  font-weight: 500;
  font-size: 13px;
}
.tl-row.tl-pause .tl-title { font-size: 13px; }
.tl-row.tl-pause .tl-sub { font-size: 13px; margin-top: 2px; }

/* ---------- §5 Peter Huber Keynote ---------- */
.keynote {
  background: var(--cream);
  color: var(--black);
  padding: 120px 40px;
}
.keynote-inner {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: stretch;
}
.keynote-portrait {
  width: 100%;
  height: 100%;
  min-height: 280px;
  overflow: hidden;
  display: block;
  background: #E6E3DC;
  position: relative;
}
.keynote-portrait img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.15) contrast(1.02);
}
.keynote-portrait-label {
  position: absolute;
  left: 12px; bottom: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--white);
  background: rgba(14,17,22,0.72);
  padding: 4px 8px;
  border-radius: 2px;
}
.keynote-text {
  display: flex;
  flex-direction: column;
  padding-top: 4px;
  border-left: 2px solid var(--lime);
  padding-left: 32px;
  margin-left: -8px;
}
.keynote-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 6px 12px;
  border: 1px solid #D5D1C7;
  border-radius: 999px;
  font-weight: 500;
  font-size: 12px;
  color: var(--blue);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  background: var(--white);
}
.keynote-tag .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime);
}
.keynote-eyebrow {
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blue);
  margin: 24px 0 0;
}
.keynote-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(30px, 3.4vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--black);
  margin: 16px 0 0;
  text-wrap: balance;
}
.keynote-meta {
  font-weight: 500;
  font-size: 13px;
  color: var(--muted);
  margin: 20px 0 0;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.keynote-meta .sep {
  color: #C8C2B2;
}
.keynote-body {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  margin: 24px 0 0;
  text-wrap: pretty;
}

/* ---------- §6 Die vier Cluster ---------- */
.clusters {
  background: var(--white);
  color: var(--black);
  padding: 120px 40px;
}
.clusters-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.clusters-head {
  margin-bottom: 56px;
  max-width: 720px;
}
.clusters-eyebrow {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.clusters-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--muted);
}
.clusters-h2 {
  font-weight: 700;
  font-size: clamp(40px, 4.2vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 0;
}
.clusters-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cluster-card {
  background: var(--white);
  border: 1px solid #E6E3DC;
  border-radius: 4px;
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.cluster-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--lime);
}
.cluster-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  align-items: baseline;
}
.cluster-num {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--blue);
  margin: 0;
  grid-column: 1;
}
.cluster-index {
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--lime);
  margin: 0;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  font-variant-numeric: tabular-nums;
}
.cluster-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--black);
  margin: 0;
  grid-column: 1;
}
.cluster-body {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  margin: 18px 0 0;
  text-wrap: pretty;
}
.cluster-outcome {
  margin: 20px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid #F3F1EB;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  color: var(--black);
  display: flex;
  gap: 8px;
  text-wrap: pretty;
}
.cluster-outcome-label {
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 11px;
  padding-top: 3px;
  white-space: nowrap;
}
.cluster-tools-label {
  margin: 20px 0 10px;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.cluster-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cluster-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 3px;
  background: #F3F1EB;
  color: var(--blue);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

/* ---------- §7 Die drei Modi an diesem Tag ---------- */
.modi {
  background: var(--cream);
  color: var(--black);
  padding: 120px 40px;
}
.modi-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.modi-head { margin-bottom: 56px; max-width: 720px; }
.modi-eyebrow {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.modi-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--muted);
}
.modi-h2 {
  font-weight: 700;
  font-size: clamp(40px, 4.2vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 0;
}
.modi-sub {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  margin: 16px 0 0;
  max-width: 640px;
  text-wrap: pretty;
}
.modi-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modi-block {
  position: relative;
  background: var(--white);
  border-radius: 2px;
  padding: 32px 32px 32px 36px;
  border-left: 4px solid var(--mode-color);
  display: flex;
  flex-direction: column;
}
.modi-block--explorer { --mode-color: #E8781C; }
.modi-block--insider  { --mode-color: #1F7A4C; }
.modi-block--builder  { --mode-color: #1D4ED8; }
.modi-top {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.modi-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--mode-color);
  flex-shrink: 0;
}
.modi-name {
  font-weight: 700;
  font-size: 18px;
  color: var(--black);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}
.modi-tag {
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  margin-left: 4px;
}
.modi-body {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  margin: 16px 0 0;
  text-wrap: pretty;
}

/* ---------- §8 Was Sie mitnehmen ---------- */
.takeaway {
  background: var(--blue);
  color: var(--white);
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}
.takeaway-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.takeaway-head { margin-bottom: 64px; max-width: 800px; }
.takeaway-eyebrow {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime);
  margin: 0 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.takeaway-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--lime);
}
.takeaway-h2 {
  font-weight: 700;
  font-size: clamp(40px, 4.2vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
  text-wrap: balance;
}
.takeaway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.takeaway-item {
  display: flex;
  flex-direction: column;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.takeaway-art {
  width: 100%;
  height: 96px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.takeaway-art svg {
  display: block;
  height: 96px;
  width: auto;
}
.takeaway-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  color: var(--white);
  margin: 24px 0 0;
  letter-spacing: -0.01em;
}
.takeaway-body {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.8);
  margin: 8px 0 0;
  text-wrap: pretty;
}
.takeaway-cta {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.takeaway-link {
  font-weight: 500;
  font-size: 15px;
  color: var(--lime);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.15s ease;
}
.takeaway-link:hover { border-bottom-color: var(--lime); }

/* ---------- Legal pages ---------- */
.legal-page {
  background: var(--cream);
  color: var(--black);
  padding: 112px 40px 120px;
}
.legal-shell {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 32px 48px;
  align-items: start;
}
.legal-aside {
  position: sticky;
  top: 104px;
}
.legal-aside-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid #E6E3DC;
  padding: 24px;
  backdrop-filter: blur(8px);
}
.legal-aside-label {
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0 0 16px;
}
.legal-toc {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal-toc a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink);
  transition: color 0.15s ease;
}
.legal-toc a::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid rgba(3,43,142,0.2);
  background: var(--white);
  flex-shrink: 0;
}
.legal-toc a:hover {
  color: var(--blue);
}
.legal-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.legal-panel {
  background: var(--white);
  border: 1px solid #E6E3DC;
  padding: 40px;
}
.legal-panel--accent {
  background: #F4F8EA;
  border-color: rgba(3,43,142,0.12);
}
.legal-kicker {
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0 0 14px;
}
.legal-section-title {
  font-weight: 700;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 0;
}
.legal-panel h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--black);
  margin: 0;
}
.legal-panel p {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  margin: 16px 0 0;
  text-wrap: pretty;
}
.legal-panel strong {
  color: var(--black);
}
.legal-panel a {
  color: var(--blue);
  border-bottom: 1px solid rgba(3,43,142,0.22);
  transition: border-bottom-color 0.15s ease, color 0.15s ease;
}
.legal-panel a:hover {
  border-bottom-color: var(--blue);
}
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.legal-card {
  border: 1px solid #ECE8DF;
  padding: 28px;
}
.legal-facts {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 12px 18px;
  margin: 20px 0 0;
}
.legal-facts dt {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.45;
  color: var(--black);
  margin: 0;
}
.legal-facts dd {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
}
.legal-list {
  margin: 20px 0 0;
  padding-left: 22px;
  color: var(--ink);
}
.legal-list li {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
}
.legal-list li + li {
  margin-top: 10px;
}
.legal-section + .legal-section {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #F0EDE6;
}
.legal-callout {
  margin-top: 24px;
  padding: 20px 22px;
  background: #F8F7F3;
  border-left: 3px solid var(--lime);
}
.legal-callout p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}
.legal-note {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 24px;
}
.legal-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.legal-mini {
  border: 1px solid rgba(3,43,142,0.12);
  background: rgba(255,255,255,0.45);
  padding: 18px 20px;
}
.legal-mini-label {
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 8px;
}
.legal-mini-text {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
  color: var(--black);
  margin: 0;
}

/* ---------- §14 Footer (mirrored from landing page) ---------- */
.footer {
  background: var(--blue);
  color: var(--white);
  padding: 72px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 56px;
}
.footer-eyebrow {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.7);
  margin: 0 0 20px;
  display: inline-flex; align-items: center; gap: 14px;
}
.footer-eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--lime);
  display: inline-block;
}
.footer-event-lines {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400; font-size: 15px; line-height: 1.75;
  color: var(--white);
  margin: 0;
}
.footer-event-lines span { display: block; }
.footer-edition {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500; font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 20px 0 0;
}
.footer-contacts {
  display: flex; flex-direction: column;
  gap: 16px;
}
.footer-contact {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
  color: inherit;
}
.footer-contact-photo {
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.footer-contact-photo img,
.footer-contact-photo svg { width: 100%; height: 100%; display: block; object-fit: cover; }
.footer-contact-text { min-width: 0; }
.footer-contact-name {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600; font-size: 16px;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.005em;
}
.footer-contact-role-line {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400; font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin: 4px 0 0;
  line-height: 1.4;
}
.footer-contact-lines {
  margin-top: 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.footer-contact-lines a {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500; font-size: 14px;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-bottom-color 0.15s ease;
  align-self: flex-start;
}
.footer-contact-lines a:hover {
  color: var(--lime);
  border-bottom-color: var(--lime);
}
.footer-contact-phone { color: rgba(255,255,255,0.7) !important; }
.footer-legal-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 6px;
}
.footer-legal-list a {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500; font-size: 15px;
  color: var(--white);
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.15s ease;
}
.footer-legal-list a:hover { color: var(--lime); }
.footer-social { margin-top: 32px; }
.footer-social-row {
  display: flex; align-items: center; gap: 16px;
  margin-top: 4px;
}
.footer-social-row a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.footer-social-row a:hover {
  border-color: var(--lime);
  color: var(--lime);
}
.footer-social-row svg { width: 16px; height: 16px; }
.footer-strip {
  background: #FBFAF7;
  padding: 32px 40px;
  border-top: 1px solid #E8E5DC;
}
.footer-strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-powered {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.footer-powered-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500; font-size: 13px;
  color: #6B7280;
  letter-spacing: 0.04em;
  margin: 0;
}
.footer-powered-logo {
  height: 22px; width: auto; display: block;
}
.footer-powered-logo--small { height: 16px; opacity: 0.7; }
.footer-powered-sep {
  font-family: 'Work Sans', sans-serif;
  font-size: 14px; color: #6B7280;
}
.footer-copyright {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400; font-size: 13px;
  color: #6B7280;
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .nav-inner { padding: 14px 20px; gap: 12px; }
  .nav-back { padding-right: 14px; font-size: 13px; }
  .nav-back-label-long { display: none; }
  .wordmark-logo { height: 19px; max-width: 149px; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--blue);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 24px;
    font-size: 16px;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.22s ease, opacity 0.18s ease, visibility 0s linear 0.18s;
  }
  .nav-menu a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-menu a:last-child { border-bottom: 0; }
  .nav[data-open="true"] .nav-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: transform 0.22s ease, opacity 0.18s ease, visibility 0s linear 0s;
  }

  .day-hero {
    --day-hero-position-current: var(--day-hero-position-mobile);
    padding: 144px 0 80px;
  }
  .day-hero-inner { padding: 0 20px; }
  .day-hero::before { left: 20px; }
  .day-hero::after { right: 20px; }
  .day-h1 { font-size: clamp(48px, 14vw, 72px); }
  .day-sub { font-size: 19px; }
  .day-cta-row { margin-top: 36px; }
  .btn-primary.btn-lg { padding: 18px 24px; font-size: 15px; }
  .btn-ghost { padding: 16.5px 24px; font-size: 15px; }

  .detail { padding: 88px 24px; }
  .detail-h2 { font-size: 34px; }
  .detail-body p { font-size: 17px; }

  .schedule { padding: 88px 24px; }
  .schedule-head { margin-bottom: 40px; }
  .schedule-h2 { font-size: 34px; }
  .timeline::before { left: 75px; }
  .tl-row { grid-template-columns: 64px 22px 1fr; padding: 18px 0; }
  .tl-row.tl-cluster { padding: 22px 0; }
  .tl-row.tl-pause { padding: 8px 0; }
  .tl-time { font-size: 13px; }
  .tl-content { padding-left: 14px; }
  .tl-title { font-size: 15px; }
  .tl-row.tl-cluster .tl-title { font-size: 17px; }
  .tl-sub { font-size: 13px; }
  .tl-cluster-count { font-size: 22px; }

  .keynote { padding: 80px 24px; }
  .keynote-inner { grid-template-columns: 1fr; gap: 32px; align-items: start; }
  .keynote-portrait { width: 200px; aspect-ratio: 1 / 1; height: auto; min-height: 0; }
  .keynote-text { padding-left: 20px; margin-left: 0; }
  .keynote-title { font-size: 26px; }
  .keynote-eyebrow { margin-top: 18px; }
  .keynote-body { font-size: 15px; margin-top: 20px; }

  .clusters { padding: 88px 24px; }
  .clusters-head { margin-bottom: 40px; }
  .clusters-h2 { font-size: 34px; }
  .clusters-grid { grid-template-columns: 1fr; gap: 16px; }
  .cluster-card { padding: 28px 28px 26px; }
  .cluster-title { font-size: 21px; }
  .cluster-index { font-size: 32px; }

  .modi { padding: 88px 24px; }
  .modi-head { margin-bottom: 40px; }
  .modi-h2 { font-size: 34px; }
  .modi-sub { font-size: 16px; }
  .modi-block { padding: 24px 24px 24px 28px; }
  .modi-body { font-size: 14px; }

  .takeaway { padding: 88px 24px; }
  .takeaway-head { margin-bottom: 40px; }
  .takeaway-h2 { font-size: 32px; }
  .takeaway-grid { grid-template-columns: 1fr; gap: 28px; }
  .takeaway-art { height: 72px; }
  .takeaway-art svg { height: 72px; }
  .takeaway-cta { margin-top: 56px; gap: 16px; }

  .legal-page { padding: 88px 24px; }
  .legal-shell { grid-template-columns: 1fr; gap: 24px; }
  .legal-aside { position: static; }
  .legal-aside-card { padding: 20px; }
  .legal-panel { padding: 30px 24px; }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-facts { grid-template-columns: 1fr; gap: 6px; }
  .legal-mini-grid { grid-template-columns: 1fr; }

  .footer { padding: 56px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-strip { padding: 24px; }
  .footer-strip-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ---------- Scroll-Reveal (fly/fade-in) — siehe index.css ---------- */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    will-change: transform, opacity;
    transition:
      opacity 1150ms cubic-bezier(0.2, 0.7, 0.2, 1),
      transform 1150ms cubic-bezier(0.2, 0.7, 0.2, 1);
    transition-delay: var(--rv-delay, 0ms);
  }
  [data-reveal=""],
  [data-reveal="up"]   { transform: translate3d(0, 28px, 0); }
  [data-reveal="rise"] { transform: translate3d(0, 46px, 0); }
  [data-reveal="down"] { transform: translate3d(0, -22px, 0); }
  [data-reveal="left"] { transform: translate3d(-36px, 0, 0); }
  [data-reveal="right"]{ transform: translate3d(36px, 0, 0); }
  [data-reveal="fade"] { transform: none; }
  [data-reveal="scale"]{ transform: scale(0.96); }
  [data-reveal].is-inview {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
.no-js [data-reveal],
html:not(.js) [data-reveal] {
  opacity: 1;
  transform: none;
}
