/* ==========================================================================
   Radar Sports Betting — radarsportsbetting.com
   Design language: condensed poster typography, hairline grid rulers,
   electric blue + lime accents on a permanently dark ground.
   ========================================================================== */

:root {
  --ink: #0a0a0c;
  --ink-2: #101015;
  --ink-3: #16161d;
  --ink-4: #1d1d26;
  --blue: #2b4bff;
  --blue-2: #1b34d8;
  --blue-3: #0f1c66;
  --lime: #d6f45a;
  --lime-2: #c2e043;
  --paper: #efefe9;
  --muted: #a2a2a8;
  --muted-2: #74747c;
  --line: rgba(239, 239, 233, 0.13);
  --line-2: rgba(239, 239, 233, 0.07);
  --plate: #f4f4f0;
  --red: #d6142b;

  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Franklin Gothic Medium", sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;

  --wrap: 1240px;
  --pad: clamp(18px, 4vw, 48px);
  --r: 4px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--lime); color: #000; padding: 10px 16px; font-weight: 700;
}
.skip:focus { left: 8px; top: 8px; }

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

/* ------------------------------------------------------------------ Layout */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }

/* Hairline vertical rulers, as in the reference layout */
.rules { position: relative; }
.rules::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, var(--line-2) 1px, transparent 1px),
    linear-gradient(to right, var(--line-2) 1px, transparent 1px);
  background-position: 12% 0, 88% 0;
  background-size: 100% 100%, 100% 100%;
  background-repeat: no-repeat;
  z-index: 0;
}
.rules > * { position: relative; z-index: 1; }

/* --------------------------------------------------------------- Typography */
.display {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 6vw, 76px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: var(--paper);
}
.display--sm { font-size: clamp(26px, 3.4vw, 40px); margin-bottom: 14px; }
.display--dark { color: #0a0a0c; }
.display em { font-style: normal; }

.ink-blue { color: var(--blue); }
.ink-lime { color: var(--lime); }

.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; color: var(--muted); margin: 0 0 18px;
}
.kicker__dot { width: 7px; height: 7px; background: var(--lime); border-radius: 50%; flex: none; }

.lnk {
  color: var(--lime); text-decoration: none;
  border-bottom: 1px solid rgba(214, 244, 90, 0.4);
  font-weight: 600;
}
.lnk:hover { border-bottom-color: var(--lime); }

code.lic {
  font-family: var(--mono);
  font-size: 0.92em;
  letter-spacing: 0.02em;
  background: rgba(43, 75, 255, 0.16);
  border: 1px solid rgba(43, 75, 255, 0.42);
  color: #b9c4ff;
  padding: 3px 8px;
  border-radius: var(--r);
  white-space: nowrap;
}
code.lic--big { font-size: 1.05rem; padding: 7px 12px; display: inline-block; }

/* ----------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.01em;
  text-decoration: none; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .14s ease, background .14s ease, color .14s ease;
  background: #000; color: var(--paper);
}
.btn:hover { transform: translateY(-2px); }
.btn__spark { font-size: 12px; line-height: 1; }
.btn--sm { padding: 9px 16px; font-size: 12.5px; }
.btn--full { width: 100%; }

.btn--lime { background: var(--lime); color: #0a0a0c; }
.btn--lime:hover { background: #e3ff76; }

.btn--dark { background: #0a0a0c; color: var(--paper); }
.btn--dark:hover { background: #22222c; }

.btn--outline { background: transparent; color: var(--paper); border-color: rgba(239, 239, 233, 0.32); }
.btn--outline:hover { border-color: var(--paper); background: rgba(239, 239, 233, 0.07); }

.btn--ghost { background: transparent; color: var(--paper); border-color: rgba(239, 239, 233, 0.28); }
.btn--ghost:hover { background: rgba(239, 239, 233, 0.08); }

.btn--pill { background: var(--blue); color: #fff; }
.btn--pill:hover { background: #3d5cff; }

.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(239, 239, 233, 0.045); color: #c6c6c2;
  border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 15px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.01em;
  white-space: nowrap;
}
.chip::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue); flex: none;
}

/* ------------------------------------------------------------------ Header */
.hdr {
  position: sticky; top: 0; z-index: 60;
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.hdr__age {
  display: flex; align-items: center; gap: 8px;
  padding: 6px var(--pad);
  background: var(--blue-3);
  border-bottom: 1px solid rgba(43, 75, 255, 0.4);
  font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; font-weight: 700;
  color: #cdd6ff;
}
.hdr__age-img { width: 18px; height: 18px; flex: none; }
.hdr__age-sep { opacity: .5; }
.hdr__age-dim { font-weight: 500; text-transform: none; letter-spacing: 0; color: #93a1e0; }

.hdr__bar {
  display: flex; align-items: center; gap: 24px;
  max-width: var(--wrap); margin: 0 auto;
  padding: 12px var(--pad);
}

.brandmark { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; flex: none; }
.brandmark__txt {
  font-family: var(--display); font-size: 24px; letter-spacing: 0.02em;
  text-transform: uppercase; line-height: 1;
}
.brandmark__txt em { font-style: normal; color: var(--blue); }

.hdr__nav { display: flex; gap: 22px; margin-left: auto; }
.hdr__nav a {
  text-decoration: none; font-size: 13.5px; font-weight: 600; color: var(--muted);
  padding: 6px 0; border-bottom: 2px solid transparent;
}
.hdr__nav a:hover { color: var(--paper); }
.hdr__nav a[aria-current="page"] { color: var(--paper); border-bottom-color: var(--lime); }

.hdr__right { display: flex; align-items: center; gap: 12px; margin-left: auto; }

.lang {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line); border-radius: 999px; overflow: hidden;
}
.lang__on, .lang__off {
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.06em;
  padding: 6px 11px; text-decoration: none;
}
.lang__on { background: var(--paper); color: #0a0a0c; }
.lang__off { color: var(--muted); }
.lang__off:hover { color: var(--paper); background: rgba(239, 239, 233, 0.08); }

.hdr__burger {
  display: none; flex-direction: column; gap: 4px; justify-content: center;
  width: 40px; height: 36px; background: transparent;
  border: 1px solid var(--line); border-radius: var(--r); cursor: pointer; padding: 0 9px;
}
.hdr__burger span { display: block; height: 2px; background: var(--paper); }

.mnav { display: none; flex-direction: column; border-top: 1px solid var(--line); padding: 8px var(--pad) 16px; }
.mnav a { text-decoration: none; padding: 11px 0; border-bottom: 1px solid var(--line-2); font-weight: 600; font-size: 15px; }

/* -------------------------------------------------------------------- Hero */
.hero {
  position: relative;
  padding: clamp(36px, 4.6vw, 64px) 0 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(880px 520px at 10% -16%, rgba(43, 75, 255, 0.20), transparent 62%),
    radial-gradient(620px 420px at 96% 2%, rgba(214, 244, 90, 0.07), transparent 58%),
    var(--ink);
}
/* Vignette so the glow never fights the type sitting on top of it */
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 46%;
  background: linear-gradient(to top, var(--ink), transparent);
  pointer-events: none; z-index: 0;
}

.hero__inner {
  display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.8fr);
  gap: clamp(28px, 4.5vw, 58px); align-items: center;
}

.hero .kicker {
  border: 1px solid var(--line); border-radius: 999px;
  background: rgba(239, 239, 233, 0.04);
  padding: 6px 15px 6px 12px; color: #cfcfcb;
}

.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 4.1vw, 54px);
  line-height: 0.96;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 16px;
  max-width: 16ch;
}
.hero__title em { text-shadow: 0 0 38px rgba(43, 75, 255, 0.5); }
.hero__lede { font-size: 15.5px; color: #c8c8c4; max-width: 58ch; margin: 0 0 24px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero__disc {
  font-size: 11.5px; line-height: 1.6; color: var(--muted-2);
  border-left: 2px solid rgba(43, 75, 255, 0.55);
  padding: 2px 0 2px 14px; max-width: 76ch; margin: 0;
}

.hero__edge {
  position: absolute; top: 42%; font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted-2); white-space: nowrap; z-index: 2;
}
.hero__edge--l { left: 10px; transform: rotate(-90deg); transform-origin: left center; }
.hero__edge--r { right: 10px; transform: rotate(90deg); transform-origin: right center; }

.hero__panel {
  position: relative;
  border: 1px solid rgba(239, 239, 233, 0.14); border-radius: 18px;
  background:
    linear-gradient(168deg, rgba(43, 75, 255, 0.16), rgba(16, 16, 21, 0) 46%),
    var(--ink-2);
  padding: 17px 19px 6px;
  box-shadow: 0 30px 70px -34px rgba(0, 0, 0, 0.95), inset 0 1px 0 rgba(239, 239, 233, 0.06);
}
.hero__panel-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-bottom: 15px; border-bottom: 1px solid var(--line);
}
.hero__panel-label {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; color: #cfcfcb;
}
.hero__panel-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--lime); flex: none;
  box-shadow: 0 0 0 4px rgba(214, 244, 90, 0.15);
}
.hero__panel-tag { font-family: var(--mono); font-size: 10.5px; letter-spacing: .04em; color: var(--muted-2); }

.radar {
  position: relative; width: 100%; aspect-ratio: 1 / 1; max-width: 156px; max-height: 156px;
  margin: 16px auto; display: grid; place-items: center; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(43, 75, 255, 0.16), transparent 68%);
}
.radar::before {
  content: ""; position: absolute; left: 2%; right: 2%; top: 50%;
  height: 1px; background: rgba(239, 239, 233, 0.09);
}
.radar::after {
  content: ""; position: absolute; top: 2%; bottom: 2%; left: 50%;
  width: 1px; background: rgba(239, 239, 233, 0.09);
}
.radar__ring { position: absolute; border: 1px solid rgba(43, 75, 255, 0.42); border-radius: 50%; }
.radar__ring--1 { width: 98%; height: 98%; }
.radar__ring--2 { width: 66%; height: 66%; border-color: rgba(43, 75, 255, 0.3); }
.radar__ring--3 { width: 34%; height: 34%; border-color: rgba(214, 244, 90, 0.4); }
.radar__sweep {
  position: absolute; left: 0; top: 0; width: 100%; height: 100%;
  border-radius: 50%; transform-origin: center center;
  background: conic-gradient(from 0deg, rgba(214, 244, 90, 0.30), rgba(214, 244, 90, 0.05) 34deg, transparent 74deg);
  animation: sweep 4.5s linear infinite;
}
.radar__blip {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime); box-shadow: 0 0 0 5px rgba(214, 244, 90, 0.14);
}
.radar__blip--a { top: 28%; left: 63%; }
.radar__blip--b { top: 66%; left: 34%; background: var(--blue); box-shadow: 0 0 0 5px rgba(43, 75, 255, 0.2); }
@keyframes sweep { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .radar__sweep { animation: none; } html { scroll-behavior: auto; } }

.hero__facts { list-style: none; margin: 0; padding: 0; }
.hero__facts li {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 10px 0; border-top: 1px solid var(--line);
}
.hero__facts-n { font-family: var(--display); text-transform: uppercase; font-size: 17px; letter-spacing: .02em; }
.hero__facts-l {
  font-family: var(--mono); font-size: 10.5px; color: #b9c4ff;
  background: rgba(43, 75, 255, 0.14); border: 1px solid rgba(43, 75, 255, 0.32);
  border-radius: 999px; padding: 2px 9px; white-space: nowrap;
}
.hero__facts--src { justify-content: flex-start; padding-bottom: 12px; }
.hero__facts--src a { font-size: 11px; color: var(--lime); text-decoration: none; letter-spacing: .02em; }
.hero__facts--src a:hover { text-decoration: underline; }

/* ------------------------------------------------------------------- Strip */
.strip {
  position: relative;
  margin-top: clamp(36px, 5vw, 60px);
  border-top: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(43, 75, 255, 0.10), transparent 42%), var(--ink-2);
  padding: 14px var(--pad);
  display: flex; align-items: center; gap: 18px;
}
.strip__label {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 700; flex: none;
}
.strip__label::before { content: ""; width: 18px; height: 2px; background: var(--lime); flex: none; }
.strip__list {
  list-style: none; display: flex; gap: 10px; margin: 0; padding: 0;
  overflow-x: auto; scrollbar-width: none;
}
.strip__list::-webkit-scrollbar { display: none; }

/* ---------------------------------------------------------------- Sections */
.sec { padding: clamp(48px, 7vw, 92px) 0; border-bottom: 1px solid var(--line); }
.sec--ops { background: linear-gradient(180deg, var(--ink), var(--ink-2)); }
.sec--tail { padding: 34px 0; }

.sechead {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap; margin-bottom: 16px;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.sechead .display { margin-bottom: 0; }
.stamp {
  display: flex; gap: 15px; align-items: center; max-width: 400px;
  border: 1px solid var(--line); border-radius: 14px;
  background: linear-gradient(150deg, rgba(43, 75, 255, 0.13), rgba(16, 16, 21, 0) 62%), var(--ink-2);
  padding: 14px 18px;
}
.stamp__box {
  display: grid; place-items: center; flex: none;
  background: #000; border: 1.5px solid rgba(239, 239, 233, 0.5); border-radius: 10px;
  width: 62px; height: 58px; line-height: 1;
}
.stamp__box b { font-family: var(--display); font-size: 22px; }
.stamp__box i { font-style: normal; font-size: 9.5px; letter-spacing: .18em; color: var(--lime); }
.stamp p { margin: 0; font-size: 11.5px; letter-spacing: 0.03em; text-transform: uppercase; color: var(--muted); line-height: 1.5; }

.sec__lede { max-width: 70ch; color: #c9c9c5; margin: 0 0 34px; }
.sec__foot { margin: 30px 0 0; }
.sec__note { margin: 26px 0 0; font-size: 12.5px; color: var(--muted-2); max-width: 82ch; }

/* -------------------------------------------------------------- Brand grid */
.bgrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(18px, 2.4vw, 28px); }
.bgrid--mt { margin-top: 40px; }
.bgrid--one { grid-template-columns: minmax(0, 620px); }

.bcard {
  --acc: var(--blue);
  --acc-soft: rgba(43, 75, 255, 0.55);
  --acc-dim: rgba(43, 75, 255, 0.16);
  position: relative; border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 80% at 50% -12%, var(--acc-dim), transparent 60%),
    linear-gradient(180deg, var(--ink-3), var(--ink-2));
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.bcard:hover {
  transform: translateY(-3px);
  border-color: var(--acc-soft);
  box-shadow: 0 26px 60px -34px rgba(0, 0, 0, 0.95);
}
.bcard--blue { --acc: var(--blue); --acc-soft: rgba(43, 75, 255, 0.55); --acc-dim: rgba(43, 75, 255, 0.16); }
.bcard--lime { --acc: var(--lime); --acc-soft: rgba(214, 244, 90, 0.5); --acc-dim: rgba(214, 244, 90, 0.11); }

/* Accent rail across the top, in the operator's colour */
.bcard__zig {
  position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--acc), transparent 78%);
}

.bcard__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 24px 0; color: var(--paper);
}
.bcard__rank { font-family: var(--display); font-size: 26px; line-height: 1; color: var(--acc); letter-spacing: .04em; }
.bcard__score {
  font-family: var(--display); font-size: 30px; line-height: 1;
  color: var(--paper); background: rgba(239, 239, 233, 0.05);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 16px 5px;
}
.bcard__score small { font-size: 13px; color: var(--muted-2); }

.bcard__plate {
  margin: 20px 24px 16px;
  background: var(--plate);
  border-radius: 12px;
  min-height: 104px;
  display: grid; place-items: center;
  padding: 16px 22px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.bcard__plate img { max-height: 68px; max-width: 78%; width: auto; object-fit: contain; }

.bcard__tag {
  margin: 0 24px 20px; color: #bdbdb9; font-size: 13.5px; font-weight: 500; line-height: 1.55;
}

.bcard__bar {
  margin-top: auto; background: rgba(10, 10, 12, 0.55);
  border-top: 1px solid var(--line); padding: 20px 24px 22px;
}
.bcard__barhead { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.bcard__name { font-family: var(--display); font-size: 28px; margin: 0; text-transform: uppercase; letter-spacing: .02em; }
.bcard__entity { font-size: 11px; color: var(--muted-2); }

.bcard__lic { display: grid; grid-template-columns: 1.5fr 1fr; gap: 10px 16px; margin: 16px 0 12px; }
.bcard__lic dt { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 4px; }
.bcard__lic dd { margin: 0; font-size: 13px; font-weight: 700; }
.bcard__licnum { font-family: var(--mono); font-size: 12.5px !important; color: #b9c4ff; }

.bcard__verify { display: inline-block; font-size: 11.5px; color: var(--lime); text-decoration: none; margin-bottom: 18px; }
.bcard__verify:hover { text-decoration: underline; }

.bcard__btns { display: flex; gap: 10px; flex-wrap: wrap; }
.bcard__btns .btn { flex: 1 1 auto; }

.bcard__age { margin: 16px 0 0; font-size: 10.5px; color: var(--muted-2); line-height: 1.5; }
.bcard__age span {
  display: inline-block; background: var(--red); color: #fff; font-weight: 800;
  border-radius: 999px; padding: 1px 7px; margin-right: 5px; font-size: 10px;
}

/* --------------------------------------------------------- Lime method block */
.sec--lime { background: var(--lime); color: #0a0a0c; border-bottom: none; }
.sec--lime::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(to right, rgba(0,0,0,.09) 1px, transparent 1px);
  background-size: 25% 100%;
  pointer-events: none;
}
.sec--lime { position: relative; }
.sec--lime > * { position: relative; }

.method { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr); gap: clamp(28px, 5vw, 60px); }
.method__intro p { color: #1a1a14; max-width: 46ch; margin: 0 0 24px; }
.method__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.method__list li {
  display: flex; gap: 18px; padding: 20px 0; border-top: 1px solid rgba(0, 0, 0, 0.18);
}
.method__list li:last-child { border-bottom: 1px solid rgba(0, 0, 0, 0.18); }
.method__n {
  font-family: var(--display); font-size: 26px; color: var(--blue); flex: none; width: 42px; line-height: 1.1;
}
.method__list h3 {
  font-family: var(--display); text-transform: uppercase; font-size: 20px;
  margin: 0 0 6px; letter-spacing: .02em;
}
.method__list p { margin: 0; font-size: 14px; color: #26261e; }

.faqcta { max-width: 60ch; }
.faqcta p { margin: 0 0 22px; color: #1a1a14; }

/* -------------------------------------------------------------------- Safe */
.sec--safe { background: var(--ink-2); }
.safe { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.8fr); gap: clamp(28px, 5vw, 56px); align-items: start; }
.safe__lede { font-size: 17px; color: #d8d8d3; margin: 0 0 16px; }
.safe__txt p { color: #b7b7b3; max-width: 62ch; }
.safe__txt .btn { margin-top: 14px; }
.safe__cards { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.safe__cards li {
  border: 1px solid var(--line); border-radius: var(--r); padding: 18px 20px;
  font-family: var(--display); font-size: 22px; text-transform: uppercase; letter-spacing: .02em;
  display: flex; align-items: center; gap: 14px; background: var(--ink-3);
}
.safe__cards span {
  font-family: var(--body); font-size: 11px; font-weight: 800; letter-spacing: .12em;
  color: var(--lime); border: 1px solid rgba(214,244,90,.4); border-radius: 999px; padding: 3px 9px;
}
.safe__cards--hot { border-color: rgba(214, 244, 90, .5) !important; }

/* --------------------------------------------------------------- FAQ teaser */
.sec--faq { background: var(--ink); }
.faqteaser { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 56px); }
.faqteaser p { color: #b7b7b3; max-width: 50ch; }
.faqteaser__side ul { list-style: none; margin: 0 0 22px; padding: 0; }
.faqteaser__side li { border-top: 1px solid var(--line); }
.faqteaser__side li:last-child { border-bottom: 1px solid var(--line); }
.faqteaser__side li a { display: block; padding: 14px 0; text-decoration: none; font-weight: 600; font-size: 14.5px; color: #d3d3cf; }
.faqteaser__side li a:hover { color: var(--lime); }

.tail { color: var(--muted); font-size: 14px; margin: 0; max-width: 90ch; }

/* --------------------------------------------------------------- Page heads */
.phead { padding: clamp(38px, 5vw, 62px) 0 clamp(30px, 4vw, 46px); border-bottom: 1px solid var(--line); background: var(--ink-2); }
.phead__title {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(30px, 4.4vw, 58px); line-height: 0.98; letter-spacing: .01em; margin: 0 0 16px;
}
.phead__lede { font-size: 16.5px; color: #c9c9c5; max-width: 76ch; margin: 0 0 20px; }
.phead__meta { font-size: 12.5px; color: var(--muted-2); margin: 0; letter-spacing: .04em; text-transform: uppercase; }

.crumbs { font-size: 12px; color: var(--muted-2); margin-bottom: 22px; }
.crumbs a { text-decoration: none; color: var(--muted); }
.crumbs a:hover { color: var(--paper); }

.nf { text-align: left; }
.nf__code { font-family: var(--display); font-size: clamp(70px, 12vw, 150px); line-height: .85; color: var(--blue); margin: 0 0 8px; }
.nf .hero__cta { margin-top: 24px; }

/* ------------------------------------------------------------- Review header */
.rhead { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr); gap: clamp(24px, 4vw, 48px); align-items: center; }
.rhead__tag { font-size: 16px; color: #c9c9c5; margin: 0 0 22px; max-width: 52ch; }
.rhead__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.rhead__right { display: grid; gap: 14px; }
.rplate { background: var(--plate); border-radius: 6px; padding: 24px; display: grid; place-items: center; min-height: 140px; border-bottom: 8px solid var(--blue); }
.rplate--lime { border-bottom-color: var(--lime); }
.rplate img { max-height: 88px; max-width: 76%; width: auto; object-fit: contain; }
.rscore { display: flex; align-items: center; gap: 14px; border: 1px solid var(--line); border-radius: 6px; padding: 14px 18px; background: var(--ink-3); }
.rscore__v { font-family: var(--display); font-size: 46px; line-height: 1; color: var(--lime); }
.rscore__l { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); line-height: 1.4; }

/* ----------------------------------------------------------- Licence box */
.sec--lic { background: var(--ink); padding: clamp(34px, 4vw, 56px) 0; }
.licbox { border: 1px solid rgba(43, 75, 255, 0.45); border-radius: 6px; background: linear-gradient(150deg, rgba(43,75,255,.12), rgba(16,16,21,.6)); padding: clamp(20px, 3vw, 34px); }
.licbox__head { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 26px; }
.licbox__seal {
  flex: none; display: grid; place-items: center; width: 62px; height: 62px;
  border-radius: 50%; border: 2px solid var(--blue); color: #b9c4ff;
  font-family: var(--display); font-size: 20px; letter-spacing: .06em;
}
.licbox__head h2 { font-family: var(--display); text-transform: uppercase; font-size: 26px; margin: 0 0 6px; letter-spacing: .02em; }
.licbox__head p { margin: 0; font-size: 13.5px; color: var(--muted); max-width: 70ch; }
.licbox__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px 26px; margin: 0; }
.licbox__grid dt { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 7px; }
.licbox__grid dd { margin: 0; font-size: 14.5px; font-weight: 600; }

/* -------------------------------------------------------------- Review body */
.rbody { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.8fr); gap: clamp(28px, 4vw, 56px); align-items: start; }
.rbody__main p { color: #c2c2be; }
.rlead { font-size: 17px; color: #d8d8d3 !important; }

.prosgrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 34px; }
.pros, .cons { border: 1px solid var(--line); border-radius: 6px; padding: 20px 22px; background: var(--ink-2); }
.pros { border-top: 4px solid var(--lime); }
.cons { border-top: 4px solid var(--red); }
.pros h3, .cons h3 { font-family: var(--display); text-transform: uppercase; font-size: 19px; margin: 0 0 12px; letter-spacing: .02em; }
.pros ul, .cons ul { margin: 0; padding-left: 18px; }
.pros li, .cons li { font-size: 14px; color: #c2c2be; margin-bottom: 9px; }

.rbody__side { border: 1px solid var(--line); border-radius: 6px; padding: 22px; background: var(--ink-2); position: sticky; top: 108px; }
.rside__h { font-family: var(--display); text-transform: uppercase; font-size: 20px; margin: 0 0 18px; letter-spacing: .02em; }

.bars { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 14px; }
.bars li { display: grid; grid-template-columns: 1fr auto; gap: 4px 10px; align-items: center; }
.bars__l { font-size: 12.5px; color: var(--muted); }
.bars__v { font-family: var(--display); font-size: 18px; grid-row: span 2; align-self: center; }
.bars__t { grid-column: 1; height: 6px; background: rgba(239,239,233,.1); border-radius: 999px; overflow: hidden; }
.bars__f { display: block; height: 100%; background: linear-gradient(90deg, var(--blue), var(--lime)); border-radius: 999px; }

.rside__cta { border-top: 1px solid var(--line); padding-top: 18px; }
.rside__cta p { font-size: 13px; color: var(--muted); margin: 0 0 14px; }
.rside__age { font-size: 11px !important; color: var(--muted-2) !important; margin-top: 14px !important; }
.rside__age span { display: inline-block; background: var(--red); color: #fff; font-weight: 800; border-radius: 999px; padding: 1px 7px; margin-right: 5px; }

/* ------------------------------------------------------------ Detail cards */
.sec--detail { background: var(--ink-2); }
.dgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.dcard { border: 1px solid var(--line); border-radius: 6px; padding: 24px 22px; background: var(--ink); }
.dcard__n { font-family: var(--display); font-size: 26px; color: var(--blue); display: block; margin-bottom: 8px; }
.dcard h3 { font-family: var(--display); text-transform: uppercase; font-size: 21px; margin: 0 0 10px; letter-spacing: .02em; }
.dcard p { margin: 0; font-size: 14px; color: #b9b9b5; }

/* ------------------------------------------------------------------ Tables */
.tablewrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 6px; }
.ctable { width: 100%; border-collapse: collapse; min-width: 720px; background: var(--ink-2); }
.ctable th, .ctable td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14px; vertical-align: middle; }
.ctable thead th { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); background: var(--ink-3); }
.ctable tbody th { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-size: 22px; text-transform: uppercase; letter-spacing: .02em; font-weight: 400; }
.ctable__logo { background: var(--plate); border-radius: var(--r); padding: 6px 10px; display: grid; place-items: center; flex: none; }
.ctable__logo img { max-height: 24px; width: auto; object-fit: contain; }
.ctable__act { display: flex; gap: 8px; flex-wrap: wrap; }
.ctable tbody tr:last-child th, .ctable tbody tr:last-child td { border-bottom: none; }

/* --------------------------------------------------------------------- FAQ */
.faq { max-width: 940px; }
.faq__i { border-top: 1px solid var(--line); }
.faq__i:last-child { border-bottom: 1px solid var(--line); }
.faq__i summary {
  display: flex; align-items: flex-start; gap: 16px; padding: 20px 0;
  cursor: pointer; list-style: none;
}
.faq__i summary::-webkit-details-marker { display: none; }
.faq__n { font-family: var(--display); font-size: 18px; color: var(--blue); flex: none; width: 30px; line-height: 1.5; }
.faq__q { font-family: var(--display); text-transform: uppercase; font-size: clamp(17px, 2vw, 23px); line-height: 1.2; letter-spacing: .02em; flex: 1; }
.faq__x { flex: none; width: 18px; height: 18px; position: relative; margin-top: 4px; }
.faq__x::before, .faq__x::after { content: ""; position: absolute; background: var(--lime); transition: transform .2s ease; }
.faq__x::before { left: 0; top: 8px; width: 18px; height: 2px; }
.faq__x::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq__i[open] .faq__x::after { transform: scaleY(0); }
.faq__a { padding: 0 0 22px 46px; }
.faq__a p { margin: 0; color: #b9b9b5; font-size: 14.5px; max-width: 82ch; }

/* ------------------------------------------------------------ Prose layouts */
.prose2 { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.75fr); gap: clamp(28px, 4vw, 56px); align-items: start; }
.pblock { margin-bottom: 34px; }
.pblock h2 { font-family: var(--display); text-transform: uppercase; font-size: clamp(20px, 2.4vw, 27px); margin: 0 0 12px; letter-spacing: .02em; }
.pblock p { color: #bcbcb8; margin: 0 0 14px; max-width: 82ch; font-size: 15px; }

.prose2__side { border: 1px solid var(--line); border-radius: 6px; background: var(--ink-2); padding: 22px; position: sticky; top: 108px; }

.facts { margin: 0 0 22px; display: grid; gap: 12px; }
.facts > div { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--line-2); padding-bottom: 10px; }
.facts dt { font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); }
.facts dd { margin: 0; font-size: 13.5px; font-weight: 600; text-align: right; }

.legalnav { display: grid; gap: 2px; margin-bottom: 22px; }
.legalnav a { text-decoration: none; font-size: 13.5px; font-weight: 600; color: var(--muted); padding: 10px 0; border-bottom: 1px solid var(--line-2); }
.legalnav a:hover { color: var(--paper); }
.legalnav a[aria-current="page"] { color: var(--lime); }

.reslist { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 16px; }
.reslist li { display: grid; gap: 6px; }
.reslist img { max-width: 100%; }
.reslist span { font-size: 11.5px; color: var(--muted-2); letter-spacing: .04em; }

/* ------------------------------------------------------------------- Forms */
.form { display: grid; gap: 16px; margin: 0 0 40px; max-width: 620px; }
.form__row { display: grid; gap: 7px; }
.form__row label { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.form input[type="text"], .form input[type="email"], .form select, .form textarea {
  background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--r);
  color: var(--paper); padding: 12px 14px; font-family: var(--body); font-size: 15px; width: 100%;
}
.form textarea { resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--blue); outline: none; }
.form__check { display: flex; gap: 10px; align-items: flex-start; }
.form__check input { margin-top: 4px; width: 17px; height: 17px; accent-color: var(--lime); flex: none; }
.form__check label { font-size: 13px; color: var(--muted); }

.alert { border-radius: var(--r); padding: 14px 18px; font-size: 14px; margin: 0 0 22px; border: 1px solid; }
.alert--ok { background: rgba(214, 244, 90, .1); border-color: rgba(214, 244, 90, .45); color: #e5ffa0; }
.alert--err { background: rgba(214, 20, 43, .12); border-color: rgba(214, 20, 43, .5); color: #ffb3bd; }

/* ------------------------------------------------------------------ Footer */
.ftr { border-top: 1px solid var(--line); }

.ftr__blue { background: var(--blue); color: #fff; padding: clamp(38px, 5vw, 66px) var(--pad) clamp(28px, 4vw, 44px); position: relative; }
.ftr__top { position: absolute; right: var(--pad); top: 24px; font-size: 12px; text-decoration: none; color: rgba(255,255,255,.85); }
.ftr__top:hover { color: #fff; }

.ftr__grid {
  max-width: var(--wrap); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: clamp(24px, 3vw, 44px);
}
.ftr__h { font-family: var(--display); text-transform: uppercase; font-size: clamp(26px, 3.4vw, 44px); margin: 0 0 16px; line-height: .95; letter-spacing: .02em; }
.ftr__links { display: grid; gap: 2px; }
.ftr__links a { text-decoration: none; font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.82); padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.ftr__links a:hover { color: #fff; }
.ftr__links--legal { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.ftr__links--legal a { border-bottom: none; padding: 4px 0; }
.ftr__links--legal a:hover { text-decoration: underline; }
.ftr__links--legal span { color: rgba(255,255,255,.45); }

.ftr__prefs {
  margin-top: 16px; background: transparent; color: #fff; cursor: pointer;
  border: 1px solid rgba(255,255,255,.5); border-radius: 999px; padding: 8px 16px; font-size: 12.5px; font-weight: 700;
}
.ftr__prefs:hover { background: rgba(255,255,255,.14); }

.ftr__badge {
  background: #0a0a0c; border: 2px solid #fff; padding: 16px 20px;
  display: grid; align-content: center; align-self: start; min-width: 156px;
}
.ftr__badge span { font-family: var(--display); text-transform: uppercase; line-height: .95; letter-spacing: .02em; }
.ftr__badge-l1, .ftr__badge-l2, .ftr__badge-l3 { font-size: 27px; color: #fff; }
.ftr__badge-l2 { color: var(--blue); }
.ftr__badge-age { font-size: 20px !important; color: var(--lime) !important; margin-top: 8px; }

.ftr__tag { max-width: var(--wrap); margin: clamp(28px, 4vw, 44px) auto 0; font-size: 13px; color: rgba(255,255,255,.82); border-top: 1px solid rgba(255,255,255,.24); padding-top: 18px; }

.ftr__dark { background: var(--ink); padding: clamp(30px, 4vw, 48px) var(--pad); }
.ftr__orgs { max-width: var(--wrap); margin: 0 auto 26px; }
.ftr__orgs-label { display: block; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; margin-bottom: 16px; }
.orglist { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 16px 22px; }
.orglist a { display: block; opacity: .9; transition: opacity .15s ease, transform .15s ease; }
.orglist a:hover { opacity: 1; transform: translateY(-2px); }
.orglist__age img { width: 42px; height: 42px; }

.ftr__note { max-width: var(--wrap); margin: 0 auto 10px; font-size: 12px; color: var(--muted); }
.ftr__note--dim { color: var(--muted-2); font-size: 11.5px; }

.ftr__legalbar { max-width: var(--wrap); margin: 22px auto 0; border-top: 1px solid var(--line); padding-top: 20px; }
.ftr__warn {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 11.5px; font-weight: 800; letter-spacing: .04em; color: #ffd9de;
  background: rgba(214, 20, 43, .12); border: 1px solid rgba(214, 20, 43, .4);
  border-radius: var(--r); padding: 12px 16px; margin: 0 0 14px;
}
.ftr__warn-age { background: var(--red); color: #fff; border-radius: 999px; padding: 1px 9px; flex: none; }
.ftr__copy { font-size: 11.5px; color: var(--muted-2); margin: 0; }

/* ----------------------------------------------------------- Cookie banner */
.ck {
  position: fixed; left: 20px; bottom: 20px; z-index: 90; width: min(400px, calc(100vw - 40px));
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .6); overflow: hidden;
  animation: ckin .3s ease both;
}
.ck[hidden] { display: none; }
@keyframes ckin { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.ck__bar { height: 5px; background: linear-gradient(90deg, var(--blue), var(--lime)); }
.ck__body { padding: 18px 20px 20px; }
.ck__title { font-family: var(--display); text-transform: uppercase; font-size: 20px; margin: 0 0 8px; display: flex; align-items: center; gap: 8px; letter-spacing: .02em; }
.ck__ico { color: var(--lime); font-size: 13px; }
.ck__text { font-size: 12.5px; color: var(--muted); margin: 0 0 16px; line-height: 1.55; }
.ck__actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ck__more { font-size: 12px; color: var(--lime); text-decoration: none; margin-left: auto; }
.ck__more:hover { text-decoration: underline; }

/* -------------------------------------------------------------- Responsive */
@media (max-width: 1080px) {
  .hdr__nav { display: none; }
  .hdr__burger { display: flex; }
  .mnav[data-open="true"] { display: flex; }
  .hero__inner { grid-template-columns: 1fr; }
  .rhead, .rbody, .prose2, .method, .safe, .faqteaser { grid-template-columns: 1fr; }
  .rbody__side, .prose2__side { position: static; }
  .ftr__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .licbox__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__edge { display: none; }
}

@media (max-width: 760px) {
  .bgrid, .bgrid--one { grid-template-columns: 1fr; }
  .prosgrid { grid-template-columns: 1fr; }
  .ftr__grid { grid-template-columns: 1fr; }
  .ftr__badge { justify-self: start; }
  .licbox__grid { grid-template-columns: 1fr; }
  .strip { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hdr__age-dim { display: none; }
  .ck { left: 12px; right: 12px; bottom: 12px; width: auto; }
  .rules::before { display: none; }
  .sechead { flex-direction: column; }
}

@media (max-width: 480px) {
  .hdr__bar { gap: 10px; }
  .brandmark__txt { font-size: 20px; }
  .btn--pill { display: none; }
  .bcard__head { padding-top: 22px; }
}

@media print {
  .hdr, .ck, .ftr__blue, .strip { display: none; }
  body { background: #fff; color: #000; }
}
