@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=Source+Serif+4:opsz,wght@8..60,400;600;700&display=swap');

:root {
  --bg: #edf3fb;
  --bg-deep: #123d70;
  --bg-night: #0f2f55;
  --ink: #173353;
  --ink-soft: #52657b;
  --line: rgba(24, 59, 102, 0.14);
  --panel: rgba(255, 255, 255, 0.98);
  --panel-strong: #ffffff;
  --brand: #2e68b2;
  --brand-deep: #17467f;
  --accent: #f2a126;
  --accent-soft: #ffe1af;
  --gold: #f2c46c;
  --shadow: 0 18px 34px rgba(17, 52, 92, 0.12);
  --shadow-soft: 0 8px 18px rgba(17, 52, 92, 0.08);
  --radius-xl: 22px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 12px;
  --content-width: min(1200px, calc(100% - 2.4rem));
  --header-offset: clamp(5.1rem, 7vw, 6.1rem);
  --header-top: #2661ad;
  --header-bottom: #17467f;
  --header-border: #133a6a;
  --primary-top: #2e68b2;
  --primary-bottom: #17467f;
  --chat-top: #ffc55d;
  --chat-bottom: #f2a126;
  --chat-ring: rgba(242, 161, 38, 0.16);
  --theme-body-background: linear-gradient(180deg, #d8e4f2 0%, #bfd3e7 36%, #abc4de 68%, #9bb8d6 100%);
  --theme-body-overlay:
    radial-gradient(circle at 12% 14%, rgba(22, 70, 127, 0.34), transparent 20%),
    radial-gradient(circle at 82% 10%, rgba(242, 161, 38, 0.2), transparent 16%),
    radial-gradient(circle at 50% 84%, rgba(15, 47, 85, 0.24), transparent 28%),
    radial-gradient(circle at 92% 72%, rgba(46, 104, 178, 0.2), transparent 18%);
  --theme-illustration: none;
  --theme-illustration-size: clamp(360px, 34vw, 520px);
  --theme-illustration-opacity: 0.28;
  --theme-eyebrow-bg: rgba(242, 161, 38, 0.14);
  --theme-eyebrow-border: rgba(242, 161, 38, 0.35);
  --theme-eyebrow-color: #8a5500;
  --theme-pill-bg: rgba(19, 39, 61, 0.05);
  --theme-pill-border: rgba(19, 39, 61, 0.08);
  --theme-metric-bg: #f2f7fd;
  --theme-metric-border: #cfe0f3;
  --theme-nav-active-gradient: linear-gradient(180deg, #ffbe53 0%, #f2a126 100%);
  --theme-nav-active-border: rgba(255, 223, 162, 0.95);
  --theme-nav-active-color: #173353;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: var(--header-offset);
  min-height: 100vh;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--ink);
  position: relative;
  background: var(--theme-body-background);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: 0;
  background: var(--theme-body-overlay);
  filter: blur(6px);
}

body[data-theme="lente"] {
  --brand: #4c8f69;
  --brand-deep: #2f6f4b;
  --accent: #f5a663;
  --accent-soft: #ffe3c2;
  --header-top: #79b87f;
  --header-bottom: #4c8f69;
  --header-border: #2f6f4b;
  --primary-top: #5f9f7c;
  --primary-bottom: #2f6f4b;
  --chat-top: #ffd895;
  --chat-bottom: #f5a663;
  --chat-ring: rgba(245, 166, 99, 0.18);
  --theme-body-background: linear-gradient(180deg, #f7f6e8 0%, #e4f2df 38%, #d4e9d0 68%, #c2dcc0 100%);
  --theme-body-overlay:
    radial-gradient(circle at 14% 14%, rgba(76, 143, 105, 0.24), transparent 22%),
    radial-gradient(circle at 84% 12%, rgba(245, 166, 99, 0.18), transparent 18%),
    radial-gradient(circle at 50% 84%, rgba(47, 111, 75, 0.16), transparent 28%),
    radial-gradient(circle at 90% 72%, rgba(164, 215, 171, 0.24), transparent 18%);
  --theme-illustration: url("../images/themes/lente-pattern.svg");
  --theme-eyebrow-bg: rgba(245, 166, 99, 0.16);
  --theme-eyebrow-border: rgba(245, 166, 99, 0.34);
  --theme-eyebrow-color: #8d501f;
  --theme-pill-bg: rgba(76, 143, 105, 0.08);
  --theme-pill-border: rgba(76, 143, 105, 0.18);
  --theme-metric-bg: #f4fbf6;
  --theme-metric-border: #cfe7d6;
  --theme-nav-active-gradient: linear-gradient(180deg, #ffd895 0%, #f5a663 100%);
  --theme-nav-active-border: rgba(255, 216, 149, 0.95);
  --theme-nav-active-color: #294436;
}

body[data-theme="zomer"] {
  --brand: #1f8e9d;
  --brand-deep: #115b69;
  --accent: #f7b845;
  --accent-soft: #ffe6b2;
  --header-top: #25a4b5;
  --header-bottom: #115b69;
  --header-border: #0f5260;
  --primary-top: #1f8e9d;
  --primary-bottom: #115b69;
  --chat-top: #ffd36f;
  --chat-bottom: #f7b845;
  --chat-ring: rgba(247, 184, 69, 0.18);
  --theme-body-background: linear-gradient(180deg, #fff4d8 0%, #dff5fb 34%, #c7eef5 66%, #b2e3ea 100%);
  --theme-body-overlay:
    radial-gradient(circle at 12% 15%, rgba(31, 142, 157, 0.22), transparent 20%),
    radial-gradient(circle at 82% 12%, rgba(247, 184, 69, 0.24), transparent 18%),
    radial-gradient(circle at 52% 86%, rgba(17, 91, 105, 0.14), transparent 28%),
    radial-gradient(circle at 92% 70%, rgba(255, 209, 102, 0.22), transparent 16%);
  --theme-illustration: url("../images/themes/zomer-pattern.svg");
  --theme-eyebrow-bg: rgba(247, 184, 69, 0.17);
  --theme-eyebrow-border: rgba(247, 184, 69, 0.35);
  --theme-eyebrow-color: #8d5b00;
  --theme-pill-bg: rgba(31, 142, 157, 0.08);
  --theme-pill-border: rgba(31, 142, 157, 0.18);
  --theme-metric-bg: #effbfd;
  --theme-metric-border: #c8e8ed;
  --theme-nav-active-gradient: linear-gradient(180deg, #ffd36f 0%, #f7b845 100%);
  --theme-nav-active-border: rgba(255, 211, 111, 0.95);
  --theme-nav-active-color: #21424c;
}

body[data-theme="herfst"] {
  --brand: #9c5a2f;
  --brand-deep: #6f3d1c;
  --accent: #d98d2b;
  --accent-soft: #f4d5a5;
  --header-top: #b66d3b;
  --header-bottom: #6f3d1c;
  --header-border: #613517;
  --primary-top: #9c5a2f;
  --primary-bottom: #6f3d1c;
  --chat-top: #f0bc64;
  --chat-bottom: #d98d2b;
  --chat-ring: rgba(217, 141, 43, 0.18);
  --theme-body-background: linear-gradient(180deg, #fbefe1 0%, #ecd3b8 34%, #ddb18d 66%, #ca9068 100%);
  --theme-body-overlay:
    radial-gradient(circle at 14% 12%, rgba(156, 90, 47, 0.24), transparent 20%),
    radial-gradient(circle at 82% 10%, rgba(217, 141, 43, 0.22), transparent 16%),
    radial-gradient(circle at 50% 84%, rgba(111, 61, 28, 0.18), transparent 26%),
    radial-gradient(circle at 92% 74%, rgba(207, 122, 63, 0.2), transparent 16%);
  --theme-illustration: url("../images/themes/herfst-pattern.svg");
  --theme-eyebrow-bg: rgba(217, 141, 43, 0.16);
  --theme-eyebrow-border: rgba(217, 141, 43, 0.36);
  --theme-eyebrow-color: #7c4700;
  --theme-pill-bg: rgba(156, 90, 47, 0.08);
  --theme-pill-border: rgba(156, 90, 47, 0.18);
  --theme-metric-bg: #fcf6ef;
  --theme-metric-border: #ead2be;
  --theme-nav-active-gradient: linear-gradient(180deg, #f0bc64 0%, #d98d2b 100%);
  --theme-nav-active-border: rgba(240, 188, 100, 0.95);
  --theme-nav-active-color: #4c2d14;
}

body[data-theme="winter"] {
  --brand: #5f8cc8;
  --brand-deep: #274d83;
  --accent: #99d2f4;
  --accent-soft: #dff3ff;
  --header-top: #6e9bd6;
  --header-bottom: #274d83;
  --header-border: #1f3f6c;
  --primary-top: #5f8cc8;
  --primary-bottom: #274d83;
  --chat-top: #e7f4ff;
  --chat-bottom: #99d2f4;
  --chat-ring: rgba(153, 210, 244, 0.22);
  --theme-body-background: linear-gradient(180deg, #f2f8ff 0%, #dbe9f8 32%, #c6d9ef 66%, #b2cae4 100%);
  --theme-body-overlay:
    radial-gradient(circle at 10% 14%, rgba(95, 140, 200, 0.22), transparent 20%),
    radial-gradient(circle at 82% 12%, rgba(153, 210, 244, 0.22), transparent 18%),
    radial-gradient(circle at 48% 86%, rgba(39, 77, 131, 0.16), transparent 30%),
    radial-gradient(circle at 94% 74%, rgba(231, 244, 255, 0.28), transparent 16%);
  --theme-illustration: url("../images/themes/winter-pattern.svg");
  --theme-eyebrow-bg: rgba(153, 210, 244, 0.18);
  --theme-eyebrow-border: rgba(153, 210, 244, 0.34);
  --theme-eyebrow-color: #1c5f8d;
  --theme-pill-bg: rgba(95, 140, 200, 0.08);
  --theme-pill-border: rgba(95, 140, 200, 0.16);
  --theme-metric-bg: #f4f9ff;
  --theme-metric-border: #d4e1f0;
  --theme-nav-active-gradient: linear-gradient(180deg, #e7f4ff 0%, #99d2f4 100%);
  --theme-nav-active-border: rgba(153, 210, 244, 0.95);
  --theme-nav-active-color: #1d436c;
}

body[data-theme="pasen"] {
  --brand: #9b87d8;
  --brand-deep: #6c57ae;
  --accent: #f3a9ba;
  --accent-soft: #ffe0e8;
  --header-top: #b09de7;
  --header-bottom: #7a68c5;
  --header-border: #6652ab;
  --primary-top: #9b87d8;
  --primary-bottom: #6c57ae;
  --chat-top: #ffe5a9;
  --chat-bottom: #f3c67a;
  --chat-ring: rgba(243, 198, 122, 0.22);
  --theme-body-background: linear-gradient(180deg, #fff6fb 0%, #f2ebff 34%, #e7f3e4 68%, #d8ebf8 100%);
  --theme-body-overlay:
    radial-gradient(circle at 14% 12%, rgba(155, 135, 216, 0.22), transparent 20%),
    radial-gradient(circle at 82% 10%, rgba(243, 169, 186, 0.22), transparent 18%),
    radial-gradient(circle at 52% 84%, rgba(108, 87, 174, 0.14), transparent 28%),
    radial-gradient(circle at 92% 74%, rgba(191, 232, 191, 0.28), transparent 16%);
  --theme-illustration: url("../images/themes/pasen-pattern.svg");
  --theme-eyebrow-bg: rgba(243, 169, 186, 0.18);
  --theme-eyebrow-border: rgba(243, 169, 186, 0.34);
  --theme-eyebrow-color: #9a4c62;
  --theme-pill-bg: rgba(155, 135, 216, 0.08);
  --theme-pill-border: rgba(155, 135, 216, 0.18);
  --theme-metric-bg: #fbf7ff;
  --theme-metric-border: #e1d9f6;
  --theme-nav-active-gradient: linear-gradient(180deg, #ffe5a9 0%, #f3c67a 100%);
  --theme-nav-active-border: rgba(255, 229, 169, 0.95);
  --theme-nav-active-color: #533e89;
}

body[data-theme="kerst"] {
  --brand: #2f8b58;
  --brand-deep: #0f5b31;
  --accent: #d94a4a;
  --accent-soft: #ffd1d1;
  --header-top: #2f8b58;
  --header-bottom: #0f5b31;
  --header-border: #0b4b28;
  --primary-top: #2f8b58;
  --primary-bottom: #0f5b31;
  --chat-top: #f6da87;
  --chat-bottom: #cda23c;
  --chat-ring: rgba(205, 162, 60, 0.2);
  --theme-body-background: linear-gradient(180deg, #f5fff7 0%, #dbeedf 28%, #b8d9c4 58%, #8eb09a 100%);
  --theme-body-overlay:
    radial-gradient(circle at 12% 14%, rgba(47, 139, 88, 0.22), transparent 20%),
    radial-gradient(circle at 82% 10%, rgba(217, 74, 74, 0.2), transparent 16%),
    radial-gradient(circle at 50% 84%, rgba(15, 91, 49, 0.18), transparent 28%),
    radial-gradient(circle at 92% 72%, rgba(246, 218, 135, 0.22), transparent 18%);
  --theme-illustration: url("../images/themes/kerst-pattern.svg");
  --theme-eyebrow-bg: rgba(217, 74, 74, 0.14);
  --theme-eyebrow-border: rgba(217, 74, 74, 0.32);
  --theme-eyebrow-color: #8c1f1f;
  --theme-pill-bg: rgba(47, 139, 88, 0.08);
  --theme-pill-border: rgba(47, 139, 88, 0.18);
  --theme-metric-bg: #f2faf5;
  --theme-metric-border: #cce3d3;
  --theme-nav-active-gradient: linear-gradient(180deg, #f6da87 0%, #cda23c 100%);
  --theme-nav-active-border: rgba(246, 218, 135, 0.95);
  --theme-nav-active-color: #28432f;
}

body[data-theme="oudnieuw"] {
  --brand: #5162bc;
  --brand-deep: #212968;
  --accent: #f0c75d;
  --accent-soft: #ffe9b1;
  --header-top: #4252ab;
  --header-bottom: #1d255c;
  --header-border: #151b48;
  --primary-top: #5162bc;
  --primary-bottom: #212968;
  --chat-top: #ffe095;
  --chat-bottom: #f0c75d;
  --chat-ring: rgba(240, 199, 93, 0.2);
  --theme-body-background: linear-gradient(180deg, #eef1ff 0%, #d9ddff 24%, #afb7ea 58%, #7f89c5 100%);
  --theme-body-overlay:
    radial-gradient(circle at 14% 12%, rgba(81, 98, 188, 0.22), transparent 20%),
    radial-gradient(circle at 82% 10%, rgba(240, 199, 93, 0.24), transparent 16%),
    radial-gradient(circle at 52% 84%, rgba(33, 41, 104, 0.2), transparent 28%),
    radial-gradient(circle at 92% 72%, rgba(255, 233, 177, 0.26), transparent 16%);
  --theme-illustration: url("../images/themes/oudnieuw-pattern.svg");
  --theme-eyebrow-bg: rgba(240, 199, 93, 0.18);
  --theme-eyebrow-border: rgba(240, 199, 93, 0.36);
  --theme-eyebrow-color: #7d6112;
  --theme-pill-bg: rgba(81, 98, 188, 0.08);
  --theme-pill-border: rgba(81, 98, 188, 0.18);
  --theme-metric-bg: #f4f6ff;
  --theme-metric-border: #d6dbf6;
  --theme-nav-active-gradient: linear-gradient(180deg, #ffe095 0%, #f0c75d 100%);
  --theme-nav-active-border: rgba(255, 224, 149, 0.95);
  --theme-nav-active-color: #323b72;
}

body[data-theme="groenpaars"] {
  --brand: #7449d2;
  --brand-deep: #432484;
  --accent: #72db79;
  --accent-soft: #d9f8c8;
  --header-top: #6c42cf;
  --header-bottom: #2b996f;
  --header-border: #235f53;
  --primary-top: #8152ea;
  --primary-bottom: #2f986f;
  --chat-top: #b8ff7a;
  --chat-bottom: #6ad97f;
  --chat-ring: rgba(106, 217, 127, 0.24);
  --theme-body-background: linear-gradient(180deg, #2f3139 0%, #454158 24%, #4d665d 62%, #84ce99 100%);
  --theme-body-overlay:
    radial-gradient(circle at 12% 12%, rgba(36, 39, 45, 0.42), transparent 24%),
    radial-gradient(circle at 22% 18%, rgba(116, 73, 210, 0.28), transparent 20%),
    radial-gradient(circle at 82% 10%, rgba(114, 219, 121, 0.28), transparent 18%),
    radial-gradient(circle at 48% 84%, rgba(67, 36, 132, 0.22), transparent 28%),
    radial-gradient(circle at 94% 70%, rgba(154, 255, 167, 0.22), transparent 18%),
    radial-gradient(circle at 74% 48%, rgba(47, 50, 59, 0.24), transparent 26%);
  --theme-illustration: url("../images/themes/groenpaars-pattern.svg");
  --theme-eyebrow-bg: rgba(114, 219, 121, 0.18);
  --theme-eyebrow-border: rgba(114, 219, 121, 0.38);
  --theme-eyebrow-color: #2d6c33;
  --theme-pill-bg: rgba(116, 73, 210, 0.08);
  --theme-pill-border: rgba(116, 73, 210, 0.18);
  --theme-metric-bg: #f8f5ff;
  --theme-metric-border: #ddd3fb;
  --theme-nav-active-gradient: linear-gradient(180deg, #c6ff85 0%, #7fe56d 100%);
  --theme-nav-active-border: rgba(188, 255, 126, 0.96);
  --theme-nav-active-color: #2d3c1f;
}

body[data-theme] {
  --theme-illustration-size: clamp(260px, 24vw, 360px);
  --theme-illustration-opacity: 0.42;
}

body[data-theme="groenpaars"] {
  --theme-illustration-size: clamp(200px, 18vw, 270px);
  --theme-illustration-opacity: 0.34;
}

body::after {
  z-index: 0;
  background-image:
    var(--theme-illustration),
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size:
    clamp(360px, 34vw, 520px) auto,
    120px 120px,
    120px 120px;
  background-position:
    right top,
    0 0,
    0 0;
  background-repeat:
    repeat,
    repeat,
    repeat;
  opacity: 0.28;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 88%);
}

body[data-theme]::after {
  background-image: var(--theme-illustration);
  background-size: var(--theme-illustration-size);
  background-position: right top;
  background-repeat: repeat;
  opacity: var(--theme-illustration-opacity);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.64) 58%, transparent 96%);
}

body[data-theme="groenpaars"] .site-header {
  overflow: visible;
  background:
    radial-gradient(circle at 8% -8%, rgba(191, 255, 140, 0.18), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(173, 148, 255, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 38%),
    linear-gradient(102deg, rgba(112, 67, 211, 0.98) 0%, rgba(93, 58, 190, 0.98) 27%, rgba(68, 48, 145, 0.98) 56%, rgba(50, 94, 104, 0.98) 78%, rgba(43, 153, 111, 0.98) 100%);
  border-bottom: 0;
  box-shadow: 0 12px 28px rgba(28, 18, 56, 0.28);
}

body[data-theme="groenpaars"] .site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  height: 28px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(66, 91, 111, 0.26) 0%, rgba(73, 70, 116, 0.15) 38%, rgba(78, 95, 96, 0.08) 68%, transparent 100%);
  filter: blur(6px);
}

body[data-theme="groenpaars"]::before {
  opacity: 0.98;
  filter: blur(12px);
}

body[data-theme="groenpaars"] .site-header-inner {
  min-height: 74px;
}

body[data-theme="groenpaars"] .site-header.is-floating {
  box-shadow: 0 16px 34px rgba(24, 16, 49, 0.3);
}

body[data-theme="groenpaars"] .brand-copy strong {
  letter-spacing: 0.05em;
  text-shadow: 0 2px 12px rgba(35, 95, 83, 0.28);
}

body[data-theme="groenpaars"] .brand-copy span {
  color: rgba(234, 255, 226, 0.9);
}

body[data-theme="groenpaars"] .site-nav {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body[data-theme="groenpaars"] .site-nav a {
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 8px 16px rgba(38, 25, 70, 0.12);
}

body[data-theme="groenpaars"] .site-nav a:hover,
body[data-theme="groenpaars"] .site-nav a:focus-visible,
body[data-theme="groenpaars"] .site-nav a.is-active {
  color: #24301b;
  background: linear-gradient(135deg, rgba(214, 255, 142, 0.97) 0%, rgba(149, 236, 119, 0.95) 46%, rgba(188, 171, 255, 0.92) 100%);
  border-color: rgba(224, 255, 199, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 12px 22px rgba(67, 36, 132, 0.2);
}

body[data-theme="groenpaars"] .hero-card,
body[data-theme="groenpaars"] .section-panel,
body[data-theme="groenpaars"] .copy-card,
body[data-theme="groenpaars"] .embed-card,
body[data-theme="groenpaars"] .form-card,
body[data-theme="groenpaars"] .sitemap-card,
body[data-theme="groenpaars"] .jump-card,
body[data-theme="groenpaars"] .rule-card,
body[data-theme="groenpaars"] .stat-card {
  background:
    radial-gradient(circle at top right, rgba(114, 219, 121, 0.14), transparent 24%),
    radial-gradient(circle at left 18%, rgba(116, 73, 210, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(251, 249, 255, 0.96) 100%);
  border-color: rgba(116, 73, 210, 0.18);
  box-shadow: 0 20px 40px rgba(67, 36, 132, 0.12);
}

body[data-theme="groenpaars"] .hero-card {
  border-top-color: #72db79;
}

body[data-theme="groenpaars"] .hero-card::after {
  content: "";
  position: absolute;
  right: -2.5rem;
  bottom: -2.5rem;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(184, 255, 122, 0.82), transparent 30%),
    radial-gradient(circle at 65% 40%, rgba(116, 73, 210, 0.4), transparent 34%),
    radial-gradient(circle at 52% 64%, rgba(77, 214, 134, 0.38), transparent 30%);
  filter: blur(4px);
  opacity: 0.8;
  z-index: 0;
}

body[data-theme="groenpaars"] .hero-card > * {
  position: relative;
  z-index: 1;
}

body[data-theme="groenpaars"] .hero-card--home::before {
  background: radial-gradient(circle, rgba(116, 73, 210, 0.24), rgba(116, 73, 210, 0) 70%);
}

body[data-theme="groenpaars"] .hero-card--home::after {
  background: radial-gradient(circle, rgba(114, 219, 121, 0.26), rgba(114, 219, 121, 0) 72%);
}

body[data-theme="groenpaars"] .glass-card {
  background:
    linear-gradient(135deg, rgba(116, 73, 210, 0.18) 0%, rgba(114, 219, 121, 0.16) 100%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 16px 28px rgba(63, 36, 128, 0.12);
}

body[data-theme="groenpaars"] .pill,
body[data-theme="groenpaars"] .meta-pill,
body[data-theme="groenpaars"] .filter-chip {
  background: linear-gradient(135deg, rgba(116, 73, 210, 0.12) 0%, rgba(114, 219, 121, 0.16) 100%);
  border-color: rgba(116, 73, 210, 0.18);
}

body[data-theme="groenpaars"] .theme-select {
  border-color: rgba(221, 255, 205, 0.14);
  background: linear-gradient(135deg, rgba(113, 68, 213, 0.4) 0%, rgba(56, 122, 119, 0.34) 58%, rgba(43, 153, 111, 0.32) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 20px rgba(30, 18, 58, 0.12);
}

body[data-theme="groenpaars"] .button-primary {
  background: linear-gradient(135deg, #7a4de0 0%, #4cca7a 100%);
  box-shadow: 0 14px 26px rgba(67, 36, 132, 0.2);
}

body[data-theme="groenpaars"] .button-primary--chat {
  color: #111111;
  border: 1px solid rgba(67, 36, 132, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 28%),
    linear-gradient(135deg, #dafda1 0%, #7fe56d 38%, #916cf0 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 18px 28px rgba(67, 36, 132, 0.18),
    0 0 0 4px rgba(106, 217, 127, 0.16);
  animation: chat-pulse-green 3.6s ease-in-out infinite, float-playful 7.5s ease-in-out infinite;
}

body[data-theme="groenpaars"] .button-primary--chat::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.26), transparent 38%, rgba(255, 255, 255, 0.12) 68%, transparent 84%);
  opacity: 0.8;
  pointer-events: none;
}

body[data-theme="groenpaars"] .hero-pill-list {
  border-top-color: rgba(67, 36, 132, 0.12);
}

body[data-theme="groenpaars"] .hero-pill-list .pill {
  box-shadow: 0 10px 20px rgba(67, 36, 132, 0.08);
}

body[data-theme="groenpaars"] .metric strong {
  color: #4d2f96;
}

body[data-theme="groenpaars"] .feature-card,
body[data-theme="groenpaars"] .spotlight-card,
body[data-theme="groenpaars"] .jump-card,
body[data-theme="groenpaars"] .faq-card {
  border-top-color: #72db79;
  background:
    radial-gradient(circle at right top, rgba(114, 219, 121, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 244, 255, 0.96) 100%);
}

body[data-theme="groenpaars"] .editorial-note,
body[data-theme="groenpaars"] .toolbar-card {
  background:
    radial-gradient(circle at top right, rgba(114, 219, 121, 0.14), transparent 24%),
    radial-gradient(circle at left 18%, rgba(116, 73, 210, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(249, 245, 255, 0.97) 100%);
  border-color: rgba(116, 73, 210, 0.18);
  box-shadow: 0 20px 40px rgba(67, 36, 132, 0.12);
}

body[data-theme="groenpaars"] .feature-card:hover,
body[data-theme="groenpaars"] .feature-card:focus-within,
body[data-theme="groenpaars"] .spotlight-card:hover,
body[data-theme="groenpaars"] .spotlight-card:focus-within,
body[data-theme="groenpaars"] .jump-card:hover,
body[data-theme="groenpaars"] .jump-card:focus-within,
body[data-theme="groenpaars"] .faq-card:hover,
body[data-theme="groenpaars"] .faq-card:focus-within {
  border-color: rgba(116, 73, 210, 0.22);
  box-shadow: 0 18px 30px rgba(67, 36, 132, 0.12);
}

body[data-theme="groenpaars"] .feature-card img,
body[data-theme="groenpaars"] .spotlight-card img,
body[data-theme="groenpaars"] .jump-card img {
  border-color: rgba(116, 73, 210, 0.16);
}

body[data-theme="groenpaars"] .hero-collage__card,
body[data-theme="groenpaars"] .hero-visual {
  box-shadow: 0 20px 34px rgba(57, 33, 116, 0.16);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow-x: hidden;
  z-index: 1;
}

.container {
  width: var(--content-width);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--theme-eyebrow-border);
  background: var(--theme-eyebrow-bg);
  color: var(--theme-eyebrow-color);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(242, 161, 38, 0.14);
}

.eyebrow--light {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.eyebrow--light::before {
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.14);
}

.section {
  padding: 0 0 2.5rem;
}

#artikeloverzicht,
#artikelstream {
  scroll-margin-top: calc(var(--header-offset) + 1rem);
}

#dating-tool {
  scroll-margin-top: calc(var(--header-offset) + 1rem);
}

.section-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 250, 255, 0.94) 100%);
  border: 1px solid #cddcf0;
  border-top: 4px solid var(--brand);
  box-shadow: 0 20px 40px rgba(15, 47, 85, 0.14);
  border-radius: var(--radius-xl);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.section-header h2,
.section-heading {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-header p,
.section-intro {
  margin: 0.65rem 0 0;
  max-width: 62ch;
  color: var(--ink-soft);
  line-height: 1.75;
}

.display-copy {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-weight: 700;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 40%),
    linear-gradient(180deg, var(--header-top) 0%, var(--header-bottom) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 24px rgba(10, 31, 56, 0.22);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.24s ease, background 0.24s ease;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0.65rem 0;
  transition:
    min-height 0.24s ease,
    padding 0.24s ease;
}

.site-header.is-floating .site-header-inner {
  min-height: 64px;
  padding: 0.45rem 0;
}

.site-header.is-floating {
  box-shadow: 0 14px 28px rgba(10, 31, 56, 0.26);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 6px 14px rgba(10, 31, 56, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.16);
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: #ffffff;
}

.brand-copy span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1;
  justify-content: flex-end;
}

.theme-switcher {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.theme-select {
  min-height: 42px;
  min-width: 150px;
  max-width: 100%;
  padding: 0.56rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 27, 50, 0.22);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.theme-select:focus-visible {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 4px rgba(255, 255, 255, 0.12);
}

.theme-select option {
  color: #173353;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.2rem;
  padding: 0;
  background: transparent;
  border: 0;
}

.site-nav a {
  position: relative;
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  background: transparent;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--theme-nav-active-color);
  background: var(--theme-nav-active-gradient);
  border-color: var(--theme-nav-active-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
  outline: none;
  transform: none;
}

.site-nav a::after {
  content: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.82rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #f19669);
  color: #ffffff;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 16px 30px rgba(234, 120, 84, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(234, 120, 84, 0.28);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.9fr);
  gap: 1rem;
  padding: 0.2rem 0 1.8rem;
}

.page-hero--home {
  grid-template-columns: 1fr;
}

.hero-card,
.hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: clamp(1.45rem, 4vw, 2.4rem);
  background:
    radial-gradient(circle at top right, rgba(242, 161, 38, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 255, 0.96) 100%);
  border: 1px solid #cddcf0;
  border-top: 5px solid var(--accent);
}

.hero-card::after {
  content: none;
}

.hero-card h1 {
  margin: 0.9rem 0 1rem;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-card .lead {
  margin: 0;
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.8rem 0 1.3rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: linear-gradient(180deg, var(--primary-top) 0%, var(--primary-bottom) 100%);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(17, 52, 92, 0.18);
}

.button-primary--chat {
  position: relative;
  min-height: 60px;
  min-width: clamp(240px, 29vw, 330px);
  padding-inline: 2.45rem;
  border: 1px solid rgba(17, 52, 92, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 28%),
    linear-gradient(180deg, var(--chat-top) 0%, var(--chat-bottom) 100%);
  color: #111111;
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 14px 24px rgba(17, 52, 92, 0.18),
    0 0 0 4px var(--chat-ring);
  animation: chat-pulse 3.8s ease-in-out infinite;
}

.button-primary--chat:hover,
.button-primary--chat:focus-visible {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 18px 28px rgba(17, 52, 92, 0.2),
    0 0 0 5px var(--chat-ring);
}

.button-secondary {
  border-color: #bcd0e9;
  background: #edf4fc;
  color: var(--brand-deep);
}

.hero-card--portal {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.hero-card--home {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  text-align: left;
}

.hero-card--home::before,
.hero-card--home::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-card--home::before {
  top: -5.2rem;
  right: -3.4rem;
  width: 15rem;
  height: 15rem;
  background: radial-gradient(circle, rgba(46, 104, 178, 0.2), rgba(46, 104, 178, 0) 72%);
}

.hero-card--home::after {
  left: -3.4rem;
  bottom: -5.4rem;
  width: 12rem;
  height: 12rem;
  background: radial-gradient(circle, rgba(242, 161, 38, 0.2), rgba(242, 161, 38, 0) 72%);
}

.hero-card--home > * {
  position: relative;
  z-index: 1;
}

.hero-card--home .lead {
  margin-left: 0;
  margin-right: 0;
}

.hero-card--home .hero-pill-list {
  justify-content: center;
}

.hero-card--home .hero-notes {
  margin-top: 1.2rem;
}

.hero-collage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: 0.9rem;
  margin-top: 1.45rem;
}

.hero-collage__stack {
  display: grid;
  gap: 0.9rem;
}

.hero-collage__card {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #d6e3f2;
  box-shadow: 0 16px 26px rgba(17, 52, 92, 0.1);
  background: linear-gradient(180deg, #f9fbff 0%, #eef5fd 100%);
  isolation: isolate;
  animation: float-soft 7s ease-in-out infinite;
}

.hero-collage__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 26, 46, 0.04) 0%, rgba(10, 26, 46, 0.7) 100%);
  z-index: 1;
}

.hero-collage__card--wide {
  min-height: 100%;
  animation-duration: 8.5s;
}

.hero-collage__stack .hero-collage__card:first-child {
  animation-delay: -1.6s;
}

.hero-collage__stack .hero-collage__card:last-child {
  animation-delay: -3.2s;
}

.hero-collage__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.45s ease;
}

.hero-collage__card span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 1px 6px rgba(8, 20, 36, 0.22);
}

.hero-collage__card small {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.45;
}

.hero-pill-list {
  margin-top: 1.7rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(23, 70, 127, 0.12);
  row-gap: 0.8rem;
}

.hero-pill-list .pill {
  background: var(--theme-pill-bg);
  border-color: var(--theme-pill-border);
}

.hero-actions--portal {
  margin-top: 1.25rem;
}

.hero-actions--home {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 1.8rem auto 1.55rem;
  text-align: center;
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-notes--portal .metric {
  background: rgba(255, 255, 255, 0.88);
}

.metric {
  padding: 1rem 1.05rem;
  border-radius: 14px;
  background: var(--theme-metric-bg);
  border: 1px solid var(--theme-metric-border);
  border-top: 3px solid var(--brand);
}

.metric strong,
.metric span {
  display: block;
}

.metric strong {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.metric span {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.hero-visual {
  display: grid;
  gap: 1rem;
  background: linear-gradient(180deg, #245da6 0%, #17467f 100%);
  color: #ffffff;
  padding: 1rem;
}

.hero-visual--portal {
  padding: clamp(1.15rem, 3.6vw, 1.8rem);
  background: linear-gradient(180deg, #245da6 0%, #17467f 100%);
}

.hero-visual > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  max-height: 250px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.24);
  transition: transform 0.55s ease, filter 0.45s ease;
  animation: float-soft 9s ease-in-out infinite;
}

.hero-visual--blog {
  gap: 0.9rem;
}

.hero-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.launch-shell {
  display: grid;
  gap: 1rem;
  height: 100%;
}

.launch-top h2 {
  margin: 0.95rem 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.launch-top p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.78;
}

.launch-panel {
  padding: 1.15rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.launch-highlight {
  margin-bottom: 0.95rem;
}

.launch-highlight strong,
.launch-highlight span {
  display: block;
}

.launch-highlight strong {
  margin-bottom: 0.45rem;
  font-size: 1.12rem;
}

.launch-highlight span {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.launch-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 60px;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #fff1e5);
  color: var(--brand-deep);
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(17, 38, 60, 0.22);
}

.launch-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.95rem;
}

.launch-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 0.8rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}

.portal-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.portal-mini-card {
  padding: 0.95rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.portal-mini-card strong,
.portal-mini-card span {
  display: block;
}

.portal-mini-card strong {
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.portal-mini-card span {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.glass-card {
  padding: 0.95rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.glass-card strong,
.glass-card span {
  display: block;
}

.glass-card strong {
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.glass-card span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.feature-grid,
.spotlight-grid,
.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.fact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.article-index {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.spotlight-card,
.jump-card,
.ribbon-card,
.faq-card {
  height: 100%;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.feature-card:hover,
.feature-card:focus-within,
.spotlight-card:hover,
.spotlight-card:focus-within,
.jump-card:hover,
.jump-card:focus-within,
.faq-card:hover,
.faq-card:focus-within {
  transform: translateY(-2px);
  border-color: #b8cee6;
  box-shadow: 0 12px 22px rgba(17, 52, 92, 0.1);
}

.feature-card img,
.spotlight-card img,
.jump-card img {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 30 / 19;
  max-height: 145px;
  object-fit: contain;
  object-position: center;
  padding: 0.4rem;
  margin-bottom: 0.9rem;
  border: 1px solid #d4e0ef;
  background: #f6f9fd;
  transition: transform 0.5s ease, filter 0.4s ease;
}

.feature-card:hover img,
.feature-card:focus-within img,
.spotlight-card:hover img,
.spotlight-card:focus-within img,
.jump-card:hover img,
.jump-card:focus-within img,
.story:hover figure img,
.story:focus-within figure img,
.hero-visual:hover > img,
.hero-collage__card:hover img,
.hero-mini-tile:hover img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

.feature-card h3,
.spotlight-card h3,
.jump-card h3,
.story h2,
.faq-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.18rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.feature-card p,
.spotlight-card p,
.jump-card p,
.faq-card p,
.copy-card p,
.aside-card p,
.story p,
.editorial-note p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.78;
}

.fact-card .meta-line,
.story-note .meta-line {
  margin-bottom: 0.8rem;
}

.fact-card h3,
.story-note h3,
.editorial-note h3 {
  margin: 0 0 0.7rem;
  font-size: 1.12rem;
  line-height: 1.24;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.duo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1rem;
}

.copy-card,
.aside-card,
.editorial-note,
.toolbar-card {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand);
  box-shadow: var(--shadow-soft);
}

.copy-card ul,
.aside-card ul,
.story ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.fact-card ul,
.editorial-note ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.copy-card li,
.aside-card li,
.story li {
  margin-bottom: 0.7rem;
  line-height: 1.65;
}

.fact-card li,
.editorial-note li {
  margin-bottom: 0.7rem;
  line-height: 1.65;
}

.pill-list,
.story-tags,
.meta-line,
.filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill,
.tag,
.meta-pill,
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 36px;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid #d3dfef;
  background: #f4f8fd;
  color: var(--brand-deep);
  font-size: 0.88rem;
  font-weight: 700;
}

a.pill {
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

a.pill:hover,
a.pill:focus-visible {
  transform: translateY(-1px);
  border-color: #bdd0e6;
  background: #ffffff;
  box-shadow: 0 10px 18px rgba(17, 52, 92, 0.08);
  outline: none;
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1rem;
  align-items: stretch;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 58px;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #cddcf0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.search-box input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.search-box input:focus {
  outline: none;
}

.search-box svg {
  width: 20px;
  height: 20px;
  color: var(--ink-soft);
}

.filter-chip {
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.filter-chip:hover,
.filter-chip:focus-visible,
.filter-chip.is-active {
  background: linear-gradient(180deg, #2e68b2 0%, #17467f 100%);
  color: #ffffff;
  outline: none;
  transform: translateY(-1px);
}

.jump-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.jump-card .meta-line {
  margin-top: auto;
}

.story-note {
  display: grid;
  gap: 0.8rem;
  background:
    radial-gradient(circle at top right, rgba(242, 161, 38, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 251, 255, 0.96) 100%);
}

.article-stream {
  display: grid;
  gap: 1.35rem;
}

.story {
  overflow: hidden;
  border-radius: 18px;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand);
  box-shadow: var(--shadow-soft);
}

.story-inner {
  display: grid;
  grid-template-columns: minmax(190px, 248px) minmax(0, 1fr);
}

.story figure {
  margin: 0;
  height: auto;
  min-height: 0;
  align-self: start;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(46, 104, 178, 0.08), rgba(242, 161, 38, 0.05));
}

.story figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  object-position: center;
  transition: transform 0.55s ease, filter 0.45s ease;
}

.hero-mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-mini-tile {
  position: relative;
  min-height: 126px;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  animation: float-soft 8s ease-in-out infinite;
}

.hero-mini-tile:nth-child(2) {
  animation-delay: -2s;
}

.hero-mini-tile:nth-child(3) {
  animation-delay: -4s;
}

.hero-mini-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 26, 48, 0.05) 0%, rgba(8, 26, 48, 0.72) 100%);
}

.hero-mini-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.45s ease;
}

.hero-mini-tile figcaption {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.72rem;
  z-index: 1;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.story-body {
  padding: 1.35rem 1.4rem 1.45rem;
}

.story .meta-line {
  margin-bottom: 0.8rem;
}

.story .meta-pill {
  background: #f4f8fd;
  border-color: #d7e3f2;
  color: var(--ink-soft);
}

.story h2 {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.story p + p {
  margin-top: 0.95rem;
}

.story-tags {
  margin-top: 1.1rem;
}

.story.is-hidden {
  display: none;
}

.ad-preview-stack {
  display: grid;
  gap: 1rem;
}

.ad-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.ad-preview-card {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(255, 118, 88, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 251, 0.95));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.ad-preview-card__top,
.ad-preview-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.ad-preview-card__top {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.ad-preview-card__label,
.ad-preview-card__format,
.ad-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.ad-preview-card__label {
  background: rgba(15, 124, 130, 0.1);
  border: 1px solid rgba(15, 124, 130, 0.18);
  color: var(--brand-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ad-preview-card__format,
.ad-chip {
  background: rgba(19, 39, 61, 0.05);
  border: 1px solid rgba(19, 39, 61, 0.08);
  color: var(--ink-soft);
}

.ad-preview-card__body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(230px, 0.95fr);
  gap: 1rem;
  align-items: center;
}

.ad-preview-card__body > * {
  min-width: 0;
}

.ad-preview-card__copy h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.ad-preview-card__copy p,
.ad-preview-note {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.74;
}

.ad-preview-card__meta {
  margin-top: 1rem;
}

.ad-preview-card__surface {
  position: relative;
  min-height: 200px;
  padding: 1.15rem;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  display: grid;
  align-content: end;
  gap: 0.7rem;
}

.ad-preview-card__surface::before,
.ad-preview-card__surface::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.ad-preview-card__surface::before {
  width: 150px;
  height: 150px;
  top: -52px;
  right: -38px;
  background: rgba(255, 255, 255, 0.16);
}

.ad-preview-card__surface::after {
  width: 88px;
  height: 88px;
  bottom: -26px;
  left: -18px;
  background: rgba(255, 255, 255, 0.1);
}

.ad-preview-card__kicker,
.ad-preview-card__headline,
.ad-preview-card__text,
.ad-preview-card__cta {
  position: relative;
  z-index: 1;
}

.ad-preview-card__kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.ad-preview-card__headline {
  font-size: clamp(1.18rem, 2.2vw, 1.55rem);
  line-height: 1.16;
  color: #ffffff;
}

.ad-preview-card__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.66;
}

.ad-preview-card__cta {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand-deep);
  font-weight: 700;
}

.ad-preview-card--leaderboard .ad-preview-card__surface {
  min-height: 220px;
  background: linear-gradient(135deg, #0d3246, #0f7c82 58%, #ff7658);
}

.ad-preview-card--rectangle .ad-preview-card__body,
.ad-preview-card--native .ad-preview-card__body,
.ad-preview-card--story .ad-preview-card__body {
  grid-template-columns: 1fr;
}

.ad-preview-card--rectangle .ad-preview-card__surface {
  min-height: 250px;
  background: linear-gradient(160deg, #12283d, #175f68 60%, #f5c684);
}

.ad-preview-card--native .ad-preview-card__surface {
  min-height: 220px;
  background: linear-gradient(155deg, #7a4632, #c7644d 55%, #ffd8b3);
}

.ad-preview-card--story {
  height: 100%;
}

.ad-preview-card--story .ad-preview-card__surface {
  min-height: 230px;
  background: linear-gradient(150deg, #11263c, #156770 58%, #f5c684);
}

.empty-state {
  padding: 1.5rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  text-align: center;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: var(--brand-deep);
  font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.rule-grid,
.faq-stack,
.mini-grid {
  display: grid;
  gap: 1rem;
}

.rule-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rule-card,
.faq-item,
.stat-card {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand);
  box-shadow: var(--shadow-soft);
}

.card-media {
  width: 100%;
  aspect-ratio: 30 / 19;
  max-height: 132px;
  margin-bottom: 0.95rem;
  border-radius: 10px;
  object-fit: contain;
  object-position: center;
  padding: 0.4rem;
  border: 1px solid #d4e0ef;
  background: #f6f9fd;
}

.card-media--small {
  max-height: 116px;
}

.rule-card h3,
.faq-item summary,
.stat-card h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.rule-card p,
.rule-card li,
.stat-card p,
.stat-card li {
  color: var(--ink-soft);
  line-height: 1.75;
}

.rule-card ul,
.rule-card ol,
.stat-card ul,
.stat-card ol {
  margin: 0.9rem 0 0;
  padding-left: 1.2rem;
}

.rule-card li + li,
.stat-card li + li {
  margin-top: 0.45rem;
}

.notice-banner {
  padding: 1.15rem 1.2rem;
  border-radius: 14px;
  border: 1px solid #ffd99b;
  background: #fff6e4;
  color: #6b4b00;
  box-shadow: var(--shadow-soft);
}

.notice-banner strong {
  color: #b44935;
}

.panel-grid,
.sitemap-grid {
  display: grid;
  gap: 1rem;
}

.panel-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel-grid--sidebar {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.form-card,
.embed-card,
.sitemap-card {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand);
  box-shadow: var(--shadow-soft);
}

.prose-flow h3,
.form-card h3,
.embed-card h3,
.sitemap-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.prose-flow h4 {
  margin: 1.15rem 0 0.55rem;
  font-size: 1rem;
  color: var(--brand-deep);
}

.prose-flow p,
.prose-flow li,
.form-card p,
.form-card li,
.embed-card p,
.embed-card li,
.sitemap-card p,
.sitemap-card li {
  color: var(--ink-soft);
  line-height: 1.78;
}

.prose-flow p + p,
.embed-card p + p {
  margin-top: 0.85rem;
}

.prose-flow ul,
.prose-flow ol,
.form-card ul,
.embed-card ul {
  margin: 0.9rem 0 0;
  padding-left: 1.15rem;
}

.prose-flow li + li,
.form-card li + li,
.embed-card li + li {
  margin-top: 0.45rem;
}

.ticket-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.ticket-actions {
  margin-top: 1rem;
}

.notice-btn,
.notice-btn--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.notice-btn:hover,
.notice-btn--ghost:hover,
.notice-btn:focus-visible,
.notice-btn--ghost:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.notice-btn {
  background: linear-gradient(180deg, #2e68b2 0%, #17467f 100%);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(17, 52, 92, 0.18);
}

.notice-btn--ghost {
  border: 1px solid #c8d9ee;
  background: #eef4fb;
  color: var(--brand-deep);
}

.form-stack {
  display: grid;
  gap: 1rem;
}

.field-group {
  display: grid;
  gap: 0.45rem;
}

.field-label {
  color: var(--ink);
  font-weight: 700;
}

.field-help {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.field-input,
.field-textarea {
  width: 100%;
  border: 1px solid #cddcf0;
  border-radius: 16px;
  background: #ffffff;
  color: var(--ink);
  padding: 0.95rem 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.field-input:focus,
.field-textarea:focus {
  outline: none;
  border-color: #9fbbe0;
  box-shadow: 0 0 0 4px rgba(46, 104, 178, 0.12);
}

.field-textarea {
  min-height: 180px;
  resize: vertical;
}

#turnstile-box {
  min-height: 68px;
}

.button[disabled],
.button[aria-disabled="true"] {
  opacity: 0.62;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.flash {
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
}

.flash.success {
  background: #edf9f0;
  border-color: #b9dfc1;
  color: #256c37;
}

.flash.error {
  background: #fff0ef;
  border-color: #f0b7b1;
  color: #9c2f25;
}

.contact-page .hero-card .lead,
.contact-page .metric span {
  color: #42576f;
}

.contact-page .copy-card,
.contact-page .form-card {
  background:
    radial-gradient(circle at top right, rgba(242, 161, 38, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.contact-page .copy-card h3,
.contact-page .form-card h3 {
  color: var(--ink);
  font-size: clamp(1.32rem, 2.2vw, 1.65rem);
}

.contact-page .copy-card p,
.contact-page .copy-card li,
.contact-page .form-card p,
.contact-page .form-card li {
  color: #40566f;
  font-size: 1rem;
}

.contact-page .copy-card ul,
.contact-page .form-card ul {
  padding-left: 1.25rem;
}

.contact-page .copy-card li::marker,
.contact-page .form-card li::marker {
  color: var(--brand);
}

.contact-page .notice-banner {
  background: #fff7e9;
  border-color: #f4d49a;
  color: #5f4700;
}

.contact-page .notice-banner strong {
  color: #8b2f1f;
}

.contact-page .notice-banner a,
.contact-page .text-link {
  color: var(--brand-deep);
  font-weight: 700;
}

.contact-page .field-label {
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.contact-page .field-help {
  color: #5a7087;
  line-height: 1.6;
}

.contact-page .field-input,
.contact-page .field-textarea {
  color: #173353;
  font-size: 1rem;
  line-height: 1.55;
}

.contact-page .field-input::placeholder,
.contact-page .field-textarea::placeholder {
  color: #6f8398;
}

.contact-page .flash {
  line-height: 1.55;
}

.embed-card .dc-tool {
  width: 100%;
  min-height: 360px;
  overflow: visible;
}

.dc-dating-tool,
.dc-dating-tool > div,
.dc-dating-tool iframe {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
}

.embed-card .notice-banner {
  margin-bottom: 1rem;
}

.dating-module-shell {
  display: grid;
  gap: 1rem;
  margin: 1rem 0 1.2rem;
}

.dating-module-shell .notice-banner {
  margin-bottom: 0;
}

.dating-module-shell .button-row {
  margin-top: 0.95rem;
}

.dating-module-shell .dc-tool {
  padding: 0.35rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(240, 246, 255, 0.92);
}

body[data-theme="groenpaars"] .dating-module-shell .dc-tool {
  border-color: rgba(173, 235, 209, 0.2);
  background: rgba(26, 18, 52, 0.68);
}

.sitemap-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sitemap-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sitemap-card li {
  margin: 0;
}

.sitemap-card a {
  color: var(--brand-deep);
  font-weight: 700;
}

.sitemap-card a:hover,
.sitemap-card a:focus-visible {
  color: var(--ink);
  outline: none;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #edf4fc;
  color: var(--brand-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item-body {
  padding: 0 1.3rem 1.3rem;
}

.faq-item-body p,
.faq-item-body li,
.faq-item-body ol {
  color: var(--ink-soft);
  line-height: 1.78;
}

.faq-item-body p + p,
.faq-item-body ul,
.faq-item-body ol {
  margin-top: 0.9rem;
}

.faq-item-body ul,
.faq-item-body ol {
  padding-left: 1.2rem;
}

.faq-item-body li + li {
  margin-top: 0.45rem;
}

.faq-card h3 {
  margin-bottom: 0.85rem;
}

.site-footer {
  position: relative;
  margin-top: clamp(2rem, 5vw, 3.2rem);
  padding: clamp(2.4rem, 4vw, 3.2rem) 0 0;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.08), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(255, 209, 128, 0.12), transparent 18%),
    linear-gradient(180deg, #245da6 0%, #1b4f8f 36%, #17467f 100%);
  border-top: 1px solid rgba(19, 58, 106, 0.18);
}

.site-footer .container {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 1.8rem));
}

.footer-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.35rem;
  padding: 0 0 2.8rem;
  color: #f6fbfc;
}

.footer-panel > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: clamp(1.25rem, 2.4vw, 1.7rem);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 30px rgba(10, 30, 56, 0.18);
  backdrop-filter: blur(10px);
  text-align: center;
}

.footer-panel h3 {
  margin: 0 0 0.9rem;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.footer-panel p,
.footer-panel li,
.footer-panel a {
  color: rgba(246, 251, 252, 0.84);
  line-height: 1.7;
}

.footer-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  justify-items: center;
}

.footer-panel li + li {
  margin-top: 0;
}

.footer-panel a:hover,
.footer-panel a:focus-visible {
  color: #ffffff;
  outline: none;
}

.footer-brand {
  width: 100%;
  max-width: none;
  margin-inline: auto;
}

.footer-brand .brand {
  margin-bottom: 1rem;
  justify-content: center;
}

.footer-note {
  width: 100%;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(246, 251, 252, 0.72);
  font-size: 0.92rem;
}

.dmca-badge {
  display: inline-flex;
  align-items: center;
}

.dmca-badge img,
.footer-badge {
  display: block;
  width: 150px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin: 1rem 0 0.8rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.footer-social-link svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 10px 18px rgba(8, 20, 36, 0.18);
  transform: translateY(-1px);
}

.footer-utility-links {
  margin-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.footer-utility-links li {
  margin: 0;
}

.footer-utility-links a,
.footer-utility-links button {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-utility-links a:hover,
.footer-utility-links a:focus-visible,
.footer-utility-links button:hover,
.footer-utility-links button:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
}

body[data-theme="groenpaars"] .site-footer::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(202, 255, 135, 0.12), transparent 22%),
    radial-gradient(circle at 86% 14%, rgba(123, 79, 226, 0.22), transparent 20%),
    linear-gradient(180deg, rgba(47, 49, 57, 0.98) 0%, rgba(69, 65, 88, 0.98) 34%, rgba(79, 55, 143, 0.97) 68%, rgba(35, 95, 83, 0.98) 100%);
  border-top-color: rgba(202, 255, 135, 0.12);
}

body[data-theme="groenpaars"] .footer-panel > div {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%),
    radial-gradient(circle at top right, rgba(120, 222, 123, 0.14), transparent 24%);
  border-color: rgba(202, 255, 135, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 34px rgba(38, 25, 70, 0.22);
}

body[data-theme="groenpaars"] .footer-note {
  border-top-color: rgba(202, 255, 135, 0.14);
}

body[data-theme="groenpaars"] .footer-social-link {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(202, 255, 135, 0.12);
}

body[data-theme="groenpaars"] .footer-social-link:hover,
body[data-theme="groenpaars"] .footer-social-link:focus-visible {
  background: linear-gradient(135deg, rgba(213, 255, 135, 0.2) 0%, rgba(124, 231, 126, 0.18) 40%, rgba(180, 154, 255, 0.18) 100%);
  border-color: rgba(202, 255, 135, 0.24);
}

body[data-theme="groenpaars"] .footer-utility-links a,
body[data-theme="groenpaars"] .footer-utility-links button {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(202, 255, 135, 0.12);
}

.text-link {
  color: var(--brand-deep);
  font-weight: 700;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes float-soft {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes chat-pulse {
  0%,
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.34),
      0 14px 24px rgba(17, 52, 92, 0.18),
      0 0 0 4px rgba(242, 161, 38, 0.14);
  }

  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.38),
      0 18px 28px rgba(17, 52, 92, 0.2),
      0 0 0 5px rgba(242, 161, 38, 0.18);
  }
}

@keyframes chat-pulse-green {
  0%,
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.34),
      0 18px 28px rgba(67, 36, 132, 0.18),
      0 0 0 4px rgba(106, 217, 127, 0.16);
  }

  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.38),
      0 22px 32px rgba(67, 36, 132, 0.22),
      0 0 0 5px rgba(145, 108, 240, 0.14);
  }
}

@keyframes float-playful {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-4px) scale(1.015);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button-primary--chat,
  .hero-visual > img,
  .hero-collage__card,
  .hero-mini-tile {
    animation: none !important;
  }

  .hero-visual > img,
  .feature-card img,
  .spotlight-card img,
  .jump-card img,
  .story figure img,
  .hero-collage__card img,
  .hero-mini-tile img {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .page-hero,
  .duo-grid,
  .panel-grid,
  .sitemap-grid,
  .toolbar,
  .story-inner,
  .footer-panel {
    grid-template-columns: 1fr;
  }

  .hero-notes,
  .feature-grid,
  .spotlight-grid,
  .fact-grid,
  .link-grid,
  .article-index,
  .ad-preview-grid,
  .launch-links,
  .portal-mini-grid,
  .faq-grid,
  .rule-grid,
  .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ad-preview-card__body {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    grid-template-columns: 1fr;
  }

  .hero-collage__stack,
  .hero-mini-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header-inner {
    min-height: 64px;
  }

  .nav-wrap {
    position: relative;
    flex-wrap: wrap;
    gap: 0.55rem;
  }

  .theme-switcher {
    order: 1;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: 2;
  }

  .site-nav {
    display: none;
    position: absolute;
    order: 3;
    top: calc(100% + 0.45rem);
    right: 0;
    left: auto;
    width: min(340px, calc(100vw - 2rem));
    max-width: calc(100vw - 2rem);
    min-width: 0;
    padding: 0.85rem;
    border-radius: 12px;
    background: linear-gradient(180deg, var(--header-top) 0%, var(--header-bottom) 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 32px rgba(10, 31, 56, 0.24);
    overflow: hidden;
  }

  .site-nav.is-open {
    display: grid;
  }

  body[data-theme="groenpaars"] .site-nav {
    padding: 0.85rem;
    border-radius: 14px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%),
      linear-gradient(135deg, rgba(109, 67, 210, 0.98) 0%, rgba(71, 51, 149, 0.98) 58%, rgba(43, 153, 111, 0.98) 100%);
    border: 1px solid rgba(222, 255, 205, 0.14);
    box-shadow: 0 20px 36px rgba(24, 16, 49, 0.28);
    overflow: hidden;
  }

  .site-nav a {
    width: 100%;
    color: #ffffff;
    border-radius: 8px;
  }

  .theme-select {
    min-width: 136px;
    max-width: min(44vw, 168px);
    font-size: 0.86rem;
  }
}

@media (max-width: 420px) {
  .site-nav {
    left: 0;
    right: 0;
    width: auto;
    max-width: none;
  }
}

@media (max-width: 680px) {
  .hero-collage__stack,
  .hero-mini-gallery,
  .hero-stack,
  .hero-notes,
  .panel-grid,
  .sitemap-grid,
  .feature-grid,
  .spotlight-grid,
  .fact-grid,
  .link-grid,
  .article-index,
  .ad-preview-grid,
  .launch-links,
  .portal-mini-grid,
  .faq-grid,
  .rule-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    align-items: flex-start;
  }

  .hero-card h1 {
    font-size: clamp(2.3rem, 11vw, 3.5rem);
  }

  .feature-card,
  .spotlight-card,
  .jump-card,
  .stat-card,
  .faq-card {
    padding: 0.95rem;
  }

  .hero-collage__card {
    min-height: 150px;
  }

  .hero-visual > img,
  .feature-card img,
  .spotlight-card img,
  .jump-card img {
    max-height: 118px;
    object-fit: cover;
    object-position: center 38%;
    padding: 0;
    margin-bottom: 0.55rem;
  }

  .card-media {
    max-height: 96px;
    object-fit: cover;
    padding: 0;
    margin-bottom: 0.55rem;
  }

  .card-media--small {
    max-height: 84px;
  }

  .feature-card h3,
  .spotlight-card h3,
  .jump-card h3,
  .stat-card h3 {
    margin-bottom: 0.45rem;
    font-size: 1.04rem;
  }

  .story figure {
    padding: 0.35rem;
    align-items: stretch;
  }

  .story figure img {
    width: 100%;
    max-height: 132px;
    aspect-ratio: 30 / 19;
    object-fit: cover;
    object-position: center 36%;
  }

  .hero-visual > img,
  .hero-collage__card img {
    object-fit: cover;
    object-position: center 38%;
    background: transparent;
  }

  .hero-visual {
    padding: 0.7rem;
  }

  .site-header {
    box-shadow: 0 10px 20px rgba(10, 31, 56, 0.2);
  }

  .site-header-inner {
    min-height: 58px;
    padding: 0.35rem 0;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand-copy span {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .ad-preview-card {
    padding: 1.1rem;
  }

  .ad-preview-card__surface {
    min-height: 190px;
  }

  .embed-card {
    padding: 1rem;
  }

  .embed-card .dc-tool,
  .dc-dating-tool {
    min-height: 520px;
  }

  .dating-module-shell {
    gap: 0.85rem;
    margin: 0.9rem 0 1rem;
  }

  .dating-module-shell .notice-banner {
    padding: 1rem;
  }

  .dating-module-shell .button-row {
    gap: 0.7rem;
  }

  .dating-module-shell .notice-btn,
  .dating-module-shell .notice-btn--ghost {
    width: 100%;
  }

}

@media (max-width: 420px) {
  .hero-visual > img,
  .feature-card img,
  .spotlight-card img,
  .jump-card img {
    max-height: 102px;
    object-fit: cover;
    object-position: center 36%;
    padding: 0;
  }

  .card-media {
    max-height: 82px;
    object-fit: cover;
    padding: 0;
  }

  .card-media--small {
    max-height: 74px;
  }

  .story figure {
    padding: 0.3rem;
  }

  .story figure img {
    max-height: 116px;
    aspect-ratio: 30 / 19;
    object-fit: cover;
    object-position: center 35%;
  }

  .hero-collage__card {
    min-height: 130px;
  }

  .embed-card .dc-tool,
  .dc-dating-tool {
    min-height: 460px;
  }

  .dating-module-shell .dc-tool {
    padding: 0.25rem;
  }
}

body.has-adblock-notice {
  overflow: hidden;
}

.adblock-notice[hidden] {
  display: none;
}

.adblock-notice {
  position: fixed;
  inset: 0;
  z-index: 2500;
}

.adblock-notice__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 44, 0.62);
  backdrop-filter: blur(6px);
}

.adblock-notice__dialog {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 2rem));
  margin: min(12vh, 5rem) auto 0;
  padding: 2rem 1.8rem 1.6rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 247, 253, 0.98) 100%);
  box-shadow: 0 28px 48px rgba(10, 31, 56, 0.32);
}

.adblock-notice__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.35rem;
  height: 2.35rem;
  border: 0;
  border-radius: 999px;
  background: rgba(23, 51, 83, 0.08);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.adblock-notice__close:hover,
.adblock-notice__close:focus-visible {
  background: rgba(23, 51, 83, 0.14);
}

.adblock-notice__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: var(--theme-eyebrow-bg);
  border: 1px solid var(--theme-eyebrow-border);
  color: var(--theme-eyebrow-color);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.adblock-notice__title {
  margin: 1rem 0 0.75rem;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.08;
  color: var(--ink);
}

.adblock-notice__copy,
.adblock-notice__footnote {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.adblock-notice__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.3rem;
}

.adblock-notice__actions .button {
  flex: 1 1 220px;
}

.adblock-notice__footnote {
  margin-top: 0.95rem;
  font-size: 0.95rem;
}

body[data-theme="groenpaars"] .adblock-notice__dialog {
  background:
    linear-gradient(180deg, rgba(24, 20, 48, 0.96) 0%, rgba(30, 30, 42, 0.95) 100%);
  border-color: rgba(184, 255, 122, 0.22);
  box-shadow: 0 30px 54px rgba(9, 8, 17, 0.46);
}

body[data-theme="groenpaars"] .adblock-notice__title {
  color: #f5f2ff;
}

body[data-theme="groenpaars"] .adblock-notice__copy,
body[data-theme="groenpaars"] .adblock-notice__footnote {
  color: rgba(232, 241, 226, 0.88);
}

body[data-theme="groenpaars"] .adblock-notice__close {
  background: rgba(255, 255, 255, 0.08);
  color: #f5f2ff;
}

body[data-theme="groenpaars"] .adblock-notice__close:hover,
body[data-theme="groenpaars"] .adblock-notice__close:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 680px) {
  .adblock-notice__dialog {
    width: min(100% - 1.2rem, 560px);
    margin-top: 4.2rem;
    padding: 1.45rem 1rem 1.15rem;
    border-radius: 20px;
  }

  .adblock-notice__actions {
    flex-direction: column;
  }

  .adblock-notice__actions .button {
    width: 100%;
  }
}
