/* ===========================================================
   East End Dubs · Bristol · Sat 14·11·2026
   Acid-green warehouse poster — near-black halftone field,
   the supplied composite shown whole, green signup panel.
   =========================================================== */

/* ---------- TOKENS ---------- */
:root {
  --paper:         #f5f7f4;                       /* near-white text           */
  --paper-soft:    rgba(245, 247, 244, 0.72);
  --paper-faint:   rgba(245, 247, 244, 0.42);
  --paper-ghost:   rgba(245, 247, 244, 0.15);

  --black:         #0e0e0d;                       /* matches the poster bg     */
  --black-deep:    #080808;
  --panel-bg:      rgba(20, 21, 18, 0.78);
  --panel-bg-solid:#141512;

  --hairline:      rgba(245, 247, 244, 0.14);
  --hairline-hi:   rgba(245, 247, 244, 0.3);

  /* Acid green — sampled from the artwork (BRISTOL / DOCUMENT PRESENTS:) */
  --green:         #00c72b;
  --green-bright:  #2ee856;                       /* hover/glow lift           */
  --green-deep:    #009c22;
  --green-ghost:   rgba(0, 199, 43, 0.14);

  --danger:        #ff8d7a;

  --sans:          "Helvetica Neue", "HelveticaNeue", Helvetica, "Nimbus Sans", "Liberation Sans", Arial, sans-serif;
  /* Heavy condensed display caps — same class of letterform as the poster */
  --display:       "Anton", "Arial Narrow", "Liberation Sans Narrow", sans-serif;
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--paper);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* Anton ships a single 400 weight — synthesized bold just blurs it */
.panel__eyebrow, .panel__title, .form__label, .form__error,
.btn, .form__resend, .foot, .legal h1, .legal h2, .legal h3, .legal h4 {
  font-weight: 400;
}

/* ---------- PAGE BACKGROUND: halftone dot field ----------
   Extends the poster's dot-grid texture across the whole page so the
   composite melts into the page. Two offset dot layers — green + faint
   white — like the artwork's mixed grid. */
body.page {
  background-color: var(--black);
  background-image:
    radial-gradient(rgba(0, 199, 43, 0.35) 1.1px, transparent 1.8px),
    radial-gradient(rgba(245, 247, 244, 0.22) 1px, transparent 1.6px);
  background-size: 72px 72px, 72px 72px;
  background-position: 0 0, 36px 36px;
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
}

/* Vignette — frames the centre, dims the dot grid at the edges */
body.page::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(4, 5, 4, 0.72) 100%);
  pointer-events: none;
  z-index: 0;
}

/* SVG grain — matches the poster's speckled texture, kills banding */
body.page::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 160px 160px;
  mix-blend-mode: overlay;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

/* ---------- LAYOUT ---------- */
.stage {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(1rem, 2.5vw, 2rem) clamp(1rem, 4vw, 2.75rem) clamp(0.4rem, 1vw, 0.75rem);
  gap: clamp(1rem, 2.5vw, 2rem);
}

/* ---------- HERO ---------- */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  align-content: center;
  padding: clamp(0.5rem, 2vw, 2rem) 0;
}
@media (min-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
    gap: clamp(2rem, 4vw, 4.5rem);
  }
}

.hero__col { min-width: 0; }

/* ---------- POSTER COLUMN ----------
   The supplied artwork composite, shown whole. Its own near-black
   background matches --black, so it sits borderless in the dot field —
   a soft green glow lifts it off the page. */
.hero__col--poster {
  animation: fade-up 1.1s cubic-bezier(.2,.7,.2,1) 0.15s both;
  display: flex;
  justify-content: center;
}
.poster {
  margin: 0;
  line-height: 0;
}
.poster img {
  width: min(88vw, 460px);
  height: auto;
  /* v2 artwork carries its own green frame — no CSS border on top */
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.65),
    0 0 90px rgba(0, 199, 43, 0.12);
}
@media (min-width: 1080px) {
  .poster img {
    width: auto;
    max-width: 100%;
    max-height: min(88vh, 820px);
  }
}

/* ---------- SIGNUP PANEL ---------- */
.signup { display: flex; justify-content: center; }

.panel {
  position: relative;
  width: 100%;
  max-width: 500px;
  padding: clamp(1.5rem, 3vw, 2.1rem) clamp(1.25rem, 3vw, 1.9rem);
  background: var(--panel-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--hairline-hi);
  border-radius: 0;
  /* Poster-print lighting: thin paper highlight + green ambient spill.
     box-shadow (not ::before) so the intl-tel-input dropdown is free
     to overflow and nothing stacks over the form — blueprint gotcha #2. */
  box-shadow:
    inset 0 1px 0 rgba(245, 247, 244, 0.16),
    inset 0 0 50px rgba(0, 199, 43, 0.05),
    0 24px 60px rgba(0, 0, 0, 0.6);
  animation: fade-up 1.1s cubic-bezier(.2,.7,.2,1) 0.45s both;
}

/* State machine — blueprint contract */
.panel__idle, .panel__otp, .panel__success { display: none; }
.panel[data-form-state="idle"]    .panel__idle    { display: block; }
.panel[data-form-state="otp"]     .panel__otp     { display: block; }
.panel[data-form-state="success"] .panel__success { display: block; }

.panel__eyebrow {
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--display);
  font-size: 11.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
}
.panel__eyebrow-hair {
  flex: 0 0 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.panel__eyebrow-hair:last-child {
  flex: 1 1 auto;
  background: linear-gradient(90deg, var(--green), transparent 80%);
}

.panel__title {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.6vw, 3.3rem);
  line-height: 0.96;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: var(--paper);
  text-wrap: balance;
}
/* The active phrase goes acid green — like BRISTOL on the poster */
.panel__title em {
  font-style: normal;
  color: var(--green);
}

.panel__lede {
  margin: 0 0 1.4rem;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--paper-soft);
  text-wrap: pretty;
}
/* Scoped to avoid clobbering eyebrow — blueprint gotcha #3 */
.panel__success p:not(.panel__eyebrow) {
  color: var(--paper-soft);
  margin: 0 0 1.4rem;
  font-size: 14.5px;
  line-height: 1.55;
}

/* Server-supplied success message (e.g. double-opt-in notice) */
.panel__success-note {
  margin: 0 0 1.1rem !important;
  padding: 0.7rem 0.9rem;
  background: var(--green-ghost);
  border-left: 2px solid var(--green);
  border-radius: 0;
  font-size: 13.5px !important;
  line-height: 1.5 !important;
  color: var(--paper) !important;
}

/* ---------- FORM ---------- */
.form { display: flex; flex-direction: column; gap: 0.95rem; margin: 0; padding: 0; }
/* display:none (not off-screen) so browser autofill / password managers never
   populate the trap — an off-screen field is still a live autofill target and
   Chrome/Edge would fill it, silently blocking the real submit. */
.form__honeypot { display: none !important; }
.form__row { position: relative; }

.form__label {
  display: block;
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper-faint);
}
.form__label-hint {
  margin-left: 0.4em;
  opacity: 0.65;
  letter-spacing: 0.16em;
}

.form__input {
  width: 100%;
  padding: 0.65rem 0;
  background: transparent;
  color: var(--paper);
  border: 0;
  border-bottom: 1px solid var(--hairline);
  border-radius: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  transition: border-color .2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form__input::placeholder { color: var(--paper-faint); letter-spacing: 0; }
.form__input:focus {
  outline: 0;
  border-bottom-color: var(--green);
}
.form__input:-webkit-autofill,
.form__input:-webkit-autofill:hover,
.form__input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--paper);
  -webkit-box-shadow: 0 0 0 1000px var(--panel-bg-solid) inset;
  transition: background-color 5000s ease-in-out 0s;
}

.form__input--otp {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.45em;
  text-align: center;
  padding: 0.8rem 0;
}

/* ============================================================
   intl-tel-input — black/green theme overrides
   ============================================================ */

.iti { display: block; width: 100%; }

/* Vendor reserves ~52px for the flag/dial-code area — gotcha #1 */
.iti input.form__input { padding-left: calc(52px + 0.7rem); }

.iti__flag-container { background: transparent; }
.iti__selected-flag {
  background: transparent !important;
  padding-left: 0;
  border-right: 1px solid var(--hairline);
}
.iti__selected-flag:hover,
.iti__selected-flag[aria-expanded="true"] { background: rgba(245,247,244,0.05) !important; }
.iti__arrow { border-top-color: var(--paper-faint); }
.iti__arrow--up { border-bottom-color: var(--green); }
.iti__selected-dial-code { color: var(--paper-soft); font-family: var(--sans); font-size: 14px; }

.iti__dropdown-content {
  background-color: var(--panel-bg-solid) !important;
  color: var(--paper);
  border-radius: 0 !important;
}
.iti--inline-dropdown .iti__dropdown-content {
  position: absolute;
  z-index: 1000;            /* above panel chrome + other inputs */
  margin-top: 4px;
  margin-left: 0;
  border: 1px solid var(--hairline-hi) !important;
  box-shadow:
    0 8px 24px rgba(0,0,0,0.6),
    0 2px 6px rgba(0,0,0,0.4) !important;
  min-width: 280px;
  max-width: calc(100vw - 2rem);
  overflow: hidden;
}

.iti__search-input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  background: var(--black-deep);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 14px;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  outline: 0;
  border-radius: 0;
}
.iti__search-input::placeholder { color: var(--paper-faint); }
.iti__search-input:focus { border-bottom-color: var(--green); }

.iti__country-list {
  background: var(--panel-bg-solid);
  color: var(--paper);
  border: 0;
  font-family: var(--sans);
  max-height: 240px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--hairline-hi) transparent;
}
.iti__country-list::-webkit-scrollbar { width: 8px; }
.iti__country-list::-webkit-scrollbar-track { background: transparent; }
.iti__country-list::-webkit-scrollbar-thumb { background: var(--hairline-hi); }
.iti__country-list::-webkit-scrollbar-thumb:hover { background: var(--paper-faint); }

.iti__country {
  padding: 0.55rem 0.9rem;
  font-size: 14px;
  line-height: 1.3;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  transition: background .12s ease;
}
.iti__country:hover { background: rgba(245,247,244,0.05); }
.iti__country.iti__highlight {
  background: var(--green-ghost);
  color: var(--green-bright);
}
.iti__country.iti__highlight .iti__dial-code { color: var(--green-bright); opacity: 0.85; }
.iti__country-name { color: var(--paper); flex: 1; }
.iti__dial-code { color: var(--paper-faint); font-size: 12.5px; letter-spacing: 0.02em; }
.iti__divider {
  border-bottom: 1px solid var(--hairline);
  padding: 0;
  margin: 0.25rem 0;
}
.iti__no-results {
  padding: 0.7rem 0.9rem;
  font-size: 13px;
  color: var(--paper-faint);
}

.form__row--check { margin-top: 0.2rem; }
.form__check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 12px;
  line-height: 1.55;
  color: var(--paper-soft);
  cursor: pointer;
}
.form__check input[type="checkbox"] {
  flex: 0 0 16px;
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  background: transparent;
  border: 1px solid var(--hairline-hi);
  border-radius: 0;
  display: grid;
  place-items: center;
  transition: border-color .15s ease, background .15s ease;
}
.form__check input[type="checkbox"]:hover { border-color: var(--green); }
.form__check input[type="checkbox"]:checked {
  background: var(--green);
  border-color: var(--green-deep);
}
.form__check input[type="checkbox"]:checked::after {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--black-deep);
  border-bottom: 2px solid var(--black-deep);
  transform: rotate(-45deg) translate(0, -1px);
}
.form__check a { color: var(--paper); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--paper-ghost); }
.form__check a:hover { text-decoration-color: var(--green); }

.form__error {
  margin: 0.4rem 0 0;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--danger);
}
.form__error--global { margin-top: 0.8rem; }

/* ---------- BUTTONS ---------- */
.btn {
  --btn-h: 54px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  min-height: var(--btn-h);
  margin-top: 0.5rem;
  padding: 0 1.1rem;
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black-deep);
  background: var(--green);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 8px 22px rgba(0, 199, 43, 0.25);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn:disabled { opacity: 0.6; cursor: progress; }
.btn:hover {
  transform: translateY(-1px);
  background: var(--green-bright);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 12px 30px rgba(0, 199, 43, 0.4);
}
.btn:active { transform: translateY(1px); }

/* Sheen sweep on hover */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.35) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform .5s ease;
  z-index: -1;
}
.btn:hover::before { transform: translateX(120%); }

.btn__text { position: relative; z-index: 1; }
.btn__arrow {
  position: relative;
  z-index: 1;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0;
  transform: translateX(0);
  transition: transform .2s ease;
}
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--whatsapp {
  background: linear-gradient(180deg, #3ae07a 0%, #25d366 55%, #1aa851 100%);
  color: #06301a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 8px 22px rgba(37, 211, 102, 0.28);
}
.btn--whatsapp:hover {
  background: linear-gradient(180deg, #3ae07a 0%, #25d366 55%, #1aa851 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 12px 30px rgba(37, 211, 102, 0.4);
}
.btn__icon { width: 22px; height: 22px; position: relative; z-index: 1; }

.form__resend {
  margin: 0.9rem 0 0;
  font-family: var(--display);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper-faint);
  text-align: center;
}
.form__resend-btn {
  background: transparent;
  border: 0;
  color: var(--green);
  font-family: inherit;
  font-weight: 400;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  padding: 0 0 0 0.3rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(0, 199, 43, 0.4);
}
.form__resend-btn:disabled { color: var(--paper-faint); text-decoration-color: var(--paper-ghost); cursor: not-allowed; }

/* ---------- FOOTER ---------- */
.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  padding-top: 0.7rem;
  border-top: 1px solid var(--hairline);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-faint);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.foot a { color: var(--paper-soft); text-decoration: none; }
.foot a:hover { color: var(--green); }
.foot__legal { margin: 0; }

/* Copyright + Furiosa pill share the left side of the footer */
.foot__left {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.6vw, 1rem);
  flex-wrap: wrap;
}
.site-built { margin: 0; line-height: 0; }
.site-built a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--paper-soft);
  background: rgba(8, 8, 8, 0.6);
  border: 1px solid var(--hairline-hi);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-decoration: none;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.site-built a:hover {
  color: var(--green-bright);
  border-color: var(--green);
  background: var(--green-ghost);
}
.site-built img { display: inline-block; opacity: 0.95; filter: grayscale(1) brightness(2.4); vertical-align: middle; }

/* Footer: the desktop space-between row gets cramped and uneven on phones once
   the copyright line wraps, so below 600px stack everything into a clean,
   centred column — copyright, then the Furiosa pill, then the privacy link. */
@media (max-width: 600px) {
  .foot {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    padding-top: 1.1rem;
  }
  .foot__left {
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
  }
  .foot__legal { letter-spacing: 0.12em; }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__col--poster, .panel { animation: none; }
  .btn::before { display: none; }
}

/* ---------- A11Y / FOCUS ---------- */
:focus-visible { outline: 1px solid var(--green); outline-offset: 2px; }
.form__input:focus-visible { outline: 0; }
.btn:focus-visible { outline: 2px solid var(--green-bright); outline-offset: 3px; }

/* ---------- LEGAL PAGES (privacy.html) ---------- */
body.legal-wrap {
  background: var(--black);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  padding: clamp(1rem, 3vw, 2rem) clamp(1rem, 4vw, 2.5rem) 4rem;
}
.legal {
  max-width: 740px;
  margin: 0 auto;
}
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  padding: 0.4rem 1.05rem 0.4rem 0.4rem;
  border: 1px solid var(--hairline-hi);
  border-radius: 999px;
  background: rgba(14, 14, 13, 0.5);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .18s ease, background .18s ease;
}
.legal__back:hover {
  border-color: var(--green);
  background: var(--green-ghost);
}
/* Green arrow chip — nudges left on hover */
.legal__back-arrow {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: var(--black-deep);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform .18s ease;
}
.legal__back:hover .legal__back-arrow { transform: translateX(-3px); }
.legal__back-arrow svg { width: 13px; height: 13px; display: block; }
/* Stacked label: tiny "BACK TO" eyebrow over the brand in proper casing */
.legal__back-label {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.12;
}
.legal__back-text {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-faint);
}
.legal__back-brand {
  font-family: var(--display);
  font-weight: 400;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: var(--paper);
}

.legal h1 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 2rem;
  color: var(--green);
  text-wrap: balance;
}
.legal h2 {
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  margin: 2.2rem 0 0.7rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--hairline);
}
.legal h3 {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-soft);
  margin: 1.8rem 0 0.4rem;
}
.legal h4 {
  font-family: var(--display);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper-faint);
  margin: 1.4rem 0 0.3rem;
}
.legal p, .legal li {
  font-size: 14.5px;
  color: var(--paper-soft);
}
.legal ul { padding-left: 1.1rem; margin: 0.5rem 0 1rem; }
.legal li { margin-bottom: 0.45rem; }
/* Body-copy links are underlined — but exclude the back-button pill, whose
   underline (from this rule out-specificity-ing .legal__back) was bleeding
   across the whole pill. */
.legal a:not(.legal__back) { color: var(--green-bright); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: rgba(0,199,43,0.4); }
.legal a:not(.legal__back):hover { text-decoration-color: var(--green-bright); }
.legal strong { color: var(--paper); font-weight: 500; }
.legal__meta {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hairline);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper-faint);
}

/* ---------- TINY VIEWPORTS ---------- */
@media (max-width: 380px) {
  .stage { padding: 0.7rem 0.85rem 0.4rem; }
  .panel { padding: 1.1rem 1rem; }
}
