/* We Are Dogfight — homepage styles
   Builds on tokens.css. Page-level layout, section rhythm, reveal animations. */

html, body {
  margin: 0; padding: 0;
  background: var(--dgf-paper);
  color: var(--dgf-ink);
  font-family: var(--dgf-display);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

* { box-sizing: border-box; }

/* Clean tap highlight on touch devices */
a, button, input, textarea, select {
  -webkit-tap-highlight-color: transparent;
}

a { color: inherit; }

/* ───── Wordmark (Dogfight.) ───── */
.dgf-word {
  font-family: var(--dgf-display);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.85;
  display: inline-block;
}
.dgf-word-dot { color: var(--dgf-red); margin-left: 0.02em; }

/* ───── Reveal base ───── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* ───── Container ───── */
.dgf-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 72px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1100px) {
  .dgf-container { padding: 0 48px; }
}
@media (max-width: 720px) {
  .dgf-container { padding: 0 24px; }
}
@media (max-width: 420px) {
  .dgf-container { padding: 0 20px; }
}

/* ───── Section base ───── */
.dgf-section {
  position: relative;
  padding: 128px 0;
  overflow: hidden;
}
.dgf-section.tight { padding: 96px 0; }
.dgf-section.field { background: var(--dgf-blue); color: var(--dgf-paper); }
.dgf-section.night { background: var(--dgf-night); color: var(--dgf-paper-on-night); }
.dgf-section.paper-2 { background: var(--dgf-paper-2); }
@media (max-width: 900px) {
  .dgf-section { padding: 80px 0; }
  .dgf-section.tight { padding: 64px 0; }
}
@media (max-width: 520px) {
  .dgf-section { padding: 64px 0; }
}

.section-eyebrow {
  font-family: var(--dgf-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dgf-fog);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.dgf-section.field .section-eyebrow,
.dgf-section.night .section-eyebrow {
  color: rgba(241, 236, 226, 0.55);
}
.section-eyebrow .rule {
  flex: 0 0 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}

.section-title {
  font-family: var(--dgf-display);
  font-weight: 700;
  font-size: clamp(56px, 9vw, 136px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  color: var(--dgf-ink);
  margin: 0 0 56px;
  max-width: 18ch;
}
.dgf-section.field .section-title,
.dgf-section.night .section-title { color: var(--dgf-paper); }
.section-title em.dgf-em,
.dgf-em { font-style: normal; font-weight: inherit; color: var(--dgf-red); }

.section-lede {
  font-family: var(--dgf-display);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--dgf-ink-soft);
  max-width: 28ch;
  margin: 0;
}
.dgf-section.field .section-lede,
.dgf-section.night .section-lede { color: rgba(241, 236, 226, 0.75); }

/* ───── CTA primary (red pill) ───── */
.cta-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 26px;
  background: var(--dgf-red);
  color: #ffffff;
  border-radius: 999px;
  border: none; cursor: pointer;
  font-family: var(--dgf-display);
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  transition: filter 0.15s, transform 0.15s;
}
.cta-primary:hover { filter: brightness(1.08); }
.cta-primary:hover .arrow { transform: translateX(3px); }
.cta-primary .arrow { transition: transform 0.2s; display: inline-block; }

.cta-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--dgf-display); font-weight: 600; font-size: 17px;
  cursor: pointer; text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.cta-ghost:hover { background: var(--dgf-ink); color: var(--dgf-paper); border-color: var(--dgf-ink); }
.dgf-section.field .cta-ghost:hover { background: var(--dgf-paper); color: var(--dgf-blue); border-color: var(--dgf-paper); }
.dgf-section.night .cta-ghost:hover { background: var(--dgf-paper-on-night); color: var(--dgf-night); border-color: var(--dgf-paper-on-night); }

/* ───── Trajectory utility ───── */
.traj-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.traj-path {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: var(--len, 3000);
  stroke-dashoffset: var(--len, 3000);
  transition: stroke-dashoffset 2.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.traj-path.in { stroke-dashoffset: 0; }
.strike-anchor circle { transform-origin: center; }
.strike-anchor .ring-outer { opacity: 0; transition: opacity 0.6s 1.6s ease; }
.strike-anchor .ring-mid { opacity: 0; transition: opacity 0.6s 1.8s ease; }
.strike-anchor .dot {
  opacity: 0;
  transform: scale(0.3);
  transition: opacity 0.5s 2s ease, transform 0.6s 2s cubic-bezier(0.4, 1.6, 0.4, 1);
}
.strike-anchor.in .ring-outer { opacity: 0.5; }
.strike-anchor.in .ring-mid { opacity: 1; }
.strike-anchor.in .dot { opacity: 1; transform: scale(1); }

/* ───── Geometric blocks (abstract rhythm) ───── */
.geo-block {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.geo-block.fill-paper-2 { background: var(--dgf-paper-2); }
.geo-block.fill-blue { background: var(--dgf-blue); }
.geo-block.fill-red { background: var(--dgf-red); }
.geo-block.fill-ink { background: var(--dgf-ink); }
.geo-block.fill-night-2 { background: var(--dgf-night-2); }
.geo-block.outline {
  background: transparent;
  border: 1px solid var(--dgf-ink);
}
.dgf-section.field .geo-block.outline,
.dgf-section.night .geo-block.outline {
  border-color: rgba(241, 236, 226, 0.3);
}

/* ───── Density tweak ───── */
body.density-tight .dgf-section { padding: 88px 0; }
body.density-tight .section-title { margin-bottom: 40px; }
body.density-tight .dgf-container { padding: 0 56px; }
@media (max-width: 900px) {
  body.density-tight .dgf-section { padding: 64px 0; }
  body.density-tight .dgf-container { padding: 0 24px; }
}
@media (max-width: 520px) {
  body.density-tight .dgf-container { padding: 0 20px; }
}

/* ───── Mobile ───── */
@media (max-width: 900px) {
  .section-title { font-size: clamp(40px, 10vw, 68px); margin-bottom: 32px; line-height: 0.92; }
  .section-eyebrow { margin-bottom: 24px; }
  .cta-primary { padding: 14px 22px; font-size: 16px; }
  .cta-ghost { padding: 12px 20px; font-size: 16px; }
}
@media (max-width: 520px) {
  .section-title { font-size: clamp(36px, 11vw, 56px); letter-spacing: -0.035em; }
  .section-lede { font-size: 19px; }
}

/* Trajectory SVG — hide on small screens (uses 1440x900 viewBox, looks broken in portrait) */
@media (max-width: 720px) {
  .traj-wrap { display: none; }
}

/* ───── Screen-reader only (visually hidden, accessible) ───── */
.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-to-content link ───── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--dgf-red);
  color: #fff;
  font-family: var(--dgf-display);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ───── Focus-visible — accessible focus ring on all interactive elements ───── */
:focus-visible {
  outline: 2px solid var(--dgf-blue);
  outline-offset: 3px;
}
.dgf-section.field :focus-visible,
.dgf-section.night :focus-visible,
.ftr :focus-visible {
  outline-color: var(--dgf-paper);
}

/* ───── Reduced motion — zero out all transitions/animations per DS spec ───── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .traj-path { stroke-dashoffset: 0 !important; }
  .strike-anchor .ring-outer,
  .strike-anchor .ring-mid,
  .strike-anchor .dot { opacity: 1 !important; transform: none !important; }
}

/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE SECTIONS
   ═══════════════════════════════════════════════════════════════ */

/* ───── 01 Hero ───── */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  padding: 140px 0 64px;
  display: flex; flex-direction: column;
}
.hero-inner { flex: 1; display: flex; flex-direction: column; position: relative; z-index: 2; }
.hero-stage { flex: 1; display: flex; flex-direction: column; justify-content: center; padding-bottom: 56px; }
.hero-watermark {
  position: absolute;
  top: -120px; right: -100px;
  font-family: var(--dgf-display);
  font-weight: 700;
  font-size: clamp(360px, 70vw, 1000px);
  line-height: 0.78; letter-spacing: -0.06em;
  color: rgba(241, 236, 226, 0.07);
  pointer-events: none; user-select: none;
  z-index: 0;
}
.hero-headline {
  font-family: var(--dgf-display);
  font-weight: 700;
  font-size: clamp(44px, 9.5vw, 152px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--dgf-paper);
  max-width: 16ch;
  margin: 0;
}
.hero-headline .dgf-em { color: var(--dgf-red); }
.hero-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(241, 236, 226, 0.25);
  gap: 24px;
}
.hero-cta { display: flex; }
.hero-meta {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--dgf-mono);
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(241, 236, 226, 0.75);
}
.dot-red { width: 8px; height: 8px; background: var(--dgf-red); border-radius: 50%; display: inline-block; }
@media (max-width: 900px) {
  .hero { padding: 110px 0 48px; }
  .hero-stage { padding-bottom: 40px; }
}
@media (max-width: 720px) {
  .hero { min-height: auto; padding: 100px 0 40px; }
  .hero-watermark { top: -40px; right: -60px; font-size: clamp(280px, 90vw, 460px); }
  .hero-headline { font-size: clamp(40px, 10.5vw, 72px); }
  .hero-foot { flex-direction: column; align-items: flex-start; gap: 20px; padding-top: 24px; }
  .hero-meta { font-size: 11px; }
}
@media (max-width: 420px) {
  .hero-headline { font-size: clamp(36px, 11vw, 56px); }
  .hero-watermark { font-size: clamp(240px, 95vw, 360px); top: -20px; }
}

/* ───── 02 Probleem ───── */
.probleem { padding: 160px 0; }
.prob-title { max-width: 14ch; margin-bottom: 32px; }
.prob-subtitle {
  font-family: var(--dgf-display);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--dgf-ink-soft);
  margin: 0 0 80px;
  max-width: 22ch;
}
.prob-body {
  display: flex; flex-direction: column;
  gap: 32px;
  max-width: 760px;
}
.prob-p {
  font-family: var(--dgf-display);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--dgf-ink-soft);
  margin: 0;
}
.prob-p-question {
  font-weight: 600;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.25;
  color: var(--dgf-ink);
  padding: 24px 0;
}
.prob-p-coda {
  font-weight: 600;
  color: var(--dgf-ink);
  padding-top: 24px;
  border-top: 1px solid var(--dgf-rule);
}
@media (max-width: 900px) {
  .probleem { padding: 80px 0; }
  .prob-title { margin-bottom: 24px; }
  .prob-subtitle { font-size: clamp(22px, 5.5vw, 32px); margin-bottom: 48px; }
  .prob-body { gap: 24px; }
  .prob-p { font-size: clamp(18px, 4.8vw, 22px); }
  .prob-p-question { font-size: clamp(22px, 6vw, 28px); padding: 16px 0; }
}

/* ───── 03 Werkwijze ───── */
.werk { padding: 160px 0; }
.werk .section-title { max-width: 16ch; margin-bottom: 64px; }
.werk-lede {
  font-family: var(--dgf-display);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--dgf-ink);
  max-width: 24ch;
  margin: 0 0 48px;
}
.werk-after {
  font-family: var(--dgf-display);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.35;
  color: var(--dgf-ink-soft);
  margin: 0;
  max-width: 36ch;
  padding-top: 32px;
  border-top: 1px solid var(--dgf-rule);
}
@media (max-width: 900px) {
  .werk { padding: 80px 0; }
  .werk .section-title { margin-bottom: 32px; }
  .werk-lede { font-size: clamp(22px, 5.5vw, 32px); margin-bottom: 32px; }
  .werk-after { font-size: 17px; padding-top: 24px; }
}

/* ───── 04 Programma's ───── */
.prog { padding: 160px 0; }
.prog .section-title { margin-bottom: 64px; }
.prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.prog-card {
  padding: 36px 32px;
  min-height: 440px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.prog-card:hover {
  transform: translateY(-3px);
  filter: brightness(1.03);
}
.prog-card:hover .prog-go {
  transform: translateX(3px);
}
.prog-card:focus-visible {
  transform: translateY(-3px);
  filter: brightness(1.03);
  outline: 2px solid var(--dgf-red);
  outline-offset: 4px;
}
.prog-card:focus-visible .prog-go {
  transform: translateX(3px);
}
.prog-tone-mustard { background: var(--dgf-mustard-soft); --acc: var(--dgf-mustard-deep); }
.prog-tone-coral   { background: var(--dgf-coral-soft);   --acc: var(--dgf-coral-deep); }
.prog-tone-forest  {
  background: var(--dgf-forest-deep);
  --acc: var(--dgf-forest-soft);
  color: var(--dgf-paper-on-night);
}
.prog-tone-forest .prog-name { color: var(--dgf-paper-on-night); }
.prog-tone-forest .prog-verb { color: var(--dgf-mustard-soft); }
.prog-tone-forest .prog-body { color: rgba(236, 231, 220, 0.8); }
.prog-n {
  font-family: var(--dgf-mono);
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--acc);
}
.prog-card-body { padding-top: 32px; }
.prog-name {
  font-family: var(--dgf-display);
  font-weight: 700;
  font-size: clamp(72px, 7vw, 112px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  margin: 0 0 32px;
  color: var(--dgf-ink);
}
.prog-verb {
  font-family: var(--dgf-display);
  font-weight: 700;
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--acc);
  margin: 0 0 24px;
}
.prog-body {
  font-family: var(--dgf-display);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.35;
  color: var(--dgf-ink-soft);
  margin: 0;
  max-width: 22ch;
}
.prog-card-foot {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid color-mix(in oklab, var(--acc) 25%, transparent);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.prog-tone-forest .prog-card-foot {
  border-top-color: rgba(236, 231, 220, 0.22);
}
.prog-kpi {
  font-family: var(--dgf-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--acc);
}
.prog-tone-forest .prog-kpi { color: rgba(236, 231, 220, 0.7); }
.prog-go {
  font-family: var(--dgf-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--acc);
  display: inline-block;
  transition: transform 0.2s ease;
}
.prog-tone-forest .prog-go {
  color: var(--dgf-mustard-soft);
}
@media (hover: none) {
  .prog-card:hover {
    transform: none;
    filter: none;
  }
  .prog-card:hover .prog-go {
    transform: none;
  }
}
.prog-card:active {
  transform: translateY(-1px);
  filter: brightness(0.98);
  transition-duration: 0.08s;
}
.prog-card:active .prog-go {
  transform: translateX(2px);
}
.prog-entries {
  margin-top: 96px;
  padding-top: 40px;
  border-top: 1px solid var(--dgf-rule);
}
.prog-entries-label {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--dgf-mono); font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--dgf-fog); margin-bottom: 32px;
}
.prog-entries-label .rule { flex: 0 0 32px; height: 1px; background: var(--dgf-rule); }
.prog-entries-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
}
.prog-entry {
  display: block;
  position: relative;
  padding-right: 40px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}
.prog-entry-name {
  font-family: var(--dgf-display);
  font-weight: 700; font-size: clamp(28px, 2.4vw, 40px);
  letter-spacing: -0.025em;
  margin: 0 0 8px;
  color: var(--dgf-ink);
  transition: color 0.15s;
}
.prog-entry-body {
  font-family: var(--dgf-display);
  font-weight: 500; font-size: 19px;
  color: var(--dgf-ink-soft); line-height: 1.4;
  margin: 0;
}
.prog-entry-body .dim { color: var(--dgf-fog); }
.prog-entry-go {
  position: absolute;
  top: 4px;
  right: 0;
  font-family: var(--dgf-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--dgf-fog);
  display: inline-block;
  transition: transform 0.2s, color 0.15s;
}
.prog-entry:hover {
  transform: translateX(2px);
}
.prog-entry:hover .prog-entry-name {
  color: var(--dgf-red);
}
.prog-entry:hover .prog-entry-go {
  transform: translateX(3px);
  color: var(--dgf-red);
}
.prog-entry:focus-visible {
  transform: translateX(2px);
  outline: 2px solid var(--dgf-red);
  outline-offset: 6px;
}
.prog-entry:focus-visible .prog-entry-name { color: var(--dgf-red); }
.prog-entry:focus-visible .prog-entry-go {
  transform: translateX(3px);
  color: var(--dgf-red);
}
@media (hover: none) {
  .prog-entry:hover { transform: none; }
  .prog-entry:hover .prog-entry-name { color: inherit; }
  .prog-entry:hover .prog-entry-go {
    transform: none;
    color: var(--dgf-fog);
  }
}
.prog-entry:active .prog-entry-name { color: var(--dgf-red); }
.prog-entry:active .prog-entry-go {
  color: var(--dgf-red);
  transform: translateX(3px);
}
@media (max-width: 900px) {
  .prog { padding: 80px 0; }
  .prog-grid { grid-template-columns: 1fr; }
  .prog-card { min-height: 0; padding: 32px 24px; }
  .prog-name { font-size: clamp(56px, 14vw, 84px); margin-bottom: 20px; }
  .prog-verb { font-size: clamp(24px, 6vw, 32px); margin-bottom: 16px; }
  .prog-body { font-size: 18px; }
  .prog-entries { margin-top: 56px; }
  .prog-entries-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .prog-card { padding: 28px 22px; }
  .prog-name { font-size: clamp(48px, 16vw, 72px); }
}

/* ───── 05 AI als motor ───── */
.ai { padding: 160px 0; }
.ai-watermark {
  position: absolute;
  bottom: -160px; right: -40px;
  font-family: var(--dgf-display);
  font-weight: 700;
  font-size: clamp(280px, 56vw, 800px);
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: rgba(236, 231, 220, 0.04);
  pointer-events: none; user-select: none;
  z-index: 0;
}
.ai-title {
  font-family: var(--dgf-display);
  font-weight: 700;
  font-size: clamp(40px, 6.8vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--dgf-paper-on-night);
  margin: 0 0 80px;
  max-width: 18ch;
}
.ai-body {
  display: flex; flex-direction: column; gap: 24px;
  max-width: 640px; margin-left: auto;
  padding-left: 80px;
  border-left: 1px solid rgba(236, 231, 220, 0.2);
}
.ai-body p {
  font-family: var(--dgf-display);
  font-weight: 500; font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.5;
  color: rgba(236, 231, 220, 0.85);
  margin: 0;
}
@media (max-width: 900px) {
  .ai { padding: 80px 0; }
  .ai-title { margin-bottom: 48px; }
  .ai-body { margin-left: 0; padding-left: 24px; }
}
@media (max-width: 520px) {
  .ai-title { font-size: clamp(32px, 9vw, 56px); margin-bottom: 36px; }
  .ai-watermark { font-size: clamp(220px, 80vw, 360px); bottom: -80px; right: -20px; }
  .ai-body { padding-left: 16px; gap: 18px; }
  .ai-body p { font-size: 17px; }
}

/* ───── 06 Voor wie ───── */
.vw { padding: 160px 0; }
.vw-title { max-width: 14ch; margin-bottom: 96px; }
.vw-body {
  display: flex; flex-direction: column; gap: 40px;
  max-width: 820px;
}
.vw-question {
  font-family: var(--dgf-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--dgf-ink);
  margin: 0;
  max-width: 18ch;
}
.vw-p {
  font-family: var(--dgf-display);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.45;
  color: var(--dgf-ink-soft);
  margin: 0;
  max-width: 36ch;
}
.vw-p-coda {
  padding-top: 32px;
  border-top: 1px solid var(--dgf-rule);
  color: var(--dgf-ink);
  font-weight: 600;
}
@media (max-width: 900px) {
  .vw { padding: 80px 0; }
  .vw-title { margin-bottom: 40px; }
  .vw-body { gap: 24px; }
  .vw-question { font-size: clamp(26px, 7vw, 36px); }
  .vw-p { font-size: 17px; }
  .vw-p-coda { padding-top: 24px; font-size: 17px; }
}

/* ───── 07 Nee tegen ───── */
.nee { padding: 160px 0; }
.nee .section-title { margin-bottom: 80px; }
.nee-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 80px; align-items: start;
}
.nee-list {
  list-style: none; margin: 0; padding: 0;
  border-top: 1px solid var(--dgf-rule);
}
.nee-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 28px 0;
  align-items: baseline;
  border-bottom: 1px solid var(--dgf-rule);
}
.nee-num {
  font-family: var(--dgf-mono);
  font-size: 13px;
  color: var(--dgf-fog);
  letter-spacing: 0.06em;
  padding-top: 4px;
}
.nee-text {
  font-family: var(--dgf-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--dgf-ink);
}
.nee-coda {
  position: sticky; top: 120px;
  padding-top: 24px;
  border-top: 4px solid var(--dgf-red);
}
.nee-coda p {
  font-family: var(--dgf-display);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--dgf-ink);
  margin: 0;
}
@media (max-width: 900px) {
  .nee { padding: 80px 0; }
  .nee .section-title { margin-bottom: 48px; }
  .nee-grid { grid-template-columns: 1fr; gap: 32px; }
  .nee-coda { position: static; padding-top: 20px; border-top-width: 3px; }
  .nee-item { grid-template-columns: 44px 1fr; gap: 16px; padding: 22px 0; }
  .nee-text { font-size: clamp(28px, 8vw, 40px); }
  .nee-num { font-size: 11px; padding-top: 6px; }
}
@media (max-width: 420px) {
  .nee-item { grid-template-columns: 36px 1fr; gap: 12px; padding: 18px 0; }
  .nee-text { font-size: clamp(24px, 8.5vw, 32px); }
}

/* ───── 08 Closing ───── */
.closing { padding: 160px 0 120px; min-height: 80vh; display: flex; align-items: center; }
.closing-inner { position: relative; z-index: 2; display: flex; flex-direction: column; width: 100%; gap: 96px; }
.closing-watermark {
  position: absolute;
  top: -100px; right: -100px;
  font-family: var(--dgf-display);
  font-weight: 700;
  font-size: clamp(360px, 70vw, 1000px);
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: rgba(241, 236, 226, 0.07);
  pointer-events: none; user-select: none;
  z-index: 0;
}
.closing-title {
  font-family: var(--dgf-display);
  font-weight: 700;
  font-size: clamp(56px, 10vw, 168px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--dgf-paper);
  margin: 0;
  max-width: 14ch;
}
.closing-title .dgf-em { color: var(--dgf-red); }
.closing-cta-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(241, 236, 226, 0.25);
}
.closing-cta {
  padding: 22px 36px !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  gap: 16px !important;
}
.closing-cta .arrow { font-size: 24px; }
.closing-sig {
  display: flex; align-items: baseline; gap: 14px;
}
.closing-sig-pre {
  order: -1;
  font-family: var(--dgf-display);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  color: rgba(241, 236, 226, 0.75);
  letter-spacing: -0.005em;
}
.closing-sig .dgf-word { color: var(--dgf-paper); }
@media (max-width: 900px) {
  .closing { padding: 96px 0 80px; min-height: 0; }
  .closing-inner { gap: 64px; }
  .closing-title { font-size: clamp(48px, 12vw, 88px); }
  .closing-watermark { top: -40px; right: -40px; font-size: clamp(280px, 90vw, 460px); }
}
@media (max-width: 720px) {
  .closing { padding: 80px 0 64px; }
  .closing-inner { gap: 48px; }
  .closing-cta-row { flex-direction: column; align-items: flex-start; gap: 24px; }
  .closing-cta {
    padding: 18px 26px !important;
    font-size: 17px !important;
    gap: 12px !important;
  }
  .closing-cta .arrow { font-size: 18px; }
}
@media (max-width: 420px) {
  .closing-title { font-size: clamp(40px, 13vw, 64px); }
  .closing-watermark { font-size: clamp(240px, 100vw, 360px); top: -20px; right: -20px; }
}

/* ───── 09 Contact ───── */
.contact { padding: 160px 0 96px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 96px; align-items: start; }
.contact-title {
  font-family: var(--dgf-display);
  font-weight: 700;
  font-size: clamp(56px, 7vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  margin: 0 0 32px;
  color: var(--dgf-ink);
}
.contact-lede {
  font-family: var(--dgf-display);
  font-weight: 500;
  font-size: 20px; line-height: 1.45;
  color: var(--dgf-ink-soft);
  max-width: 30ch;
  margin: 0 0 56px;
}
.contact-meta {
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--dgf-rule);
}
.contact-meta-mail {
  font-family: var(--dgf-display);
  font-weight: 600; font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--dgf-ink);
  text-decoration: none;
  transition: color 0.15s;
}
.contact-meta-mail:hover { color: var(--dgf-red); }
.contact-meta-loc {
  font-family: var(--dgf-mono); font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--dgf-fog);
}
.contact-form {
  display: flex; flex-direction: column; gap: 8px;
}
.contact-line { display: flex; }
.contact-line-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-line-split > div { display: flex; flex-direction: column; }
.contact-line input,
.contact-line textarea {
  width: 100%;
  padding: 24px 0 16px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--dgf-rule);
  color: var(--dgf-ink);
  font-family: var(--dgf-display);
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 24px);
  letter-spacing: -0.01em;
  border-radius: 0;
  transition: border-color 0.2s;
}
.contact-line textarea { resize: vertical; min-height: 60px; line-height: 1.35; font-weight: 500; }
.contact-line input::placeholder,
.contact-line textarea::placeholder {
  color: var(--dgf-fog);
  font-weight: 500;
}
.contact-line input:focus,
.contact-line textarea:focus {
  border-bottom-color: var(--dgf-red);
}
.contact-line input:focus:not(:focus-visible),
.contact-line textarea:focus:not(:focus-visible) {
  outline: none;
}
.contact-line input:focus::placeholder,
.contact-line textarea:focus::placeholder {
  color: transparent;
}
.contact-line-q textarea { font-weight: 600; }
.contact-line-q textarea::placeholder { color: var(--dgf-ink-soft); opacity: 0.55; }
.contact-form-foot {
  padding-top: 32px;
  margin-top: 16px;
}
.contact-cta {
  padding: 22px 36px !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  gap: 16px !important;
  border: none !important;
}
.contact-cta .arrow { font-size: 24px; }
.contact-thanks {
  align-items: flex-start;
  min-height: 380px; gap: 16px; padding-top: 40px;
}
.contact-thanks h3 {
  font-family: var(--dgf-display);
  font-weight: 700; font-size: 56px;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--dgf-ink);
}
.contact-thanks p {
  font-family: var(--dgf-display);
  font-weight: 500; font-size: 19px;
  line-height: 1.4;
  color: var(--dgf-ink-soft); margin: 0; max-width: 38ch;
}
@media (max-width: 900px) {
  .contact { padding: 80px 0 56px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-line-split { grid-template-columns: 1fr; gap: 8px; }
  .contact-line-split > div { display: flex; flex-direction: column; }
  .contact-title { font-size: clamp(44px, 12vw, 72px); margin-bottom: 24px; }
  .contact-lede { font-size: 18px; margin-bottom: 40px; }
  .contact-line input,
  .contact-line textarea { font-size: 18px; padding: 20px 0 14px; }
  .contact-cta {
    padding: 18px 26px !important;
    font-size: 17px !important;
    gap: 12px !important;
    width: 100%;
    justify-content: space-between;
  }
  .contact-cta .arrow { font-size: 18px; }
  .contact-meta-mail { font-size: 19px; word-break: break-all; }
  .contact-thanks { padding-top: 24px; min-height: 0; }
  .contact-thanks h3 { font-size: 40px; }
}

/* ───── Stagger Headline ───── */
.stagger { margin: 0; }
.stagger-line { display: block; overflow: hidden; padding-bottom: 0.16em; margin-bottom: -0.08em; line-height: inherit; }
.stagger-line-inner { display: block; }
.stagger-word {
  display: inline-block;
  opacity: 0; transform: translateY(110%);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform, opacity;
}
.stagger-word.in { opacity: 1; transform: none; }

/* ───── Trajectory wrap & Strike Fixed ───── */
.traj-wrap { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.strike-fixed {
  position: absolute;
  width: clamp(80px, 8vw, 140px);
  height: clamp(80px, 8vw, 140px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.strike-fixed svg { width: 100%; height: 100%; display: block; }

