/* ============================================================
   VOLT7 — Design Tokens & Component Styles
   Palette: Warm parchment surfaces · Deep forest green accent
   Typography: Instrument Serif (display) · Work Sans (body)
   ============================================================ */

/* ---------- TYPE SCALE ---------- */
:root {
  --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);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    7.5rem);
}

/* ---------- SPACING ---------- */
:root {
  --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;
}

/* ---------- LIGHT MODE ---------- */
:root, [data-theme="light"] {
  /* Warm off-white surfaces — toned down parchment */
  --color-bg:              #f7f6f2;
  --color-surface:         #faf9f6;
  --color-surface-2:       #fcfbf9;
  --color-surface-offset:  #edeae3;
  --color-divider:         #dedbd2;
  --color-border:          #cfccc3;

  /* Warm dark text — Volt Grijs derived */
  --color-text:            #272a31;
  --color-text-muted:      #5a5d65;
  --color-text-faint:      #aaacb2;
  --color-text-inverse:    #f7f6f2;

  /* Volt Grijs als primaire achtergrond voor knoppen — gezaghebbend */
  --color-primary:         #272a31;
  --color-primary-hover:   #1a1d22;
  --color-primary-active:  #0f1114;
  --color-primary-highlight: #e8e9eb;

  /* Volt Geel als accent — de energieke handtekening van VOLT7 */
  --color-accent:          #c9b800;
  --color-accent-bright:   #fae511;
  --color-accent-light:    #fdf7c3;

  /* Turquoise — voor Education flavour */
  --color-edu:             #4fbece;
  --color-edu-light:       #d6f2f6;

  /* Donkerblauw — voor Business flavour */
  --color-biz:             #3983c2;
  --color-biz-light:       #d0e6f5;

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

  /* Transitions */
  --transition-interactive: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px oklch(0.15 0.02 80 / 0.08);
  --shadow-md: 0 4px 16px oklch(0.15 0.02 80 / 0.10);
  --shadow-lg: 0 12px 40px oklch(0.15 0.02 80 / 0.14);

  /* Content widths */
  --content-narrow:  640px;
  --content-default: 960px;
  --content-wide:    1200px;

  /* Fonts */
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body:    'Work Sans', 'Helvetica Neue', sans-serif;
}

/* ---------- DARK MODE ---------- */
[data-theme="dark"] {
  --color-bg:              #16181d;
  --color-surface:         #1c1e24;
  --color-surface-2:       #21242b;
  --color-surface-offset:  #13151a;
  --color-divider:         #2e3039;
  --color-border:          #3a3d48;
  --color-text:            #d8d9dc;
  --color-text-muted:      #8a8d97;
  --color-text-faint:      #555860;
  --color-text-inverse:    #16181d;
  --color-primary:         #fae511;
  --color-primary-hover:   #e8d400;
  --color-primary-active:  #d4c100;
  --color-primary-highlight: #2a2a1a;
  --color-accent:          #fae511;
  --color-accent-bright:   #fae511;
  --color-accent-light:    #2a2a1a;
  --color-edu:             #4fbece;
  --color-edu-light:       #0e2a2e;
  --color-biz:             #3983c2;
  --color-biz-light:       #0c1e30;
  --shadow-sm: 0 1px 3px oklch(0 0 0 / 0.3);
  --shadow-md: 0 4px 16px oklch(0 0 0 / 0.4);
  --shadow-lg: 0 12px 40px oklch(0 0 0 / 0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:              #131210;
    --color-surface:         #181714;
    --color-surface-2:       #1d1c19;
    --color-surface-offset:  #1a1916;
    --color-divider:         #252320;
    --color-border:          #333028;
    --color-text:            #d4d1cb;
    --color-text-muted:      #7a7870;
    --color-text-faint:      #504e48;
    --color-text-inverse:    #1a1916;
    --color-primary:         #5a9e82;
    --color-primary-hover:   #3d8268;
    --color-primary-active:  #2a6550;
    --color-primary-highlight: #1e3028;
    --color-accent:          #c4a060;
    --color-accent-light:    #2a2518;
    --shadow-sm: 0 1px 3px oklch(0 0 0 / 0.25);
    --shadow-md: 0 4px 16px oklch(0 0 0 / 0.35);
    --shadow-lg: 0 12px 40px oklch(0 0 0 / 0.45);
  }
}

/* ============================================================
   LAYOUT & COMPONENTS
   ============================================================ */

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in oklch, var(--color-bg) 90%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow var(--transition-interactive);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-decoration: none;
  color: var(--color-text);
}

.logo-inner {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  opacity: 0.75;
  display: block;
  margin-top: -2px;
  line-height: 1;
}


/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--color-text);
}

.nav-cta {
  background: #272a31 !important;
  color: #fae511 !important;
  padding: var(--space-2) var(--space-5) !important;
  border-radius: var(--radius-full);
  font-weight: 700 !important;
  letter-spacing: 0.01em;
}

.nav-cta:hover {
  background: #1a1d22 !important;
  color: #fae511 !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.theme-toggle {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.theme-toggle:hover {
  background: var(--color-surface-offset);
  color: var(--color-text);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-divider);
    padding: var(--space-6);
    z-index: 99;
    box-shadow: var(--shadow-md);
  }

  .nav-links a {
    font-size: var(--text-base);
  }
}

/* ---------- HERO ---------- */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: clamp(var(--space-16), 10vw, var(--space-32)) var(--space-6);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at 70% 40%,
    rgba(250, 229, 17, 0.06),
    transparent 70%
  );
  pointer-events: none;
}

.hero-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero-content {
  max-width: 580px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-accent-bright, #fae511);
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  line-height: 1.08;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.hero-title em {
  font-style: italic;
  /* Gebruik Volt Grijs als basis — geel werkt niet als italic op lichte bg */
  color: var(--color-text);
  position: relative;
}

/* Gele onderstreep als VOLT7-handtekening onder de italic woorden */
.hero-title em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--color-accent-bright, #fae511);
  border-radius: 2px;
}

.hero-lead {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-10);
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--color-accent-bright, #fae511);
  color: #272a31;
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
  display: inline-block;
  transition: background var(--transition-interactive), transform 120ms ease;
}

.btn-primary:hover {
  background: #f0dc00;
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 2px;
}

.btn-secondary:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
  max-width: 360px;
  width: 100%;
}

.hero-card-quote {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  line-height: 1.35;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.hero-card-divider {
  width: 32px;
  height: 2px;
  background: #fae511;
  margin-bottom: var(--space-4);
}

.hero-card-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.hero-card-role {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .hero-visual { justify-content: flex-start; }
  .hero-card { max-width: 100%; }
}

/* ---------- SECTIONS ---------- */
.section {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) var(--space-6);
}

.section-inner {
  max-width: var(--content-default);
  margin: 0 auto;
}

.section-wide {
  max-width: var(--content-wide);
  margin: 0 auto;
}

.section-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.section-title em {
  font-style: italic;
  color: var(--color-primary);
}

.section-body {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 60ch;
}

/* ---------- STORY SECTION ---------- */
.story-section {
  background: var(--color-surface-offset);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-12), 6vw, var(--space-24));
  align-items: start;
}

.story-text p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-5);
  max-width: 58ch;
}

.story-text p:last-child { margin-bottom: 0; }

.story-text strong {
  color: var(--color-text);
  font-weight: 600;
}

.story-aside {
  position: sticky;
  top: calc(var(--space-16) + var(--space-8));
}

.story-pull-quote {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  line-height: 1.4;
  color: var(--color-text);
  padding-left: var(--space-6);
  border-left: 3px solid #fae511;
  margin-bottom: var(--space-6);
}

.story-timeline {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.timeline-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.timeline-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fae511;
  margin-top: 6px;
  flex-shrink: 0;
}

.timeline-content {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.timeline-content strong {
  display: block;
  color: var(--color-text);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

@media (max-width: 768px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-aside { position: static; }
}

/* ---------- DOMAINS ---------- */
.domains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.domain-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 3px solid transparent;
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: box-shadow var(--transition-interactive), transform var(--transition-interactive);
}

.domain-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Kleuraccent per werkveld — VOLT7 sub-brand */
.domain-card:nth-child(1) { border-top-color: #4fbece; } /* Onderwijs: Turquoise */
.domain-card:nth-child(2) { border-top-color: #fae511; } /* Business: Volt Geel */
.domain-card:nth-child(3) { border-top-color: #3983c2; } /* Individuen: Donkerblauw */

.domain-card:nth-child(1) .domain-icon { color: #4fbece; }
.domain-card:nth-child(2) .domain-icon { color: #c9b800; }
.domain-card:nth-child(3) .domain-icon { color: #3983c2; }

.domain-card:nth-child(1) .domain-tag { color: #4fbece; }
.domain-card:nth-child(2) .domain-tag { color: #c9b800; }
.domain-card:nth-child(3) .domain-tag { color: #3983c2; }

.domain-icon {
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-5);
  color: var(--color-primary);
}

.domain-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.domain-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 32ch;
}

.domain-tag {
  display: inline-block;
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.05em;
}

/* Domain card badge — pill bovenaan de kaart */
.domain-card-badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
  background: #4fbece;
  color: #fff;
}

.domain-card-badge--soon {
  background: var(--color-surface-offset);
  color: var(--color-text-muted);
  border: 1px solid var(--color-divider);
}

/* Active card — Onderwijs: volle styling */
.domain-card--active {
  box-shadow: 0 2px 16px 0 rgba(79, 190, 206, 0.10);
}

/* Soon card — gedimde / in opbouw weergave */
.domain-card--soon {
  opacity: 0.72;
}

.domain-card--soon:hover {
  opacity: 0.9;
}

/* CTA tag — klikbare "Schrijf je in als eerste" link */
.domain-tag--cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  font-weight: 600;
  color: #4fbece;
  text-decoration: none;
  letter-spacing: 0.03em;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-interactive), color var(--transition-interactive);
}

.domain-tag--cta:hover {
  border-bottom-color: #4fbece;
}

/* Muted tag — "in opbouw" */
.domain-tag--muted {
  display: inline-block;
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-faint);
  font-style: italic;
}

@media (max-width: 900px) {
  .domains-grid { grid-template-columns: 1fr; }
}

/* ---------- WACHTLIJST SECTION ---------- */
.waitlist-section {
  background: #f0fafb;
  border-top: 3px solid #4fbece;
  border-bottom: 1px solid #c8edf2;
  padding: clamp(var(--space-16), 8vw, var(--space-24)) var(--space-6);
}

[data-theme="dark"] .waitlist-section {
  background: color-mix(in oklch, #4fbece 8%, var(--color-bg));
  border-bottom-color: color-mix(in oklch, #4fbece 25%, transparent);
}

.waitlist-inner {
  max-width: var(--content-narrow);
  margin: 0 auto;
  text-align: center;
}

.waitlist-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4fbece;
  margin-bottom: var(--space-4);
}

.waitlist-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  line-height: 1.25;
  color: var(--color-text);
  margin-bottom: var(--space-5);
}

.waitlist-title em {
  font-style: italic;
  color: #4fbece;
}

.waitlist-body {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 52ch;
  margin: 0 auto var(--space-10);
}

.waitlist-embed {
  max-width: 540px;
  margin: 0 auto;
}

.waitlist-embed iframe {
  width: 100%;
  min-height: 400px;
  border: none;
  border-radius: var(--radius-lg);
}

/* Fallback when no Tally embed yet */
.waitlist-placeholder {
  background: var(--color-surface);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-10) var(--space-8);
  text-align: center;
}

.waitlist-placeholder p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.waitlist-placeholder .btn-primary {
  background: #4fbece;
  color: #fff;
}

.waitlist-placeholder .btn-primary:hover {
  background: #3aafbe;
}

/* ---------- TAGLINE STRIP ---------- */
.tagline-strip {
  background: #272a31;
  padding: clamp(var(--space-10), 5vw, var(--space-16)) var(--space-6);
  text-align: center;
}

.tagline-strip-text {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-style: italic;
  color: var(--color-text-inverse);
  line-height: 1.2;
  max-width: 18ch;
  margin: 0 auto var(--space-2);
}

.tagline-strip-sub {
  font-size: var(--text-sm);
  color: color-mix(in oklch, var(--color-text-inverse) 70%, transparent);
  letter-spacing: 0.05em;
  text-align: center;
  max-width: 40ch;
  margin: 0 auto;
}

/* ---------- FAQ ---------- */
.faq-section {
  background: var(--color-surface-offset);
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid color-mix(in oklch, var(--color-text) 12%, transparent);
  padding: var(--space-6) 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
  line-height: 1.4;
}

.faq-answer {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---------- CONTACT ---------- */
.contact-section {
  background: var(--color-surface-offset);
  border-top: 1px solid var(--color-divider);
}

.contact-inner {
  max-width: var(--content-narrow);
  margin: 0 auto;
  text-align: center;
}

.contact-inner .section-title {
  margin-bottom: var(--space-4);
}

.contact-inner .section-body {
  margin: 0 auto var(--space-8);
  max-width: 48ch;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  background: var(--color-surface);
}

.contact-link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-highlight);
}

/* ---------- FOOTER ---------- */
.site-footer {
  border-top: 1px solid var(--color-divider);
  padding: var(--space-8) var(--space-6);
}

.footer-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.footer-attribution {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-decoration: none;
}

.footer-attribution:hover {
  color: var(--color-text-muted);
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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