/* ─────────────────────────────────────────────────────────
   PROMPTED · base styles
   Reset, typography, buttons, wordmark, marker, header, footer.
   ───────────────────────────────────────────────────────── */

/* ─────────────────────────────────────────────────────────
   PROMPTED · website tokens
   Foundations only — colors, type, radii, shadows, spacing.
   ───────────────────────────────────────────────────────── */

@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&family=JetBrains+Mono:wght@400;500&display=swap");

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/SpaceGrotesk-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/DMSans-Regular.ttf") format("truetype");
}

:root {
  /* Core palette */
  --p-black:        #0A0A0A;
  --p-ink:          #1A1A1A;
  --p-cream:        #F4F1E6;
  --p-cream-light:  #FBF9F0;
  --p-white:        #FFFFFF;

  --p-line:         #E4DFD0;
  --p-ink-mute:     #6B6B68;
  --p-ink-soft:     #9A9A95;

  --p-green:        #C6F432;
  --p-green-deep:   #9ED314;

  /* Pastel accents */
  --p-acc-cyan:     #7BE5F5;
  --p-acc-mint:     #BFFAB5;
  --p-acc-yellow:   #FBE57F;
  --p-acc-amber:    #FDC255;
  --p-acc-blue:     #6FBFFF;
  --p-acc-violet:   #BAAAFF;
  --p-acc-coral:    #FFB59C;

  --bg:             var(--p-cream);
  --fg:             var(--p-black);
  --fg-mute:        var(--p-ink-mute);
  --fg-soft:        var(--p-ink-soft);

  /* Type */
  --font-display:   "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-body:      "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --font-mono:      "JetBrains Mono", ui-monospace, monospace;

  /* Radii */
  --r-xs:  6px;
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-tile:40px;
  --r-pill:999px;

  /* Shadow */
  --shadow-card:    0 30px 60px -30px rgba(10,10,10,0.22);
  --shadow-toast:   0 14px 30px -14px rgba(10,10,10,0.18);
  --shadow-photo:   0 30px 80px -30px rgba(10,10,10,0.30);

  /* Borders */
  --border-line:    1px solid var(--p-line);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 0.98;
  color: var(--fg);
}
h1 { font-size: clamp(40px, 5.5vw, 80px); letter-spacing: -0.035em; line-height: 0.95; }
h2 { font-size: clamp(30px, 3.8vw, 54px); letter-spacing: -0.03em; line-height: 0.98; }
h3 { font-size: clamp(21px, 2vw, 28px); letter-spacing: -0.02em; line-height: 1.05; }
h4 { font-size: 18px; line-height: 1.1; }

p   { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a { color: inherit; text-decoration: none; transition: opacity 120ms ease; }
a:hover { opacity: 0.7; }

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 80px 0;
}
.section--tight { padding: 52px 0; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-mute);
}

.lead {
  font-size: 18px;
  line-height: 1.5;
  color: var(--fg-mute);
  max-width: 60ch;
}

.mono {
  font-family: var(--font-mono);
}

/* ── Wordmark ─────────────────────────────────────────── */
.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
}
.wordmark .under {
  display: inline-block;
  margin-left: 0.02em;
  color: inherit;
}

/* Typewriter animation — header only */
.wm-letter {
  display: inline-block;
  opacity: 0;
  animation: wm-appear 0.001s ease forwards;
}
.wm-cursor {
  display: inline-block;
  margin-left: 0.02em;
  opacity: 0;
  animation: wm-appear 0.001s ease forwards, wm-blink 0.9s step-end infinite;
}
@keyframes wm-appear {
  to { opacity: 1; }
}
@keyframes wm-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── Marker highlight ─────────────────────────────────── */
.mark {
  background-image: linear-gradient(transparent 12%, var(--p-green) 12%, var(--p-green) 96%, transparent 96%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 10px;
  margin: 0 -2px;
  mix-blend-mode: multiply;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  height: 48px;
  border: 0;
  border-radius: var(--r-sm);
  background: var(--p-black);
  color: var(--p-cream);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: background 120ms ease, transform 120ms ease;
}
.btn .arr {
  font-family: var(--font-display);
  font-size: 18px;
}
.btn:hover  { background: #1a1a1a; opacity: 1; }
.btn:active { transform: translateY(1px); }

.btn--green { background: var(--p-green); color: var(--p-black); }
.btn--green:hover { background: var(--p-green-deep); }

.btn--ghost {
  background: transparent;
  color: var(--p-black);
  border: 2px solid var(--p-black);
}
.btn--ghost:hover { background: var(--p-black); color: var(--p-cream); }

.btn--ghost-cream {
  background: transparent;
  color: var(--p-cream);
  border: 2px solid var(--p-cream);
}
.btn--ghost-cream:hover { background: var(--p-cream); color: var(--p-black); }

.btn--sm  { height: 38px; padding: 0 14px; font-size: 13px; }
.btn--lg  { height: 54px; padding: 0 28px; font-size: 16px; }

/* ── Link styles ──────────────────────────────────────── */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  border-bottom: 2px solid var(--p-green);
  padding-bottom: 3px;
}
.link-arrow .arr { font-family: var(--font-display); }

/* ── Header ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease;
}
.site-header.is-scrolled { border-bottom-color: var(--p-line); }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.site-header .wordmark {
  font-size: 34px;
}
.site-nav {
  display: flex;
  gap: 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
}
.site-nav a {
  padding: 6px 10px;
  transition: opacity 120ms ease;
}
.site-nav a:hover { opacity: 1; }
.site-nav > a.is-active,
.site-nav > .nav-item > a.is-active {
  background-image: linear-gradient(transparent 4%, var(--p-green) 4%, var(--p-green) 96%, transparent 96%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-origin: padding-box;
  background-clip: padding-box;
  mix-blend-mode: multiply;
  align-self: flex-start;
}

.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > a { display: block; }

.nav-item--has-sub > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 6px;
  opacity: 0.5;
  vertical-align: middle;
  transition: transform 150ms ease;
}
.nav-item--has-sub:hover > a::after { transform: rotate(180deg); opacity: 1; }

.nav-sub {
  display: none;
  position: absolute;
  top: 100%;
  left: -14px;
  padding-top: 10px;
  background: transparent;
  z-index: 300;
  flex-direction: column;
  min-width: 230px;
}
.nav-sub__inner {
  background: var(--p-white);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.13);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-item--has-sub:hover .nav-sub { display: flex; }
.nav-sub a {
  padding: 13px 18px;
  border-radius: 8px;
  border-bottom: none;
  font-size: 14px;
  white-space: nowrap;
  color: var(--p-black);
  opacity: 0.75;
}
.nav-sub a + a {
  border-top: 1.5px solid var(--p-cream);
  border-radius: 0 0 8px 8px;
  padding-top: 15px;
}
.nav-sub a:first-child { border-radius: 8px 8px 0 0; }
.nav-sub a:hover { background: var(--p-cream); border-top-color: transparent; border-bottom-color: transparent; opacity: 1; border-radius: 8px; }
.nav-sub a.nav-sub__label {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.4;
  pointer-events: none;
  padding-bottom: 4px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--p-black);
  margin: 5px 0;
  transition: transform 120ms ease;
}

/* ── Footer ───────────────────────────────────────────── */
.site-footer {
  background: var(--p-black);
  color: var(--p-cream);
  padding: 72px 0 28px;
  margin-top: 80px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(244,241,230,0.12);
}
.site-footer .wordmark { font-size: 28px; }
.site-footer__tag {
  margin: 20px 0;
  color: rgba(244,241,230,0.7);
  font-size: 15px;
  line-height: 1.5;
  max-width: 320px;
}
.site-footer__socials {
  display: flex;
  gap: 10px;
}
.site-footer__socials span {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(244,241,230,0.08);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer__col .k {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(244,241,230,0.5);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.site-footer__col a {
  color: rgba(244,241,230,0.85);
  font-size: 14px;
}
.site-footer__col a:hover { color: var(--p-green); opacity: 1; }
.site-footer__col a.site-footer__sub {
  padding-left: 14px;
  font-size: 13px;
  color: rgba(244,241,230,0.65);
  margin-top: -4px;
  position: relative;
}
.site-footer__col a.site-footer__sub::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 1px;
  background: rgba(244,241,230,0.35);
}
.site-footer__legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(244,241,230,0.5);
  letter-spacing: 0.04em;
}

/* ── Cards ────────────────────────────────────────────── */
.card {
  background: var(--p-white);
  border-radius: var(--r-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.card--ink   { background: var(--p-black); color: var(--p-cream); }
.card--green { background: var(--p-green); color: var(--p-black); }
.card--cream { background: var(--p-cream); }

/* Pastel surface cards */
.card--violet { background: var(--p-acc-violet); color: var(--p-black); }
.card--mint   { background: var(--p-acc-mint);   color: var(--p-black); }
.card--amber  { background: var(--p-acc-amber);  color: var(--p-black); }
.card--cyan   { background: var(--p-acc-cyan);   color: var(--p-black); }
.card--coral  { background: var(--p-acc-coral);  color: var(--p-black); }

/* ── Form fields ──────────────────────────────────────── */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--fg-mute);
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  height: 56px;
  padding: 0 18px;
  border-radius: var(--r-sm);
  border: 1px solid var(--p-line);
  background: var(--p-white);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--p-black);
  outline: none;
  transition: border 120ms ease;
}
.field textarea {
  height: 140px;
  padding-top: 14px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border: 2px solid var(--p-black);
  padding: 0 17px;
}
.field textarea:focus { padding: 13px 17px 0; }

/* ── Badges / chips ──────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--p-green);
  color: var(--p-black);
}
.badge--dark  { background: var(--p-black); color: var(--p-green); }
.badge--cream { background: var(--p-cream); color: var(--p-black); }
.badge--coral { background: var(--p-acc-coral); color: var(--p-black); }
.badge--mint  { background: var(--p-acc-mint); color: var(--p-black); }
.badge--cyan  { background: var(--p-acc-cyan); color: var(--p-black); }
.badge--amber { background: var(--p-acc-amber); color: var(--p-black); }
.badge--violet{ background: var(--p-acc-violet); color: var(--p-black); }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--p-white);
  border: 1px solid var(--p-line);
  cursor: pointer;
  transition: all 120ms ease;
}
.chip:hover { border-color: var(--p-black); opacity: 1; }
.chip.is-active {
  background: var(--p-black);
  color: var(--p-cream);
  border-color: var(--p-black);
}

/* Pulse dot — for "live" agent rows etc */
.dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--p-green-deep);
  display: inline-block;
  animation: dot-pulse 1.4s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.9); }
}

/* ── USP bar (sub-header) ─────────────────────────────── */
.usp-bar {
  background: var(--p-black);
  padding: 9px 0;
}
.usp-bar__inner {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.usp-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13.5px;
  letter-spacing: 0.02em;
  color: rgba(244,241,230,0.72);
}
.usp-bar__item svg {
  color: var(--p-green);
  flex-shrink: 0;
}

@media (max-width: 639px) {
  .usp-bar__inner {
    justify-content: center;
    flex-wrap: nowrap;
    overflow: hidden;
    height: 20px;
    position: relative;
  }
  .usp-bar__item {
    position: absolute;
    opacity: 0;
    transition: opacity 0.4s ease;
    white-space: nowrap;
  }
  .usp-bar__item.is-active {
    opacity: 1;
    position: relative;
  }
}

/* ── Skip link (a11y) ─────────────────────────────────── */
.skip-link {
  position: fixed;
  top: -60px;
  left: 12px;
  background: var(--p-black);
  color: var(--p-cream);
  padding: 8px 14px;
  border-radius: 6px;
  z-index: 100;
}
.skip-link:focus { top: 12px; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .container { padding: 0 22px; }
  .section { padding: 64px 0; }
  .site-nav { display: none; }
  .nav-toggle { display: block; }
  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--p-cream);
    padding: 22px 32px;
    border-bottom: 1px solid var(--p-line);
    width: 100%;
    gap: 18px;
  }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-header__cta { display: none; }
}

/* Social-iconen als klikbare links (zelfde stijl als de oude spans) */
.site-footer__socials a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(244,241,230,0.08);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: inherit;
  text-decoration: none;
  transition: background 200ms ease;
}
.site-footer__socials a:hover {
  background: rgba(244,241,230,0.18);
}

/* ─── Cookie banner (Consent Mode v2) ─────────────────── */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  max-width: 620px;
  margin: 0 auto;
  background: var(--p-black);
  color: var(--p-cream);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.45);
  animation: cookie-banner-in 0.35s ease both;
}
@keyframes cookie-banner-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes cookie-banner-out {
  to { opacity: 0; transform: translateY(20px); }
}
.cookie-banner--out { animation: cookie-banner-out 0.28s ease both; }
.cookie-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}
.cookie-banner__body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--p-cream);
}
.cookie-banner__body p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(244,241,230,0.85);
  margin: 0;
}
.cookie-banner__body a {
  color: var(--p-green);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: opacity 0.12s ease, background 0.12s ease;
  white-space: nowrap;
}
.cookie-banner__btn--accept {
  background: var(--p-green);
  color: var(--p-black);
}
.cookie-banner__btn--accept:hover { background: #b4dc2c; }
.cookie-banner__btn--deny {
  background: transparent;
  color: var(--p-cream);
  border: 1px solid rgba(244,241,230,0.3);
}
.cookie-banner__btn--deny:hover {
  background: rgba(244,241,230,0.06);
}
@media (max-width: 560px) {
  .cookie-banner { padding: 16px 18px; left: 12px; right: 12px; bottom: 12px; }
  .cookie-banner__inner { grid-template-columns: 1fr; gap: 12px; }
  .cookie-banner__actions { justify-content: flex-end; }
}

/* ── Link cluster (pillar topical depth) ───────────────────────── */
.link-cluster{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:32px;
}
.link-cluster__col{
  background: var(--p-white);
  border: 1px solid rgba(10,10,10,.08);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.link-cluster__col:hover{
  border-color: var(--p-green-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,10,10,.06);
}
.link-cluster__col h3{
  font-family: var(--font-display, inherit);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--p-green);
}
.link-cluster__col ul{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:0;
}
.link-cluster__col li{
  border-bottom: 1px solid rgba(10,10,10,.06);
}
.link-cluster__col li:last-child{ border-bottom: none; }
.link-cluster__col li a{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  color: var(--p-black);
  text-decoration: none;
  padding: 12px 0;
  font-size: 14.5px;
  line-height: 1.4;
  transition: color .15s ease, padding .15s ease;
}
.link-cluster__col li a::after{
  content: "→";
  color: var(--p-green-deep);
  font-weight: 700;
  flex-shrink: 0;
  transition: transform .15s ease;
}
.link-cluster__col li a:hover{
  color: var(--p-black);
  padding-left: 4px;
  opacity: 1;
}
.link-cluster__col li a:hover::after{
  transform: translateX(4px);
}
@media (max-width: 980px){
  .link-cluster{ grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .link-cluster__col{ padding: 20px; }
}
@media (max-width: 560px){
  .link-cluster{ grid-template-columns: 1fr; gap: 14px; }
  .link-cluster__col{ padding: 18px 20px; }
  .link-cluster__col h3{ font-size: 17px; }
}

/* ── Related inline (internal link callout in blog body) ───────── */
.related-inline{
  margin:28px 0;
  padding:18px 22px;
  background:var(--cream-50, #F4F1E6);
  border-left:3px solid var(--p-green-deep);
  border-radius:0 8px 8px 0;
}
.related-inline p{ margin:0; font-size:15px; line-height:1.55; }
.related-inline a{
  color: var(--p-black);
  text-decoration: underline;
  text-decoration-color: var(--p-green);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  font-weight: 600;
}
.related-inline a:hover{ text-decoration-color: var(--p-green-deep); opacity: 1; }

/* ── Inline body links (brand green underline) ─────────────────── */
main p a:not(.btn):not(.link-arrow):not(.post-card):not(.wordmark):not(.tag),
main li a:not(.btn):not(.link-arrow):not(.post-card):not(.wordmark):not(.tag),
article p a:not(.btn):not(.link-arrow),
article li a:not(.btn):not(.link-arrow){
  text-decoration: underline;
  text-decoration-color: var(--p-green);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: text-decoration-color .15s ease, opacity .15s ease;
}
main p a:hover, main li a:hover,
article p a:hover, article li a:hover{
  text-decoration-color: var(--p-green-deep);
  opacity: 1;
}
