:root {
      --ink: #102d2a;
      --ink-soft: #3d4f4c;
      --muted: #5c6f6b;
      --paper: #f4faf8;
      --paper-2: #e8f3ef;
      --line: rgba(16, 45, 42, 0.12);
      --brand: #0a3d3a;
      --brand-mid: #14635e;
      --mint: #7ec9b8;
      --warn: #c45c1a;
      --warn-bg: #fff4eb;
      --danger: #9b1c1c;
      --danger-bg: #fdecec;
      --ok: #0f6b4c;
      --ok-bg: #e8f7f0;
      --link: #0b5c8c;
      --shadow: 0 20px 50px rgba(10, 61, 58, 0.12);
      --radius: 14px;
      --max: 72rem;
      --font-display: "Newsreader", Georgia, serif;
      --font-body: "Figtree", sans-serif;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      color: var(--ink);
      background: var(--paper);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    a { color: var(--link); text-underline-offset: 3px; }
    a:hover { color: var(--brand); }
    :focus-visible {
      outline: 3px solid var(--mint);
      outline-offset: 3px;
    }

    .skip {
      position: absolute;
      left: -999px;
      top: 0;
      background: #fff;
      padding: 0.75rem 1rem;
      z-index: 100;
    }
    .skip:focus { left: 1rem; top: 1rem; }

    /* —— Header —— */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(14px);
      background: rgba(244, 250, 248, 0.88);
      border-bottom: 1px solid var(--line);
    }
    .site-header__inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0.85rem 1.25rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }
    .logo {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.35rem;
      color: var(--brand);
      text-decoration: none;
      letter-spacing: -0.02em;
    }
    .logo span { color: var(--brand-mid); font-weight: 500; }
    .nav {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem 1rem;
      font-size: 0.92rem;
      font-weight: 600;
    }
    .nav a {
      color: var(--ink-soft);
      text-decoration: none;
    }
    .nav a:hover { color: var(--brand); }

    /* —— Hero —— */
    .hero {
      position: relative;
      overflow: hidden;
      color: #f7fffc;
      background:
        radial-gradient(ellipse 80% 60% at 15% 20%, rgba(126, 201, 184, 0.35), transparent 55%),
        radial-gradient(ellipse 70% 50% at 90% 10%, rgba(196, 92, 26, 0.22), transparent 50%),
        linear-gradient(165deg, #063530 0%, #0a3d3a 42%, #0f534c 78%, #14635e 100%);
      min-height: min(92vh, 820px);
      display: flex;
      align-items: flex-end;
    }
    .hero__mesh {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,0.55), transparent 85%);
      pointer-events: none;
      animation: meshDrift 28s linear infinite;
    }
    @keyframes meshDrift {
      from { transform: translateY(0); }
      to { transform: translateY(48px); }
    }
    .hero__glow {
      position: absolute;
      width: 42rem;
      height: 42rem;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(126, 201, 184, 0.28), transparent 65%);
      right: -12rem;
      bottom: -18rem;
      animation: glowPulse 8s ease-in-out infinite alternate;
      pointer-events: none;
    }
    @keyframes glowPulse {
      from { opacity: 0.55; transform: scale(1); }
      to { opacity: 1; transform: scale(1.08); }
    }
    .hero__inner {
      position: relative;
      z-index: 1;
      max-width: var(--max);
      margin: 0 auto;
      padding: clamp(4.5rem, 12vw, 7.5rem) 1.25rem clamp(3rem, 7vw, 4.5rem);
      width: 100%;
    }
    .hero__brand {
      font-family: var(--font-display);
      font-size: clamp(2.75rem, 8vw, 5.25rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 0.95;
      margin-bottom: 1.25rem;
      animation: riseIn 0.9s ease both;
    }
    .hero__title {
      font-family: var(--font-display);
      font-size: clamp(1.35rem, 3.2vw, 2rem);
      font-weight: 600;
      max-width: 22ch;
      line-height: 1.2;
      margin-bottom: 0.85rem;
      animation: riseIn 0.9s ease 0.12s both;
    }
    .hero__lead {
      max-width: 38rem;
      font-size: 1.08rem;
      color: rgba(247, 255, 252, 0.88);
      margin-bottom: 1.75rem;
      animation: riseIn 0.9s ease 0.22s both;
    }
    .hero__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      animation: riseIn 0.9s ease 0.32s both;
    }
    @keyframes riseIn {
      from { opacity: 0; transform: translateY(18px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      padding: 0.85rem 1.25rem;
      border-radius: 999px;
      font-weight: 700;
      font-size: 0.98rem;
      text-decoration: none;
      border: 2px solid transparent;
      transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn--primary {
      background: #f7fffc;
      color: var(--brand);
    }
    .btn--primary:hover { background: #fff; color: var(--brand); }
    .btn--ghost {
      background: transparent;
      color: #f7fffc;
      border-color: rgba(247, 255, 252, 0.4);
    }
    .btn--ghost:hover { border-color: #f7fffc; color: #fff; }
    .btn--solid {
      background: var(--brand);
      color: #fff;
    }
    .btn--solid:hover { background: var(--brand-mid); color: #fff; }
    .btn--warn {
      background: var(--warn);
      color: #fff;
    }
    .btn--warn:hover { filter: brightness(1.05); color: #fff; }

    /* —— Layout —— */
    .wrap {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 1.25rem;
    }
    section {
      padding: clamp(3rem, 7vw, 5rem) 0;
    }
    section + section {
      border-top: 1px solid var(--line);
    }
    .eyebrow {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--brand-mid);
      margin-bottom: 0.65rem;
    }
    h2 {
      font-family: var(--font-display);
      font-size: clamp(1.75rem, 3.5vw, 2.45rem);
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 0.85rem;
      max-width: 20ch;
    }
    h3 {
      font-family: var(--font-display);
      font-size: 1.35rem;
      margin: 1.75rem 0 0.65rem;
    }
    .lede {
      font-size: 1.08rem;
      color: var(--ink-soft);
      max-width: 42rem;
      margin-bottom: 1.5rem;
    }
    .stack > * + * { margin-top: 1rem; }
    .split {
      display: grid;
      gap: 2rem;
    }
    @media (min-width: 860px) {
      .split { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
      .split--reverse > :first-child { order: 2; }
    }

    /* —— Audience strip —— */
    .audience {
      background: linear-gradient(180deg, var(--paper-2), var(--paper));
    }
    .audience__list {
      display: grid;
      gap: 0.85rem;
      list-style: none;
      margin-top: 1.5rem;
    }
    @media (min-width: 700px) {
      .audience__list { grid-template-columns: repeat(2, 1fr); }
    }
    .audience__list a {
      display: block;
      padding: 1rem 1.1rem;
      border-left: 4px solid var(--mint);
      background: rgba(255,255,255,0.55);
      text-decoration: none;
      color: var(--ink);
      transition: border-color 0.2s ease, background 0.2s ease;
    }
    .audience__list a:hover {
      border-color: var(--brand);
      background: #fff;
    }
    .audience__list strong {
      display: block;
      font-size: 1.02rem;
      margin-bottom: 0.2rem;
    }
    .audience__list span {
      color: var(--muted);
      font-size: 0.94rem;
    }

    /* —— Callouts —— */
    .quote {
      font-family: var(--font-display);
      font-size: clamp(1.25rem, 2.5vw, 1.65rem);
      font-weight: 600;
      line-height: 1.35;
      color: var(--brand);
      max-width: 28ch;
      margin-bottom: 1.25rem;
    }
    .callout {
      border-radius: var(--radius);
      padding: 1.15rem 1.25rem;
      margin: 1.25rem 0;
    }
    .callout--warn {
      background: var(--warn-bg);
      border: 1px solid rgba(196, 92, 26, 0.25);
      color: #5c2c0a;
    }
    .callout--danger {
      background: var(--danger-bg);
      border: 1px solid rgba(155, 28, 28, 0.2);
      color: #5c1010;
    }
    .callout--ok {
      background: var(--ok-bg);
      border: 1px solid rgba(15, 107, 76, 0.2);
      color: #0a3d2c;
    }
    .callout strong { display: block; margin-bottom: 0.3rem; }

    /* —— Table —— */
    .table-wrap {
      overflow-x: auto;
      margin: 1.25rem 0 1.75rem;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: var(--shadow);
    }
    table {
      width: 100%;
      border-collapse: collapse;
      min-width: 34rem;
      font-size: 0.98rem;
    }
    th, td {
      text-align: left;
      padding: 1rem 1.15rem;
      border-bottom: 1px solid var(--line);
      vertical-align: top;
    }
    th {
      background: var(--brand);
      color: #f7fffc;
      font-weight: 600;
    }
    tr:last-child td { border-bottom: 0; }
    td:last-child {
      font-weight: 700;
      color: var(--brand);
      white-space: nowrap;
    }

    /* —— Steps —— */
    .steps {
      counter-reset: step;
      list-style: none;
      display: grid;
      gap: 1.25rem;
      margin-top: 1.5rem;
    }
    .steps li {
      position: relative;
      padding: 1.25rem 1.25rem 1.25rem 4.25rem;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
    }
    .steps li::before {
      counter-increment: step;
      content: counter(step);
      position: absolute;
      left: 1.1rem;
      top: 1.2rem;
      width: 2.2rem;
      height: 2.2rem;
      border-radius: 50%;
      background: var(--brand);
      color: #fff;
      display: grid;
      place-items: center;
      font-weight: 700;
      font-size: 0.95rem;
    }
    .steps h3 {
      margin: 0 0 0.45rem;
      font-size: 1.15rem;
    }
    .steps p, .steps ul { color: var(--ink-soft); }
    .steps ul {
      margin: 0.65rem 0 0 1.1rem;
    }

    /* —— Resource directory —— */
    .resources {
      background:
        radial-gradient(ellipse at top right, rgba(126, 201, 184, 0.18), transparent 45%),
        var(--paper-2);
    }
    .resource-grid {
      display: grid;
      gap: 1.75rem;
      margin-top: 1.75rem;
    }
    @media (min-width: 760px) {
      .resource-grid { grid-template-columns: repeat(2, 1fr); }
    }
    .resource-block h3 {
      margin-top: 0;
      padding-bottom: 0.5rem;
      border-bottom: 2px solid var(--mint);
      display: inline-block;
    }
    .resource-block ul {
      list-style: none;
      margin-top: 0.85rem;
    }
    .resource-block li {
      padding: 0.7rem 0;
      border-bottom: 1px solid var(--line);
    }
    .resource-block li:last-child { border-bottom: 0; }
    .resource-block a {
      font-weight: 700;
      text-decoration: none;
      display: inline;
    }
    .resource-block a:hover { text-decoration: underline; }
    .resource-block p {
      color: var(--muted);
      font-size: 0.94rem;
      margin-top: 0.2rem;
    }

    /* —— Checklist —— */
    .checklist {
      list-style: none;
      display: grid;
      gap: 0.65rem;
      margin: 1rem 0;
    }
    .checklist li {
      position: relative;
      padding-left: 1.75rem;
    }
    .checklist li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.45rem;
      width: 0.85rem;
      height: 0.85rem;
      border-radius: 3px;
      border: 2px solid var(--brand-mid);
      background: rgba(126, 201, 184, 0.25);
    }

    /* —— Action bar —— */
    .action-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 1.5rem;
    }

    /* —— FAQ —— */
    details {
      border-bottom: 1px solid var(--line);
      padding: 1rem 0;
    }
    summary {
      cursor: pointer;
      font-weight: 700;
      list-style: none;
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      align-items: center;
    }
    summary::-webkit-details-marker { display: none; }
    summary::after {
      content: "+";
      font-size: 1.4rem;
      color: var(--brand-mid);
      font-weight: 400;
    }
    details[open] summary::after { content: "–"; }
    details p, details ul {
      margin-top: 0.75rem;
      color: var(--ink-soft);
    }
    details ul { margin-left: 1.1rem; }

    /* —— Share / footer —— */
    .share {
      background: var(--brand);
      color: #f7fffc;
    }
    .share h2 { color: #f7fffc; max-width: none; }
    .share .lede { color: rgba(247, 255, 252, 0.85); }
    .share a { color: #b8efe3; }
    .site-footer {
      background: #052825;
      color: rgba(247, 255, 252, 0.75);
      padding: 2.5rem 0 3rem;
      font-size: 0.92rem;
    }
    .site-footer a { color: #b8efe3; }
    .site-footer strong { color: #f7fffc; }
    .disclaimer {
      margin-top: 1.25rem;
      padding-top: 1.25rem;
      border-top: 1px solid rgba(247, 255, 252, 0.12);
      max-width: 48rem;
    }

    /* —— sticky CTA on mobile —— */
    .mobile-cta {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 50;
      padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
      background: rgba(5, 40, 37, 0.94);
      backdrop-filter: blur(10px);
      gap: 0.5rem;
    }
    @media (max-width: 720px) {
      .nav { display: none; }
      .mobile-cta { display: flex; }
      body { padding-bottom: 4.5rem; }
      .mobile-cta .btn { flex: 1; padding: 0.75rem 0.5rem; font-size: 0.88rem; }
    }

    /* —— Full mobile polish —— */
    html, body {
      max-width: 100%;
      overflow-x: hidden;
    }
    @media (max-width: 720px) {
      .site-header__inner {
        padding: 0.7rem 0.85rem;
        gap: 0.5rem;
        flex-wrap: nowrap;
      }
      .logo {
        font-size: 1.1rem;
        min-width: 0;
      }
      .logo span {
        display: none;
      }
      .lang-switch {
        margin-left: auto;
        flex-shrink: 0;
      }
      .lang-switch a {
        min-height: 2.5rem;
        min-width: 2.5rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.35rem 0.65rem;
      }
      .hero {
        min-height: auto;
      }
      .hero__inner {
        padding: 3rem 1rem 2.25rem;
      }
      .hero__brand {
        font-size: clamp(2.1rem, 12vw, 3rem);
      }
      .hero__title {
        max-width: none;
        font-size: clamp(1.2rem, 5.5vw, 1.55rem);
      }
      .hero__lead {
        font-size: 1rem;
      }
      .hero__actions {
        flex-direction: column;
        align-items: stretch;
      }
      .hero__actions .btn {
        width: 100%;
        justify-content: center;
        min-height: 2.75rem;
      }
      .wrap {
        padding-left: 1rem;
        padding-right: 1rem;
      }
      section {
        padding: 2.25rem 0;
      }
      h2 {
        max-width: none;
      }
      .action-bar {
        flex-direction: column;
        align-items: stretch;
      }
      .action-bar .btn {
        width: 100%;
        justify-content: center;
        min-height: 2.75rem;
      }
      .table-wrap {
        margin-left: -0.25rem;
        margin-right: -0.25rem;
        -webkit-overflow-scrolling: touch;
      }
      table {
        font-size: 0.88rem;
      }
      th, td {
        padding: 0.7rem 0.65rem;
      }
      .steps li {
        padding: 1.1rem 1rem 1.1rem 3.6rem;
      }
      .resource-grid {
        grid-template-columns: 1fr;
      }
      .stats,
      .admin-grid,
      .grid {
        grid-template-columns: 1fr;
      }
      .callout {
        font-size: 0.95rem;
      }
      .site-footer {
        padding: 2rem 1rem 6.5rem;
      }
      /* Extra bottom room when cookie bar may also show */
      body.has-mobile-cta {
        padding-bottom: 4.75rem;
      }
      .mobile-cta {
        z-index: 85;
        gap: 0.45rem;
        padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom));
      }
      .mobile-cta .btn {
        min-height: 2.75rem;
        touch-action: manipulation;
      }
    }

    @media (max-width: 420px) {
      .audience__list a {
        padding: 0.85rem 0.85rem;
      }
      .btn {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .hero__mesh, .hero__glow, .hero__brand, .hero__title, .hero__lead, .hero__actions {
        animation: none !important;
      }
    }

/* language switcher */
.lang-switch{display:inline-flex;gap:0.35rem;align-items:center;margin-left:0.75rem;}
.lang-switch a{font-size:0.82rem;font-weight:700;text-decoration:none;padding:0.28rem 0.55rem;border-radius:999px;border:1px solid rgba(16,45,42,0.15);color:var(--ink-soft);}
.lang-switch a:hover{color:var(--brand);border-color:var(--brand);}
.lang-switch a.is-active{background:var(--brand);color:#fff;border-color:var(--brand);}
.site-header .lang-switch a{border-color:rgba(16,45,42,0.18);}
.hero .lang-switch a,.topbar .lang-switch a{border-color:rgba(247,255,252,0.35);color:rgba(247,255,252,0.9);}
.hero .lang-switch a.is-active,.topbar .lang-switch a.is-active{background:#f7fffc;color:var(--brand);border-color:#f7fffc;}

