:root {
    --map-img: url("/assets/map-chernarus.jpg");
    --ground: #07080A;
    --panel: #0E1116;
    --panel-hi: #151A22;
    --line: #212832;
    --line-bright: #2E3845;
    --bone: #E8E0D0;
    --bone-dim: #9AA0A0;
    --bone-faint: #5C6570;
    --olive: #6B7A3A;
    --olive-lt: #97AB55;
    --amber: #FFB020;
    --danger: #E5484D;
    --sky: #6FA8C7;

    --display: "Chakra Petch", "Trebuchet MS", sans-serif;
    --body: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

    --shell: 1180px;
  }

  * { box-sizing: border-box; }

  body {
    margin: 0;
    background: var(--ground);
    color: var(--bone);
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* faint topographic grid over the whole page */
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
      linear-gradient(to right, rgba(107,122,58,.055) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(107,122,58,.055) 1px, transparent 1px);
    background-size: 64px 64px;
  }

  main, header, footer { position: relative; z-index: 1; }

  .shell {
    width: min(100% - 48px, var(--shell));
    margin-inline: auto;
  }

  h1, h2, h3 {
    font-family: var(--display);
    font-weight: 700;
    letter-spacing: -0.01em;
    text-wrap: balance;
    margin: 0;
  }

  p { margin: 0; }

  a { color: inherit; }

  .tag {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--olive-lt);
  }

  .rule {
    height: 1px;
    background: var(--line);
    border: 0;
    margin: 0;
  }

  /* ---------- top bar ---------- */

  .topbar {
    border-bottom: 1px solid var(--line);
    background: rgba(7,8,10,.86);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 40;
  }

  .topbar .shell {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 62px;
  }

  .wordmark {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 19px;
    letter-spacing: 0.04em;
    text-decoration: none;
  }

  .wordmark .pin {
    width: 26px;
    height: 26px;
    flex: none;
  }

  .wordmark b { color: var(--olive-lt); font-weight: 700; }

  .for-game {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--bone-faint);
    border-left: 1px solid var(--line-bright);
    padding-left: 10px;
    margin-left: 2px;
  }

  @media (max-width: 520px) { .for-game { display: none; } }

  .topbar nav {
    margin-left: auto;
    display: flex;
    gap: 26px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .topbar nav a {
    color: var(--bone-dim);
    text-decoration: none;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
  }

  .topbar nav a:hover,
  .topbar nav a:focus-visible { color: var(--bone); border-bottom-color: var(--olive); }

  @media (max-width: 720px) { .topbar nav { display: none; } }

  .chime {
    margin-left: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--line-bright);
    color: var(--bone-dim);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 7px 11px;
    cursor: pointer;
    transition: color .15s ease, border-color .15s ease;
  }

  .chime svg { width: 15px; height: 15px; flex: none; }
  .chime:hover, .chime:focus-visible { color: var(--bone); border-color: var(--olive); }
  .chime[aria-pressed="true"] { color: var(--olive-lt); border-color: var(--olive); }

  @media (max-width: 720px) { .chime { margin-left: auto; } }

  /* ---------- hero ---------- */

  .hero { padding: 72px 0 84px; }

  .hero .shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 56px;
    align-items: center;
  }

  @media (max-width: 940px) {
    .hero { padding: 48px 0 56px; }
    .hero .shell { grid-template-columns: 1fr; gap: 40px; }
  }

  .stamp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--olive);
    color: var(--olive-lt);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 7px 12px;
    margin-bottom: 26px;
  }

  .stamp .dot {
    width: 6px;
    height: 6px;
    background: var(--amber);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(255,176,32,.16);
  }

  .hero h1 {
    font-size: clamp(40px, 6.4vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.02em;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--olive-lt);
  }

  .hero .lede b { color: var(--bone); font-weight: 600; }

  .hero .lede {
    margin-top: 22px;
    max-width: 46ch;
    color: var(--bone-dim);
    font-size: 18px;
  }

  .cta-row {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    text-decoration: none;
    font-family: var(--display);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.02em;
    border: 1px solid var(--olive);
    background: var(--olive);
    color: #0A0C07;
    transition: background .15s ease, border-color .15s ease, color .15s ease;
  }

  .btn:hover, .btn:focus-visible { background: var(--olive-lt); border-color: var(--olive-lt); }

  .btn.ghost {
    background: transparent;
    color: var(--bone);
    border-color: var(--line-bright);
  }

  .btn.ghost:hover, .btn.ghost:focus-visible { border-color: var(--olive); color: var(--olive-lt); }

  .btn small {
    display: block;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: .72;
    font-weight: 500;
  }

  .btn .store-ico { width: 20px; height: 20px; flex: none; }

  /* pre-launch: store buttons are status badges, not links */
  .btn.is-soon { cursor: default; }
  .btn.is-soon:hover { background: var(--olive); border-color: var(--olive); }
  .btn.ghost.is-soon:hover { background: transparent; border-color: var(--line-bright); color: var(--bone); }

  .hero-note {
    margin-top: 20px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--bone-faint);
    letter-spacing: 0.03em;
  }

  /* ---------- device mock ---------- */

  .rig {
    position: relative;
    aspect-ratio: 4 / 3.05;
    border: 1px solid var(--line);
    background:
      radial-gradient(120% 90% at 50% 0%, rgba(107,122,58,.10), transparent 62%),
      var(--panel);
    padding: 22px;
    display: grid;
    place-items: center;
  }

  .rig::before, .rig::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border: 1px solid var(--olive);
  }

  .rig::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
  .rig::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

  .tv {
    width: 88%;
    margin-right: auto;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--line-bright);
    background:
      linear-gradient(180deg, #17202B 0%, #0D1219 58%, #0A0E13 100%);
    position: relative;
    overflow: hidden;
  }

  .tv svg { position: absolute; inset: 0; width: 100%; height: 100%; }

  .tv .label {
    position: absolute;
    left: 14px;
    bottom: 12px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(232,224,208,.5);
  }

  .phone {
    position: absolute;
    right: 3%;
    bottom: 7%;
    width: 38%;
    max-width: 210px;
    aspect-ratio: 9 / 17.5;
    border: 1px solid var(--line-bright);
    border-radius: 18px;
    background: #05070A;
    box-shadow: 0 26px 50px -18px rgba(0,0,0,.9);
    padding: 9px;
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  .phone .status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--olive-lt);
  }

  .phone .status .led {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #4ADE80;
  }

  .minimap {
    flex: 1;
    position: relative;
    border: 1px solid var(--line);
    background: #0A0F0C;
    overflow: hidden;
  }

  .minimap svg { position: absolute; inset: 0; width: 100%; height: 100%; }

  .ping {
    position: absolute;
    left: 52%;
    top: 46%;
    width: 9px;
    height: 9px;
    margin: -4.5px 0 0 -4.5px;
    border-radius: 50%;
    background: #4ADE80;
    box-shadow: 0 0 10px rgba(74,222,128,.8);
  }

  .ping::after {
    content: "";
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(74,222,128,.8);
    border-radius: 50%;
    animation: sweep 2.6s ease-out infinite;
  }

  @keyframes sweep {
    0%   { transform: scale(.6); opacity: .9; }
    80%  { transform: scale(4.6); opacity: 0; }
    100% { transform: scale(4.6); opacity: 0; }
  }

  .phone .readout {
    font-family: var(--mono);
    font-size: 8.5px;
    line-height: 1.5;
    color: var(--bone-dim);
    display: grid;
    gap: 2px;
  }

  .phone .readout b { color: var(--bone); font-weight: 500; }
  .phone .readout .d { color: var(--sky); }

  @media (prefers-reduced-motion: reduce) {
    .ping::after { animation: none; opacity: .35; transform: scale(2.4); }
  }

  /* ---------- strip ---------- */

  .strip {
    border-block: 1px solid var(--line);
    background: var(--panel);
  }

  .strip .shell {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
  }

  .strip .cell {
    background: var(--panel);
    padding: 22px 20px;
  }

  .strip .k {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    color: var(--bone);
    font-variant-numeric: tabular-nums;
  }

  .strip .v {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--bone-faint);
    margin-top: 5px;
  }

  @media (max-width: 780px) {
    .strip .shell { grid-template-columns: repeat(2, 1fr); }
  }

  /* ---------- generic section ---------- */

  section.block { padding: 84px 0; scroll-margin-top: 92px; }

  .sec-head { max-width: 62ch; margin-bottom: 44px; }

  .sec-head h2 {
    font-size: clamp(28px, 3.6vw, 40px);
    line-height: 1.1;
    margin-top: 14px;
  }

  .sec-head p {
    margin-top: 16px;
    color: var(--bone-dim);
  }

  /* ---------- steps ---------- */

  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }

  @media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

  .step {
    background: var(--panel);
    padding: 30px 26px 34px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .step .n {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    color: var(--olive-lt);
  }

  .step h3 { font-size: 21px; }

  .step p { color: var(--bone-dim); font-size: 15.5px; }

  .step .art {
    height: 108px;
    border: 1px solid var(--line);
    background: #0A0D12;
    display: grid;
    place-items: center;
    margin-top: auto;
  }

  .step .art svg { width: 100%; height: 100%; }

  /* ---------- console callout ---------- */

  .callout {
    border: 1px solid var(--olive);
    background:
      linear-gradient(135deg, rgba(107,122,58,.14), transparent 58%),
      var(--panel-hi);
    padding: 40px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
    gap: 40px;
    align-items: center;
  }

  @media (max-width: 860px) { .callout { grid-template-columns: 1fr; padding: 28px; } }

  .callout h2 { font-size: clamp(24px, 3vw, 32px); }
  .callout p { color: var(--bone-dim); margin-top: 14px; max-width: 52ch; }

  .checks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.02em;
  }

  .checks li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    color: var(--bone);
  }

  .checks svg { flex: none; margin-top: 3px; }

  /* ---------- maps ---------- */

  .maps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  @media (max-width: 860px) { .maps { grid-template-columns: 1fr; } }

  .map-card {
    border: 1px solid var(--line);
    background: var(--panel);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .map-card .thumb {
    aspect-ratio: 1;
    border: 1px solid var(--line);
    background-color: #080B09;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
  }

  .map-card .thumb svg { position: absolute; inset: 0; width: 100%; height: 100%; }

  .map-card h3 { font-size: 19px; }

  .map-card .meta {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bone-faint);
  }

  .map-card .live {
    color: var(--olive-lt);
  }

  /* ---------- pricing ---------- */

  .price-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 760px;
  }

  @media (max-width: 760px) { .price-wrap { grid-template-columns: 1fr; } }

  .plan {
    border: 1px solid var(--line);
    background: var(--panel);
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .plan.featured { border-color: var(--olive); background: var(--panel-hi); }

  .plan .name {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--bone-faint);
  }

  .plan.featured .name { color: var(--olive-lt); }

  .plan .amount {
    font-family: var(--display);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
  }

  .plan .amount span {
    font-size: 15px;
    font-weight: 500;
    color: var(--bone-faint);
    font-family: var(--mono);
  }

  .plan p { color: var(--bone-dim); font-size: 15px; }

  .plan .save {
    align-self: flex-start;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid var(--amber);
    color: var(--amber);
    padding: 3px 8px;
  }

  .price-foot {
    margin-top: 22px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--bone-faint);
    max-width: 62ch;
    line-height: 1.7;
  }

  /* ---------- field notes ---------- */

  .timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin-bottom: 26px;
  }

  @media (max-width: 860px) { .timeline { grid-template-columns: 1fr; } }

  .tl-item {
    background: var(--panel);
    padding: 24px 24px 26px;
    display: flex;
    gap: 18px;
  }

  .tl-item .t {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .08em;
    color: var(--amber);
    padding-top: 4px;
    flex: none;
    font-variant-numeric: tabular-nums;
  }

  .tl-item h3 { font-size: 18px; }
  .tl-item p { color: var(--bone-dim); font-size: 15px; margin-top: 7px; }

  .two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }

  @media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

  .col { background: var(--panel); padding: 28px 26px 30px; }
  .col h3 { font-size: 19px; margin-bottom: 16px; }
  .good-col h3 { color: var(--olive-lt); }
  .bad-col h3 { color: var(--amber); }

  .col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }

  .col li {
    color: var(--bone-dim);
    font-size: 15.5px;
    padding-left: 20px;
    position: relative;
    line-height: 1.55;
  }

  .col li b { color: var(--bone); font-weight: 600; }

  .col li::before {
    content: "";
    position: absolute;
    left: 0; top: 9px;
    width: 8px; height: 8px;
    border: 1px solid currentColor;
  }

  .good-col li::before { border-color: var(--olive-lt); background: var(--olive); }
  .bad-col li::before { border-color: var(--amber); }

  .field-foot {
    margin-top: 22px;
    color: var(--bone-dim);
    font-size: 16px;
    max-width: 76ch;
    border-left: 2px solid var(--olive);
    padding-left: 16px;
  }

  .field-foot b { color: var(--bone); }

  /* ---------- app screenshots ---------- */

  .shots {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
  }

  .shots .lead { grid-column: 1 / -1; }

  @media (max-width: 720px) { .shots { grid-template-columns: 1fr; } }

  .shot { margin: 0; }

  .shot .plate {
    /* matches an Android tablet screenshot cropped to the app UI */
    aspect-ratio: 16 / 9;
    border: 1px solid var(--line-bright);
    background-color: var(--panel);
    background-size: cover;
    background-position: center;
  }

  .shot.pending .plate {
    /* empty slots stay a slim band so a pre-launch page has no big holes;
       the real screenshot restores the 16:10 frame */
    aspect-ratio: 16 / 4.5;
    border-style: dashed;
    display: grid;
    place-items: center;
    background-image: repeating-linear-gradient(135deg, rgba(107,122,58,.07) 0 10px, transparent 10px 22px);
  }

  .shot.pending .plate::after {
    content: attr(data-pending);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bone-faint);
    text-align: center;
    padding: 0 20px;
  }

  .shot figcaption {
    margin-top: 12px;
    font-family: var(--mono);
    font-size: 12px;
    line-height: 1.7;
    color: var(--bone-faint);
  }

  /* ---------- real map ---------- */

  .realmap {
    display: grid;
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
  }

  @media (max-width: 820px) { .realmap { grid-template-columns: 1fr; gap: 18px; } }

  .realmap-plate {
    aspect-ratio: 1;
    background-image: var(--map-img);
    background-size: cover;
    background-position: center;
  }
  .realmap { margin: 0 0 28px; }
  .realmap-plate { border: 1px solid var(--line-bright); }

  .realmap figcaption {
    margin-top: 12px;
    font-family: var(--mono);
    font-size: 12px;
    line-height: 1.7;
    color: var(--bone-faint);
    max-width: 78ch;
  }

  /* ---------- pipeline ---------- */

  .pipeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }

  @media (max-width: 860px) { .pipeline { grid-template-columns: 1fr; } }

  .pipeline li {
    background: var(--panel);
    padding: 26px 26px 28px;
    display: flex;
    gap: 18px;
  }

  .pipeline .n {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--olive-lt);
    padding-top: 5px;
    flex: none;
    font-variant-numeric: tabular-nums;
  }

  .pipeline h3 { font-size: 19px; }
  .pipeline p { color: var(--bone-dim); font-size: 15.5px; margin-top: 8px; }

  .pipeline-foot {
    margin-top: 22px;
    color: var(--bone-faint);
    font-size: 15px;
    max-width: 76ch;
  }

  .poi-block { margin-top: 34px; }
  .poi-block h3 { font-size: 18px; margin-bottom: 10px; }

  .poi-note {
    color: var(--bone-dim);
    font-size: 15.5px;
    max-width: 74ch;
    margin-bottom: 18px;
  }

  .poi-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
  }

  .poi-list li {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--bone-dim);
    border: 1px solid var(--line-bright);
    padding: 7px 12px;
  }

  /* ---------- faq ---------- */

  .faq { display: grid; gap: 1px; background: var(--line); border-block: 1px solid var(--line); }

  .faq details {
    background: var(--panel);
    padding: 20px 4px;
  }

  .faq summary {
    cursor: pointer;
    font-family: var(--display);
    font-weight: 600;
    font-size: 18px;
    list-style: none;
    display: flex;
    gap: 14px;
    align-items: baseline;
  }

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

  .faq summary::before {
    content: "+";
    color: var(--olive-lt);
    font-family: var(--mono);
    font-size: 16px;
  }

  .faq details[open] summary::before { content: "\2013"; }

  .faq details p {
    color: var(--bone-dim);
    margin-top: 12px;
    padding-left: 28px;
    max-width: 68ch;
    font-size: 15.5px;
  }

  /* ---------- final ---------- */

  .final {
    padding: 90px 0;
    text-align: center;
    border-top: 1px solid var(--line);
    background:
      radial-gradient(80% 120% at 50% 0%, rgba(107,122,58,.13), transparent 60%);
  }

  .final h2 { font-size: clamp(30px, 4.6vw, 50px); line-height: 1.05; }
  .final p { color: var(--bone-dim); margin: 18px auto 0; max-width: 48ch; }
  .final .cta-row { justify-content: center; }

  footer {
    border-top: 1px solid var(--line);
    padding: 30px 0 44px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--bone-faint);
  }

  footer .shell { display: flex; flex-wrap: wrap; gap: 18px 30px; align-items: center; }
  footer a { text-decoration: none; }
  footer a:hover { color: var(--bone-dim); }
  footer .spacer { margin-left: auto; }

  :focus-visible { outline: 2px solid var(--olive-lt); outline-offset: 3px; }

  /* ---------- cookie bar ---------- */

  #cookie-bar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 60;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 16px 24px;
    background: rgba(14,17,22,.97);
    border-top: 1px solid var(--line-bright);
    backdrop-filter: blur(8px);
  }

  #cookie-bar[hidden] { display: none; }

  #cookie-bar p {
    font-family: var(--mono);
    font-size: 12px;
    line-height: 1.7;
    color: var(--bone-dim);
    max-width: 62ch;
  }

  .cookie-actions { display: flex; gap: 10px; flex: none; }

  .consent-link {
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    text-decoration: underline;
  }
  .cookie-actions .btn { padding: 9px 16px; font-size: 13px; cursor: pointer; }