    /* ─── Skip Navigation ──────────────────────── */
    .skip-nav {
      position: absolute;
      top: -100%;
      left: 0;
      padding: 12px 24px;
      background: var(--orange, #d7263d);
      color: #fff;
      font-weight: 600;
      font-size: 14px;
      z-index: 10000;
      text-decoration: none;
      border-radius: 0 0 6px 0;
      transition: top 0.2s;
    }
    .skip-nav:focus {
      top: 0;
    }

    /* ─── Variables ─────────────────────────────── */
    :root {
      --beige:        #f2f0ed;
      --beige-dark:   #e8e6e4;
      --beige-border: #d5d3d1;
      --dark:         #0c0c0c;
      --dark-card:    #141414;
      --dark-border:  rgba(255,255,255,0.09);
      --orange:       #d7263d;
      --blue:         #52acfd;
      --grey:         #666666;
      --white:        #ffffff;
      --muted-dark:   #666666;
      --font-sans:    'DM Sans', system-ui, sans-serif;
      --font-mono:    'IBM Plex Mono', 'Courier New', monospace;
    }

    /* ─── Reset ─────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-sans);
      background: var(--beige);
      color: var(--dark);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
      line-height: 1.5;
    }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }
    ul { list-style: none; }

    /* ─── Focus Visible ─────────────────────────── */
    :focus { outline: none; }
    :focus-visible {
      outline: 3px solid var(--orange);
      outline-offset: 3px;
      border-radius: 2px;
    }

    /* ─── Reduced Motion ────────────────────────── */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
      .reveal { opacity: 1; transform: none; transition: none; }
      .ticker-track { animation: none; }
    }

    /* ─── Scroll Reveal ──────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
                  transform 0.65s cubic-bezier(0.16,1,0.3,1);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.32s; }

    /* ─── Buttons ────────────────────────────────── */
    .btn {
      display: inline-block;
      font-family: var(--font-mono);
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      padding: 11px 18px;
      cursor: pointer;
      border: none;
      white-space: nowrap;
      transition: background-color .2s, color .2s, box-shadow .2s;
    }
    .btn-orange:hover { background: var(--dark); color: var(--orange); }
    .btn-blue:hover   { background: var(--dark); color: var(--blue); }

    /* Orange buttons use L-bracket corner marks (not a full outline) */
    .btn-orange {
      background: var(--orange);
      color: var(--white);
      position: relative;
    }
    .btn-orange::before {
      content: '';
      position: absolute;
      inset: -4px;
      pointer-events: none;
      background:
        linear-gradient(var(--dark),var(--dark)) top    left /10px 2px no-repeat,
        linear-gradient(var(--dark),var(--dark)) top    left /2px  10px no-repeat,
        linear-gradient(var(--dark),var(--dark)) top    right/10px 2px no-repeat,
        linear-gradient(var(--dark),var(--dark)) top    right/2px  10px no-repeat,
        linear-gradient(var(--dark),var(--dark)) bottom left /10px 2px no-repeat,
        linear-gradient(var(--dark),var(--dark)) bottom left /2px  10px no-repeat,
        linear-gradient(var(--dark),var(--dark)) bottom right/10px 2px no-repeat,
        linear-gradient(var(--dark),var(--dark)) bottom right/2px  10px no-repeat;
    }
    /* CTA sits on a dark background — make the red button's corner brackets red so they show */
    .cta-section .btn-orange::before {
      background:
        linear-gradient(var(--orange),var(--orange)) top    left /10px 2px no-repeat,
        linear-gradient(var(--orange),var(--orange)) top    left /2px  10px no-repeat,
        linear-gradient(var(--orange),var(--orange)) top    right/10px 2px no-repeat,
        linear-gradient(var(--orange),var(--orange)) top    right/2px  10px no-repeat,
        linear-gradient(var(--orange),var(--orange)) bottom left /10px 2px no-repeat,
        linear-gradient(var(--orange),var(--orange)) bottom left /2px  10px no-repeat,
        linear-gradient(var(--orange),var(--orange)) bottom right/10px 2px no-repeat,
        linear-gradient(var(--orange),var(--orange)) bottom right/2px  10px no-repeat;
    }

    .btn-outline {
      background: var(--white);
      color: var(--dark);
      border: 1.5px solid var(--dark);
      box-shadow: 3px 3px 0 var(--dark);
    }
    .btn-outline:hover { box-shadow: 1px 1px 0 var(--dark); }

    .btn-outline-white {
      background: transparent;
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,0.35);
    }

    .btn-blue {
      background: var(--blue);
      color: var(--dark);
      position: relative;
    }
    .btn-blue::before {
      content: '';
      position: absolute;
      inset: -4px;
      pointer-events: none;
      background:
        linear-gradient(var(--blue),var(--blue)) top    left /10px 2px no-repeat,
        linear-gradient(var(--blue),var(--blue)) top    left /2px  10px no-repeat,
        linear-gradient(var(--blue),var(--blue)) top    right/10px 2px no-repeat,
        linear-gradient(var(--blue),var(--blue)) top    right/2px  10px no-repeat,
        linear-gradient(var(--blue),var(--blue)) bottom left /10px 2px no-repeat,
        linear-gradient(var(--blue),var(--blue)) bottom left /2px  10px no-repeat,
        linear-gradient(var(--blue),var(--blue)) bottom right/10px 2px no-repeat,
        linear-gradient(var(--blue),var(--blue)) bottom right/2px  10px no-repeat;
    }

    /* ─── Corner Registration Marks ─────────────── */
    .corners {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 5;
    }
    .corners::before, .corners::after,
    .corners .c3, .corners .c4 {
      content: '';
      position: absolute;
      width: 8px;
      height: 8px;
    }
    .corners::before { top: 0;    left: 0;  background: var(--dark); }
    .corners::after  { top: 0;    right: 0; background: var(--dark); }
    .corners .c3     { bottom: 0; right: 0; background: var(--dark); }
    .corners .c4     { bottom: 0; left: 0;  background: var(--dark); }
    /* White variant for dark sections */
    .corners-white::before, .corners-white::after,
    .corners-white .c3, .corners-white .c4 { background: var(--white); }

    /* ─── BG Circle Watermark ────────────────────── */
    .bg-watermark {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
      z-index: 0;
    }
    .bg-watermark svg { position: absolute; }
    .bg-watermark circle { fill: none; stroke: rgba(0,0,0,0.065); stroke-width: 1; }
    .dark-circles circle { stroke: rgba(255,255,255,0.05); }

    /* ─── Top Chrome ─────────────────────────────── */
    .top-chrome {
      height: 22px;
      background: var(--dark);
      display: flex;
      align-items: center;
      padding: 0 20px;
    }
    .chrome-favicon {
      font-family: var(--font-mono);
      font-size: 10px;
      color: #ffffff;
      margin-left: 8px;
    }

    /* ─── Navbar ──────────────────────────────────── */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--beige);
      border-bottom: 1px solid var(--beige-border);
      transition: box-shadow 0.25s;
    }
    .navbar.scrolled { box-shadow: 0 1px 16px rgba(0,0,0,0.07); }
    .nav-wrap {
      display: grid;
      grid-template-columns: 176px 1fr 176px;
      align-items: stretch;
      height: 88px;
    }
    .nav-logo-cell {
      display: flex;
      align-items: center;
      padding: 0 28px;
      border-right: 1px solid var(--beige-border);
    }
    .nav-logo { height: 28px; width: auto; max-width: none; flex-shrink: 0; object-fit: contain; }
    .nav-logo-fallback {
      font-family: var(--font-mono);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: -0.01em;
      color: var(--dark);
      display: none;
    }
    .nav-logo-fallback .marks {
      font-size: 16px;
      letter-spacing: -0.04em;
      vertical-align: middle;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 0 20px;
      list-style: none;
      margin: 0;
    }
    .nav-link {
      font-family: var(--font-mono);
      font-size: 13px; line-height: 1; height: 36px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 0 11px;
      border: 1.5px solid var(--beige-border);
      background: var(--white);
      color: var(--dark);
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 5px;
      transition: border-color 0.15s;
    }
    .nav-link:hover { border-color: rgba(0,0,0,0.4); }
    .nav-link .drop { font-size: 8px; opacity: 0.6; }
    .nav-cta-cell {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding: 0 28px;
      border-left: 1px solid var(--beige-border);
    }

    /* ─── Hamburger ──────────────────────────────── */
    .nav-hamburger {
      display: none; flex-direction: column; justify-content: center;
      gap: 5px; cursor: pointer; padding: 8px; background: none; border: none;
      margin-left: auto;
    }
    .nav-hamburger span {
      display: block; width: 22px; height: 2px;
      background: var(--dark); border-radius: 1px;
      transition: 0.25s;
    }
    .nav-mobile {
      display: none; flex-direction: column;
      background: var(--white); border-top: 1px solid var(--beige-border);
      padding: 12px 20px 16px;
      list-style: none; margin: 0;
    }
    .nav-mobile li a {
      font-family: var(--font-mono); font-size: 11px; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase; color: var(--dark);
      padding: 10px 0; border-bottom: 1px solid var(--beige-border);
      text-decoration: none; display: block;
    }
    .nav-mobile li:last-child a { border-bottom: none; }
    .nav-mobile-open .nav-mobile { display: flex; }

    /* ─── Eyebrow Row ────────────────────────────── */
    .eyebrow-row {
      display: flex;
      justify-content: center;
      margin-bottom: 28px;
    }
    .eyebrow-row .hero-eyebrow { margin-bottom: 0; }

    /* ─── Mobile Nav Login Accent ────────────────── */
    /* Universal: red login link on every page, both nav-mobile markups
       (<ul><li><a> on main pages and <div><a> on article pages) */
    .nav-mobile li a.nav-mobile-login,
    .nav-mobile a[href="login.html"] { color: var(--orange); }


    /* ─── Responsive Nav ─────────────────────── */
    @media (max-width: 991px) {
      .nav-wrap  { grid-template-columns: auto 1fr auto; height: 72px; }
      .nav-links { gap: 0; }
      .nav-link  { padding: 0 14px; font-size: 10px; }
    }
    @media (max-width: 767px) {
      .nav-wrap     { grid-template-columns: auto 1fr; height: 60px; padding: 0 20px; }
      .nav-links    { display: none; }
      .nav-cta-cell { display: none; }
      .nav-hamburger { display: flex; }
    }

    /* ─── Footer Disclaimer (full-width row) ─────── */
    footer > .footer-disclaimer {
      max-width: 100%;
      width: 100%;
      margin: 0;
      padding: 24px 0 32px;
      border-top: 1px solid var(--beige-border);
    }

    /* ─── Newsletter ─────────────────────────────── */
    .newsletter-section {
      background: var(--beige);
      padding: 80px 80px;
    }
    .newsletter-card {
      background: var(--white);
      border: 1.5px solid var(--beige-border);
      padding: 56px 44px;
      text-align: center;
    }
    .newsletter-eyebrow {
      display: inline-block;
      background: rgb(30, 30, 30);
      color: #fff;
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 2px;
      margin-bottom: 18px;
    }
    .newsletter-h2 {
      font-size: 32px;
      font-weight: 800;
      letter-spacing: -0.025em;
      line-height: 1.15;
      color: var(--dark);
      max-width: 520px;
      margin: 0 auto 14px;
    }
    .newsletter-sub {
      font-size: 15px;
      line-height: 1.7;
      color: var(--grey);
      max-width: 540px;
      margin: 0 auto 28px;
    }
    .newsletter-form {
      display: flex;
      gap: 10px;
      max-width: 460px;
      margin: 0 auto;
    }
    .newsletter-input {
      flex: 1;
      min-width: 0;
      font-family: var(--font-sans);
      font-size: 14px;
      color: var(--dark);
      padding: 11px 14px;
      background: var(--beige);
      border: 1.5px solid var(--beige-border);
    }
    .newsletter-input::placeholder { color: #9a9a9a; }
    .newsletter-input:focus { outline: none; border-color: var(--orange); }
    .newsletter-form .btn { flex-shrink: 0; }
    .newsletter-msg {
      display: none;
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--orange);
      margin-top: 16px;
    }
    .newsletter-form.is-done { display: none; }
    .newsletter-form.is-done + .newsletter-msg { display: block; }
    @media (max-width: 991px) {
      .newsletter-section { padding: 64px 48px; }
    }
    @media (max-width: 767px) {
      .newsletter-section { padding: 56px 24px; }
    }
    @media (max-width: 560px) {
      .newsletter-section { padding: 48px 16px; }
      .newsletter-card { padding: 36px 24px; }
      .newsletter-h2 { font-size: 25px; }
      .newsletter-form { flex-direction: column; }
    }

/* ═══════════ SHARED FOOTER (canonical, mirrors homepage) ═══════════ */
    .footer {
      background: var(--beige);
      padding: 56px 80px 0;
      border-top: 1px solid var(--beige-border);
      position: relative; overflow: hidden;
    }
    .footer-top-row {
      display: flex; align-items: flex-end;
      justify-content: space-between; margin-bottom: 40px;
      position: relative; z-index: 1;
    }
    .footer-logo-img { height: 112px; }
    .footer-devices { display: flex; align-items: flex-end; gap: 28px; }
    .footer-devices img { height: 46px; opacity: 0.82; }
    .footer-nav {
      display: grid;
      grid-template-columns: 170px repeat(3, 1fr);
      border-top: 1px solid var(--beige-border);
      padding: 28px 0 36px;
      position: relative; z-index: 1;
    }
    .footer-label-cell { display: flex; align-items: flex-start; }
    .section-tag {
      background: var(--dark); color: var(--white);
      font-family: var(--font-mono); font-size: 10px; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase;
      padding: 6px 14px;
    }
    .footer-col {
      padding: 0 20px;
      border-left: 1px solid var(--beige-border);
      display: flex; flex-direction: column; gap: 14px;
    }
    .footer-col-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .footer-col-heading {
      font-family: var(--font-mono); font-size: 10px; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey);
      margin-bottom: 2px;
    }
    .footer-link {
      display: flex; align-items: center; gap: 7px;
      font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase; color: var(--dark);
    }
    .footer-link::before { content: '↳'; color: var(--grey); font-size: 11px; }
    .footer-link:hover { color: var(--orange); }
    .footer-bottom-row {
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px 0;
      border-top: 1px solid var(--beige-border);
      position: relative; z-index: 1;
    }
    .footer-social { display: flex; gap: 10px; align-items: center; }
    .social-btn {
      width: 36px; height: 36px;
      border: 1.5px solid var(--beige-border);
      background: var(--white);
      display: flex; align-items: center; justify-content: center;
      transition: border-color 0.15s; cursor: pointer;
    }
    .social-btn:hover { border-color: var(--dark); }
    .social-btn img { width: 16px; height: 16px; }
    .soc-cert { width: 50px; height: 50px; flex-shrink: 0; }
    .footer-disclaimer {
      font-family: var(--font-mono);
      font-size: 8.5px;
      font-weight: 500;
      letter-spacing: 0.03em;
      color: var(--grey);
      line-height: 1.6;
      max-width: 480px;
    }
    .footer-disclaimer strong {
      font-weight: 700;
      color: var(--dark);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .footer-bar {
      background: var(--orange);
      padding: 5px 80px;
      display: flex; align-items: center;
      justify-content: space-between;
      position: relative;
    }
    .footer-bar-logo {
      position: absolute; left: 80px; top: 50%;
      transform: translateY(-50%);
    }
    .footer-bar-logo img {
      height: 14px;
      filter: brightness(0);
      opacity: 0.75;
    }
    .footer-bar-left {
      font-family: var(--font-mono); font-size: 10px; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase; color: var(--dark);
      padding-left: 110px;
    }
    .footer-bar-right {
      font-family: var(--font-mono); font-size: 10px; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase; color: var(--dark);
    }
    .copyright-bar {
      background: var(--dark);
      padding: 4px 80px;
      display: flex; align-items: center; justify-content: flex-end;
    }
    .copyright-bar span {
      font-family: var(--font-mono); font-size: 9px; font-weight: 600;
      letter-spacing: 0.06em; color: rgba(255,255,255,0.45);
      text-transform: uppercase;
    }
    .footer-float-icons {
      position: absolute;
      right: 64px;
      top: 56px;
      display: flex;
      flex-direction: column;
      gap: 36px;
      z-index: 0;
      pointer-events: none;
    }
    .footer-float-icons img       { width: 50px; opacity: 0.7; }
    .footer-float-icons img.wide  { width: 56px; }
    .footer-bottom-left,
    .footer-bottom-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .compliance-badge { display: flex; align-items: center; gap: 7px; background: var(--beige-dark); padding: 9px 11px; flex-shrink: 0; border: 1px solid var(--beige-border); }
    .badge-title { display: block; font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark); line-height: 1.3; }
    .badge-sub { display: block; font-family: var(--font-mono); font-size: 7.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey); line-height: 1.3; }
    .helix-badge { display: inline-flex; align-items: center; gap: 9px; background: var(--dark); padding: 9px 13px; flex-shrink: 0; border: 1px solid rgba(255,255,255,0.08); position: relative; }
    .helix-badge-label { display: block; font-family: var(--font-mono); font-size: 7.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #ffffff; line-height: 1.3; }
    .helix-badge-name { display: block; font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--orange); line-height: 1.3; }
    @media (max-width: 991px) {
      .footer          { padding: 48px 48px 0; }
      .footer-bottom-row { flex-direction: column; align-items: flex-start; gap: 24px; }
      .footer-bottom-left { flex-wrap: wrap; align-items: flex-start !important; gap: 12px !important; }
      .footer-disclaimer { flex: 0 0 100%; max-width: 100%; }
      .footer-bar, .copyright-bar { padding-left: 48px; padding-right: 48px; }
      .footer-nav { grid-template-columns: auto 1fr 1fr 1fr; }
    }
    @media (max-width: 767px) {
      .footer        { padding: 40px 24px 0; }
      .footer-top-row { flex-direction: column; gap: 20px; align-items: flex-start; }
      .footer-devices { gap: 12px; }
      .footer-devices img { height: 40px; }
      .footer-nav    { grid-template-columns: 1fr 1fr; gap: 28px; }
      .footer-label-cell { display: none; }
      .footer-float-icons { display: none; }
      .footer-bottom-row { flex-direction: column; align-items: flex-start; gap: 24px; }
      .footer-bottom-left { flex-wrap: wrap; align-items: flex-start !important; gap: 12px !important; }
      .footer-disclaimer { flex: 0 0 100%; max-width: 100%; }
      .footer-bar, .copyright-bar { padding-left: 24px; padding-right: 24px; }
      .footer-bar-logo { left: 24px; }
      .footer-bar-left { padding-left: 80px; font-size: 8px; }
      .footer-bar-right { font-size: 8px; }
    }
    @media (max-width: 479px) {
      .footer { padding: 32px 16px 0; }
      .footer-nav { grid-template-columns: 1fr; }
      .footer-logo-img { width: 100%; height: auto; }
      .footer-devices { display: none; }
      .footer-bottom-right { flex-direction: column; align-items: flex-start !important; gap: 12px !important; }
      .footer-bar, .copyright-bar { padding-left: 16px; padding-right: 16px; }
      .footer-bar-logo { left: 16px; }
      .footer-bar-left { padding-left: 70px; font-size: 7px; letter-spacing: 0.04em; }
      .footer-bar-right { font-size: 7px; letter-spacing: 0.04em; }
    }

/* Nav Login button — enlarged text, box size unchanged (site-wide nav update) */
.nav-cta-cell .btn { font-size: 13px; line-height: 1; height: 39px; padding: 0 18px; display: inline-flex; align-items: center; justify-content: center; }

/* ─── Cookie Consent Banner (site-wide, injected by cookie-consent.js) ─── */
#cookieBanner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 760px;
  background: var(--beige, #f2f0ed);              /* matches navbar background */
  border: 1px solid var(--beige-border, #d5d3d1); /* matches navbar border */
  border-top: 3px solid var(--dark, #0c0c0c);     /* echoes the black top-chrome bar above the nav */
  padding: 18px 24px 16px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  box-shadow: 0 10px 34px rgba(12, 12, 12, 0.14);
  animation: cookieSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
#cookieBanner.cookie-leaving { opacity: 0; transform: translateX(-50%) translateY(8px); transition: opacity 0.2s, transform 0.2s; }
@keyframes cookieSlideIn {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
#cookieBanner .cookie-body { flex: 1; min-width: 0; }
#cookieBanner .cookie-text {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10.5px;
  letter-spacing: 0.03em;
  color: #444444;                 /* ~7.7:1 on beige — passes WCAG AA */
  line-height: 1.65;
  margin: 0 0 8px;
}
#cookieBanner .cookie-text strong { color: var(--dark, #0c0c0c); font-weight: 700; letter-spacing: 0.04em; }
#cookieBanner .cookie-meta {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey, #666666);
  margin: 0;
}
#cookieBanner .cookie-links a {
  color: var(--dark, #0c0c0c);
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
#cookieBanner .cookie-links a:hover { color: var(--orange, #d7263d); }

#cookieBanner .cookie-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
}
/* Buttons mirror the navbar chip / Login button styling */
#cookieBanner .cookie-btn {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  height: 38px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--beige-border, #d5d3d1);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
/* Accept All — orange, like the Login button (.btn-orange) */
#cookieBanner .cookie-btn-primary {
  background: var(--orange, #d7263d);
  color: #fff;
  border-color: var(--orange, #d7263d);
}
#cookieBanner .cookie-btn-primary:hover { background: var(--dark, #0c0c0c); border-color: var(--dark, #0c0c0c); color: var(--orange, #d7263d); }
/* Essential Only — white chip with beige border + dark text, like .nav-link */
#cookieBanner .cookie-btn-secondary {
  background: var(--white, #ffffff);
  color: var(--dark, #0c0c0c);
  border-color: var(--beige-border, #d5d3d1);
}
#cookieBanner .cookie-btn-secondary:hover { border-color: rgba(0, 0, 0, 0.4); }
/* Reject All — quietest: transparent chip, grey underlined text */
#cookieBanner .cookie-btn-ghost {
  background: transparent;
  color: var(--grey, #666666);
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
}
#cookieBanner .cookie-btn-ghost:hover { color: var(--dark, #0c0c0c); }

@media (max-width: 767px) {
  #cookieBanner {
    bottom: 14px;
    left: 14px;
    right: 14px;
    width: auto;
    transform: none;
    padding: 14px 16px;
  }
  #cookieBanner.cookie-leaving { transform: translateY(8px); }
  @keyframes cookieSlideIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  #cookieBanner .cookie-actions { flex-wrap: wrap; gap: 6px; }
  #cookieBanner .cookie-btn { flex: 1 1 auto; padding: 11px 10px; }
  #cookieBanner .cookie-btn-ghost { flex: 1 1 100%; }
}

/* Screen-reader only — for headings/labels that should be announced but not seen */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
