/* ============================================================
   Jan Krebs — persönliche Timeline-Seite
   Palette: ÜbCon — kühles Papier + Navy als Akzent, dunkel: Anthrazit/Silber
   Fonts: Cabinet Grotesk (Display) / Satoshi (Body)
   ============================================================ */

:root,
[data-theme='light'] {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Surfaces — kühles Papier */
  --color-bg: #f4f5f7;
  --color-surface: #f9fafb;
  --color-surface-2: #fdfdfe;
  --color-surface-offset: #eceef1;
  --color-divider: #d7dbe1;
  --color-border: oklch(from #1c2129 l c h / 0.12);

  /* Text */
  --color-text: #1c2129;
  --color-text-muted: #626a76;
  --color-text-faint: #a9b0ba;

  /* Akzent — ÜbCon-Navy */
  --color-primary: #0d3a75;
  --color-primary-hover: #0a2d5c;
  --color-primary-active: #072043;
  --color-primary-highlight: #dce4f0;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 1px 2px oklch(0.25 0.02 70 / 0.06), 0 4px 16px oklch(0.25 0.02 70 / 0.04);
  --shadow-md: 0 2px 4px oklch(0.25 0.02 70 / 0.08), 0 12px 32px oklch(0.25 0.02 70 / 0.06);

  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1160px;

  --font-display: 'Cabinet Grotesk', 'Helvetica Neue', sans-serif;
  --font-body: 'Satoshi', 'Helvetica Neue', sans-serif;
}

[data-theme='dark'] {
  --color-bg: #111318;
  --color-surface: #16191f;
  --color-surface-2: #1b1f26;
  --color-surface-offset: #21252d;
  --color-divider: #2a2f38;
  --color-border: oklch(from #d6dae1 l c h / 0.16);

  --color-text: #d6dae1;
  --color-text-muted: #8b919b;
  --color-text-faint: #575d67;

  --color-primary: #8fb0e2;
  --color-primary-hover: #aac5ee;
  --color-primary-active: #7095cc;
  --color-primary-highlight: #1e293b;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.25), 0 4px 16px oklch(0 0 0 / 0.2);
  --shadow-md: 0 2px 4px oklch(0 0 0 / 0.3), 0 12px 32px oklch(0 0 0 / 0.25);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #111318;
    --color-surface: #16191f;
    --color-surface-2: #1b1f26;
    --color-surface-offset: #21252d;
    --color-divider: #2a2f38;
    --color-border: oklch(from #d6dae1 l c h / 0.16);
    --color-text: #d6dae1;
    --color-text-muted: #8b919b;
    --color-text-faint: #575d67;
    --color-primary: #8fb0e2;
    --color-primary-hover: #aac5ee;
    --color-primary-active: #7095cc;
    --color-primary-highlight: #1e293b;
    --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.25), 0 4px 16px oklch(0 0 0 / 0.2);
    --shadow-md: 0 2px 4px oklch(0 0 0 / 0.3), 0 12px 32px oklch(0 0 0 / 0.25);
  }
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: 100;
  padding: var(--space-2) var(--space-4);
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: var(--text-sm);
}
.skip-link:focus-visible {
  top: var(--space-4);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(from var(--color-bg) l c h / 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}
.site-header.is-scrolled {
  border-bottom-color: var(--color-divider);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  letter-spacing: 0.01em;
}
.site-nav {
  margin-left: auto;
  display: flex;
  gap: var(--space-5);
}
.site-nav a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
}
.site-nav a:hover {
  color: var(--color-primary);
}
.site-nav a[aria-current='page'] {
  color: var(--color-text);
  font-weight: 700;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 2px;
}
.theme-toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
}
.theme-toggle:hover {
  color: var(--color-text);
  background: var(--color-surface-offset);
}
.theme-toggle:active {
  background: var(--color-divider);
}

/* ---------- Hero ---------- */
.hero {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}
.hero-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(var(--space-8), 6vw, var(--space-20));
  align-items: center;
}
.kicker {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-3xl);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
}
.hero-lead {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 56ch;
  margin-bottom: var(--space-8);
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.tag {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-3);
  background: var(--color-surface);
}
.hero-photo {
  position: relative;
  justify-self: end;
  width: min(100%, 340px);
}
.hero-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 4 / 5;
  width: 100%;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: var(--space-4) calc(-1 * var(--space-4)) calc(-1 * var(--space-4)) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* ---------- Page hero (Unterseiten) ---------- */
.page-hero {
  padding-block: clamp(var(--space-12), 7vw, var(--space-20));
  border-bottom: 1px solid var(--color-divider);
}
.page-hero-inner {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: var(--space-4);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-2xl);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
  max-width: 22ch;
}
.page-hero .hero-lead {
  margin-bottom: 0;
}
.page-hero--uebcon {
  background: var(--color-surface);
}
.page-hero-inner--split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(var(--space-8), 6vw, var(--space-16));
}
.hero-logo-hex {
  flex: 0 0 auto;
  width: clamp(180px, 20vw, 232px);
  aspect-ratio: 0.92;
  background: #fff;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-hex img {
  width: 58%;
  height: auto;
  display: block;
}
.hero-slogan {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-primary);
  margin-top: var(--space-5);
  margin-bottom: 0;
}
@media (max-width: 700px) {
  .page-hero-inner--split {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .hero-logo-hex {
    width: 148px;
  }
}
.teaser-logo {
  align-self: flex-start;
  width: 68px;
  height: auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 9px 11px;
}

/* ---------- Facts ---------- */
.facts {
  border-block: 1px solid var(--color-divider);
  background: var(--color-surface);
  padding-block: clamp(var(--space-8), 4vw, var(--space-12));
}
.facts-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}
.fact-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xl);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  margin-bottom: var(--space-1);
}
.fact-label {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  max-width: 24ch;
}

/* ---------- Teaser (Startseite) ---------- */
.teasers {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}
.teasers-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.teaser {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-6), 3vw, var(--space-8));
  text-decoration: none;
  color: var(--color-text);
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive), transform var(--transition-interactive);
}
.teaser:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.teaser-kicker {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.teaser h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
}
.teaser p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}
.teaser-more {
  margin-top: auto;
  padding-top: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary);
}
.teaser--accent {
  background: var(--color-primary-highlight);
  border-color: oklch(from var(--color-primary) l c h / 0.35);
}

/* ---------- Section heads ---------- */
.section-head {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: var(--space-4);
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xl);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-3);
}
.section-head p {
  color: var(--color-text-muted);
  max-width: 60ch;
}

/* ---------- Timeline ---------- */
.timeline-section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}
.timeline {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: var(--space-4);
  position: relative;
}
.tl-entry {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-8);
  position: relative;
  padding-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}
.tl-entry:last-child {
  padding-bottom: 0;
}
/* vertical line + dot */
.tl-entry::before {
  content: '';
  position: absolute;
  left: 224px;
  top: 10px;
  bottom: -10px;
  width: 1px;
  background: var(--color-divider);
}
.tl-entry:last-child::before {
  display: none;
}
.tl-entry::after {
  content: '';
  position: absolute;
  left: 220px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
}
.tl-meta {
  text-align: right;
  padding-right: var(--space-10);
}
.tl-date {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  margin-bottom: var(--space-2);
}
.tl-badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-primary);
  background: var(--color-primary-highlight);
  border-radius: var(--radius-full);
  padding: 2px var(--space-3);
}
.tl-badge--alt {
  color: var(--color-text-muted);
  background: var(--color-surface-offset);
}
.tl-body {
  padding-left: var(--space-8);
}
.tl-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  margin-bottom: var(--space-1);
}
.tl-org {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}
.tl-impact {
  font-size: var(--text-base);
  max-width: 58ch;
}
.tl-impact span {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

/* ---------- Ehrenamt ---------- */
.volunteer {
  background: var(--color-surface);
  border-block: 1px solid var(--color-divider);
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}
.vol-grid {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}
.vol-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-6), 3vw, var(--space-8));
}
.vol-card--feature {
  grid-column: 1 / -1;
}
.vol-status {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.vol-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  margin-bottom: var(--space-1);
}
.vol-org {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}
.vol-card > p:last-child {
  color: var(--color-text);
  max-width: 70ch;
}
.vol-past {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}
.vol-past h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}
.vol-past ul {
  display: grid;
  gap: var(--space-3);
}
.vol-past li {
  position: relative;
  padding-left: var(--space-5);
  color: var(--color-text-muted);
  font-size: var(--text-base);
}
.vol-past li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: var(--radius-full);
  background: var(--color-text-faint);
}

/* ---------- ÜbCon: Manifest ---------- */
.manifest {
  background: #0f1116;
  color: #e6eaf1;
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}
.manifest-inner {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: var(--space-4);
}
.manifest-kicker {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9db9e8;
  margin-bottom: var(--space-4);
}
.manifest-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-2xl);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
}
.manifest-neq {
  color: #9db9e8;
}
.manifest-question {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-lg);
  line-height: 1.35;
  color: #e6eaf1;
  margin-bottom: var(--space-4);
}
.manifest-text {
  font-size: var(--text-base);
  color: #a6aeba;
  max-width: 60ch;
  margin-bottom: var(--space-6);
}
.manifest-claim {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: #9db9e8;
  margin-bottom: var(--space-8);
}
.manifest-claim span {
  color: #e6eaf1;
  font-weight: 500;
}
.manifest-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(230, 234, 241, 0.16);
}
.manifest-facts li {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: var(--space-4);
  padding-block: var(--space-4);
  border-bottom: 1px solid rgba(230, 234, 241, 0.16);
  font-size: var(--text-sm);
}
.manifest-facts strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: #9db9e8;
}
.manifest-facts span {
  color: #c2c9d4;
}

/* ---------- ÜbCon: Leistungen & Fundament ---------- */
.services {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}
.services-grid {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.pillars {
  background: var(--color-surface);
  border-block: 1px solid var(--color-divider);
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}
.pillars-grid {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(var(--space-6), 4vw, var(--space-10));
}
.pillar h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  padding-top: var(--space-3);
  border-top: 2px solid var(--color-primary);
}
.pillar p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

/* ---------- Volunteer Seite ---------- */
.volunteer--page {
  background: transparent;
  border-block: none;
}

/* ---------- Kontakt ---------- */
.contact {
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
}
.contact-inner {
  max-width: var(--content-narrow);
  margin-inline: auto;
  padding-inline: var(--space-4);
  text-align: center;
}
.contact h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}
.contact p {
  color: var(--color-text-muted);
  margin-inline: auto;
  margin-bottom: var(--space-6);
}
.contact-mail {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-primary);
  text-decoration: none;
  border-bottom: 2px solid var(--color-primary-highlight);
  padding-bottom: 2px;
  margin-bottom: var(--space-4);
}
.contact-mail:hover {
  color: var(--color-primary-hover);
  border-bottom-color: var(--color-primary);
}
.contact-place {
  font-size: var(--text-sm);
  color: var(--color-text-faint);
  margin-bottom: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--color-divider);
  padding-block: var(--space-8);
}
.footer-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-photo {
    justify-self: start;
    width: min(100%, 280px);
    order: -1;
  }
  .facts-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
  .vol-grid {
    grid-template-columns: 1fr;
  }
  .teasers-inner,
  .services-grid,
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-nav {
    display: none;
  }
  .theme-toggle {
    margin-left: auto;
  }
  .tl-entry {
    grid-template-columns: 1fr;
    gap: var(--space-2);
    padding-left: var(--space-6);
  }
  .tl-entry::before {
    left: 4px;
    top: 8px;
  }
  .tl-entry::after {
    left: 0;
    top: 5px;
  }
  .tl-meta {
    text-align: left;
    padding-right: 0;
    display: flex;
    align-items: center;
    gap: var(--space-3);
  }
  .tl-date {
    margin-bottom: 0;
  }
  .tl-body {
    padding-left: 0;
  }
}

/* ---- Offen für Neues (Ausblick) ---- */
.tag--accent {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
  font-weight: 600;
}
.outlook {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  padding-block: clamp(4rem, 9vw, 7rem);
}
.outlook-inner {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: var(--space-4);
}
.outlook-kicker {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.outlook h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xl);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-4);
}
.outlook-lead {
  color: var(--color-text-muted);
  max-width: 62ch;
  margin-bottom: var(--space-8);
}
.outlook-paths {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-8);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.outlook-paths li {
  border-top: 3px solid var(--color-primary);
  padding-top: var(--space-4);
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--color-text-muted);
}
.outlook-paths strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.outlook-cta {
  display: inline-block;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  border-bottom: 2px solid var(--color-highlight);
  padding-bottom: 2px;
}
.outlook-cta:hover {
  border-bottom-color: var(--color-primary);
}
@media (max-width: 900px) {
  .outlook-paths {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
}

.hero-callout {
  margin-top: var(--space-6);
  padding: var(--space-5) var(--space-6);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--color-primary) 8%, var(--color-surface));
}
.hero-callout p {
  margin: 0;
  max-width: 62ch;
  font-size: var(--text-base);
  line-height: 1.6;
}
.hero-callout strong {
  color: var(--color-primary);
}
.hero-callout a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-section {
  padding: var(--space-10) 0 var(--space-12);
}
.legal-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.legal-inner h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  margin: var(--space-8) 0 var(--space-3);
}
.legal-inner p {
  line-height: 1.7;
  color: var(--color-text-muted);
}
.legal-inner a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-stand {
  margin-top: var(--space-8);
  font-size: var(--text-sm);
}
.footer-nav {
  display: flex;
  gap: var(--space-5);
}
.footer-nav a {
  color: inherit;
  text-decoration: none;
}
.footer-nav a:hover {
  color: var(--color-primary);
}
