/* =============================================================================
 * Reelfort — Stylesheet (BEM). Obsidian + emerald "vault" theme.
 * Bento grid, circular ring gauges. Distinct from CoinVerdict & SpinGrade.
 * ========================================================================== */
:root {
  --bg: #080d0e;
  --bg-2: #0b1214;
  --panel: #101a1b;
  --panel-2: #14201f;
  --line: rgba(140, 190, 172, .13);
  --line-2: rgba(140, 190, 172, .24);
  --ink: #e9f4ef;
  --ink-soft: #b6c9c1;
  --muted: #7f958c;

  --em: #10b981;
  --em-2: #34e0a1;
  --teal: #2dd4bf;
  --cyan: #22d3ee;
  --amber: #f5b445;

  --em-soft: rgba(16, 185, 129, .13);
  --radius: 16px;
  --radius-lg: 22px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px -24px rgba(0, 0, 0, .8);
  --glow-em: 0 12px 40px -12px rgba(16, 185, 129, .45);
  --wrap: 1160px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, monospace;
}
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font); color: var(--ink);
  background:
    radial-gradient(900px 500px at 88% -6%, rgba(16, 185, 129, .12), transparent 60%),
    radial-gradient(760px 440px at -4% 4%, rgba(45, 212, 191, .10), transparent 58%),
    linear-gradient(180deg, var(--bg), #060a0b 60%, var(--bg));
  min-height: 100vh; line-height: 1.62; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }
code { font-family: var(--mono); }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.02em; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--em); color: #04140e; padding: 10px 16px; border-radius: 9px; font-weight: 800; transition: top .2s; }
.skip:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--em); outline-offset: 2px; border-radius: 6px; }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 800; border-radius: 11px; padding: 12px 20px; line-height: 1.1; border: 1.5px solid transparent; transition: transform .16s var(--ease), box-shadow .2s, background .2s, color .2s, border-color .2s; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--em { background: linear-gradient(150deg, var(--em-2), var(--em)); color: #04140e; box-shadow: var(--glow-em); }
.btn--em:hover { filter: brightness(1.05); }
.btn--wire { background: rgba(255, 255, 255, .03); border-color: var(--line-2); color: var(--ink); }
.btn--wire:hover { border-color: var(--em); color: var(--em-2); }
.btn--sm { padding: 9px 15px; font-size: .88rem; border-radius: 9px; }
.btn--lg { padding: 15px 26px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.kicker { color: var(--em-2); font-weight: 800; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }
.pill { display: inline-block; padding: 6px 14px; border-radius: 999px; background: var(--em-soft); color: var(--em-2); font-weight: 800; font-size: .76rem; letter-spacing: .05em; text-transform: uppercase; border: 1px solid rgba(16, 185, 129, .3); }
.tag { display: inline-block; padding: 4px 10px; border-radius: 999px; background: rgba(255, 255, 255, .04); border: 1px solid var(--line); font-size: .76rem; color: var(--muted); font-weight: 600; }
.chip { display: inline-grid; place-items: center; min-width: 34px; padding: 4px 10px; border-radius: 8px; font-weight: 800; font-size: .82rem; font-family: var(--mono); }
.chip--vault { background: rgba(16, 185, 129, .16); color: var(--em-2); border: 1px solid rgba(16, 185, 129, .4); }
.chip--fort { background: rgba(45, 212, 191, .16); color: var(--teal); border: 1px solid rgba(45, 212, 191, .4); }
.chip--secure { background: rgba(34, 211, 238, .15); color: var(--cyan); border: 1px solid rgba(34, 211, 238, .4); }
.chip--guard { background: rgba(245, 180, 69, .15); color: var(--amber); border: 1px solid rgba(245, 180, 69, .4); }

.sect-head { text-align: center; max-width: 640px; margin: 0 auto 34px; }
.sect-head h2 { font-size: clamp(1.6rem, 3.2vw, 2.35rem); font-weight: 800; }
.sect-head p { margin-top: 10px; color: var(--muted); font-size: 1.05rem; }
.h-sect { font-size: 1.3rem; font-weight: 800; margin-bottom: 16px; }

/* ---- ring gauge ------------------------------------------------------------ */
.ring { position: relative; display: inline-grid; place-items: center; }
.ring svg { width: 64px; height: 64px; transform: rotate(-90deg); }
.ring__track, .ring__bar { fill: none; stroke-width: 6; }
.ring__track { stroke: rgba(255, 255, 255, .08); }
.ring__bar { stroke-linecap: round; transition: stroke-dashoffset 1.1s var(--ease); }
.ring--vault .ring__bar { stroke: var(--em-2); }
.ring--fort .ring__bar { stroke: var(--teal); }
.ring--secure .ring__bar { stroke: var(--cyan); }
.ring--guard .ring__bar { stroke: var(--amber); }
.ring__num { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-weight: 800; font-size: 1.05rem; line-height: 1; }
.ring__num small { position: absolute; left: 0; right: 0; bottom: 17%; text-align: center; font-size: .46rem; letter-spacing: .04em; color: var(--muted); font-weight: 700; }
.ring--lg svg { width: 92px; height: 92px; }
.ring--lg .ring__num { font-size: 1.35rem; }
.ring--xl svg { width: 128px; height: 128px; }
.ring--xl .ring__num { font-size: 1.9rem; }
.ring--sm svg { width: 44px; height: 44px; }
.ring--sm .ring__num { font-size: .72rem; }
.ring--sm .ring__num small { display: none; }
.ring--onhead .ring__track { stroke: rgba(255, 255, 255, .2); }
.ring--onhead .ring__num { color: #fff; }

/* brand lockup */
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 0; }
.brand__ic { width: 38px; height: 38px; border-radius: 9px; object-fit: contain; padding: 4px; background: rgba(255, 255, 255, .05); border: 1px solid var(--line); flex: none; }
.brand__name { font-weight: 800; font-size: 1.08rem; }
.brand__mark { height: 32px; width: auto; }
.brand--wide { background: rgba(0, 0, 0, .35); padding: 7px 12px; border-radius: 9px; border: 1px solid var(--line); }

/* ---- header ---------------------------------------------------------------- */
.rf-header { position: sticky; top: 0; z-index: 100; background: rgba(8, 13, 14, .82); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.rf-header__in { display: flex; align-items: center; gap: 18px; min-height: 66px; }
.seal { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; font-size: 1.28rem; letter-spacing: -.03em; }
.seal__mark { filter: drop-shadow(0 4px 12px rgba(16, 185, 129, .5)); }
.seal__hi { color: var(--em-2); }
.rf-nav { display: flex; align-items: center; gap: 2px; margin-left: 6px; }
.rf-nav__link { padding: 9px 12px; border-radius: 9px; font-weight: 600; font-size: .95rem; color: var(--ink-soft); transition: color .2s, background .2s; }
.rf-nav__link:hover { color: var(--ink); background: rgba(255, 255, 255, .04); }
.rf-nav__link.is-active { color: var(--em-2); background: var(--em-soft); }
.rf-header__side { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.hamb { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamb span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s var(--ease); }
.rf-header.is-open .hamb span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rf-header.is-open .hamb span:nth-child(2) { opacity: 0; }
.rf-header.is-open .hamb span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.lang { position: relative; }
.lang__btn { display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px; border-radius: 9px; border: 1px solid var(--line-2); background: rgba(255, 255, 255, .03); font-weight: 600; font-size: .9rem; color: var(--ink-soft); }
.lang__btn:hover { border-color: var(--em); color: var(--em-2); }
.lang__menu { position: absolute; right: 0; top: calc(100% + 8px); min-width: 190px; background: var(--panel); border: 1px solid var(--line-2); border-radius: 12px; padding: 6px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: .18s var(--ease); z-index: 60; }
.lang[data-open] .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__opt { display: flex; gap: 9px; padding: 10px 12px; border-radius: 8px; font-weight: 600; font-size: .92rem; color: var(--ink-soft); }
.lang__opt:hover { background: rgba(255, 255, 255, .05); color: var(--ink); }
.lang__opt.is-active { background: var(--em-soft); color: var(--em-2); }

/* ---- vault hero ------------------------------------------------------------ */
.vault-hero { padding: 62px 0 40px; text-align: center; position: relative; }
.vault-hero__in { max-width: 820px; margin: 0 auto; }
.vault-hero__title { font-size: clamp(2.1rem, 5vw, 3.5rem); font-weight: 900; margin: 16px 0 0; }
.vault-hero__lead { margin: 18px auto 0; max-width: 40em; color: var(--ink-soft); font-size: 1.12rem; }
.vault-hero__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.vault-hero__trust { display: flex; justify-content: center; margin-top: 26px; }

/* ---- bento fort ------------------------------------------------------------ */
.fort { padding: 44px 0 60px; }
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; grid-auto-flow: row dense; align-items: stretch; }
.tile { display: flex; flex-direction: column; background: linear-gradient(180deg, var(--panel), var(--panel-2)); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); transition: transform .2s var(--ease), border-color .2s; }
.tile:hover { transform: translateY(-4px); border-color: var(--line-2); }
.tile--keep { grid-column: span 2; border-color: transparent; background: linear-gradient(var(--panel), var(--panel-2)) padding-box, linear-gradient(135deg, var(--em-2), var(--teal)) border-box; border: 1.5px solid transparent; box-shadow: var(--glow-em); }
/* wide #1 tile: two-column interior so it fills the banner cleanly */
.tile--keep .tile__brand { margin-top: 2px; }
.tile--keep .tile__tag { max-width: 46ch; }
.tile__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.tile__rank { font-family: var(--mono); font-weight: 800; color: var(--muted); display: flex; flex-direction: column; gap: 4px; }
.tile__rank em { font-style: normal; font-size: .58rem; letter-spacing: .06em; text-transform: uppercase; color: var(--em-2); }
.tile--keep .tile__rank { font-size: 1.05rem; }
.tile__brand { margin-bottom: 10px; }
.tile__tier { margin-bottom: 12px; }
.tile__tag { color: var(--muted); font-size: .95rem; margin-bottom: 16px; flex: 1; }
.tile--keep .tile__tag { font-size: 1.08rem; color: var(--ink-soft); }
.tile__facts { display: grid; gap: 10px; margin-bottom: 16px; }
.tile--keep .tile__facts { grid-template-columns: 1fr 1fr; }
.tile__facts > div { background: rgba(255, 255, 255, .03); border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; }
.tile__facts dt { font-size: .68rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); font-weight: 700; margin-bottom: 3px; }
.tile__facts dd { font-weight: 700; font-size: .92rem; }
.tile__act { display: grid; gap: 8px; margin-top: auto; }
.tile--keep .tile__act { grid-auto-flow: column; }

/* ---- why ------------------------------------------------------------------- */
.why { padding: 20px 0 56px; }
.why__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 40px; align-items: center; }
.why__intro h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); font-weight: 800; margin: 14px 0 12px; }
.why__intro p { color: var(--ink-soft); font-size: 1.06rem; }
.why__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.why__list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why__list li { background: linear-gradient(180deg, var(--panel), var(--panel-2)); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.why__list h3 { font-size: 1.02rem; position: relative; padding-left: 26px; }
.why__list h3::before { content: "🛡"; position: absolute; left: 0; top: 0; font-size: .95rem; }
.why__list p { margin-top: 8px; color: var(--muted); font-size: .93rem; }

/* ---- vetting --------------------------------------------------------------- */
.vet { padding: 56px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .015); }
.vet__wrap { display: grid; grid-template-columns: 1.4fr .85fr; gap: 34px; align-items: start; }
.vet__list { display: grid; gap: 14px; }
.vet__step { display: flex; gap: 16px; padding: 18px 20px; background: linear-gradient(180deg, var(--panel), var(--panel-2)); border: 1px solid var(--line); border-radius: var(--radius); }
.vet__n { flex: none; font-family: var(--mono); font-weight: 800; color: var(--em-2); font-size: 1.05rem; }
.vet__step h3 { font-size: 1.05rem; }
.vet__step p { margin-top: 5px; color: var(--muted); font-size: .93rem; }
.tiers { background: linear-gradient(160deg, #0c1a17, #0a1513); border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: 24px; }
.tiers h3 { font-size: 1.1rem; margin-bottom: 16px; }
.tiers__row { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); font-weight: 700; }
.tiers__row:last-child { border-bottom: 0; }
.tiers__dot { width: 12px; height: 12px; border-radius: 50%; flex: none; }
.tiers__dot--vault { background: var(--em-2); }
.tiers__dot--fort { background: var(--teal); }
.tiers__dot--secure { background: var(--cyan); }
.tiers__dot--guard { background: var(--amber); }
.tiers__rng { margin-left: auto; font-family: var(--mono); color: var(--muted); font-weight: 600; }

/* ---- matrix ---------------------------------------------------------------- */
.matrix { padding: 56px 0; }
.matrix__scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.matrix__t { width: 100%; border-collapse: collapse; background: var(--panel); min-width: 660px; }
.matrix__t th { text-align: left; font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); padding: 14px 18px; background: var(--panel-2); border-bottom: 1px solid var(--line); }
.matrix__t td { padding: 15px 18px; border-bottom: 1px solid var(--line); font-weight: 600; font-size: .92rem; vertical-align: middle; }
.matrix__t tr:last-child td { border-bottom: 0; }
.matrix__go { text-align: right; }

/* ---- faq ------------------------------------------------------------------- */
.faq { padding: 56px 0; }
.faq__wrap { max-width: 800px; }
.faq__list { display: grid; gap: 12px; }
.faq__item { background: linear-gradient(180deg, var(--panel), var(--panel-2)); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; text-align: left; font-weight: 700; font-size: 1.02rem; }
.faq__pm { position: relative; width: 16px; height: 16px; flex: none; }
.faq__pm::before, .faq__pm::after { content: ""; position: absolute; background: var(--em-2); border-radius: 2px; transition: transform .25s var(--ease); }
.faq__pm::before { inset: 7px 0; height: 2px; }
.faq__pm::after { inset: 0 7px; width: 2px; }
.faq__q[aria-expanded="true"] .faq__pm::after { transform: scaleY(0); }
.faq__a { padding: 0 20px 20px; color: var(--ink-soft); }

/* ---- cta strip ------------------------------------------------------------- */
.cta-strip { padding: 20px 0 64px; }
.cta-strip__in { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; padding: 44px 24px; border-radius: var(--radius-lg); background: linear-gradient(140deg, #0c2a20, #0a1f19); border: 1px solid rgba(16, 185, 129, .3); box-shadow: var(--glow-em); }
.cta-strip__in h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; max-width: 20em; }

/* ---- trustpilot ------------------------------------------------------------ */
.tscore { display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap; padding: 12px 16px; border-radius: var(--radius); background: rgba(255, 255, 255, .03); border: 1px solid var(--line); }
.tscore:hover { border-color: #00b67a; }
.tscore__brand { display: inline-flex; align-items: center; gap: 6px; font-weight: 800; }
.tscore__pips { display: inline-flex; gap: 3px; }
.tscore__pip { width: 20px; height: 20px; border-radius: 4px; background: #33413d; position: relative; }
.tscore__pip.is-on { background: #00b67a; }
.tscore__pip::after { content: "★"; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 12px; }
.tscore__meta { font-size: .84rem; color: var(--muted); }
.tscore__meta strong { color: var(--ink); }

/* ---- subhead --------------------------------------------------------------- */
.subhead { padding: 42px 0 8px; }
.subhead h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 900; margin-top: 10px; }
.subhead p { margin-top: 12px; color: var(--ink-soft); font-size: 1.05rem; max-width: 44em; }
.subhead__trust { margin-top: 20px; }
.crumbs { display: flex; align-items: center; gap: 8px; font-size: .86rem; color: var(--muted); flex-wrap: wrap; }
.crumbs a:hover { color: var(--em-2); }
.crumbs--light { color: rgba(255, 255, 255, .7); }
.crumbs--light a { color: rgba(255, 255, 255, .88); }

/* ---- dossier (review) ------------------------------------------------------ */
.dossier__head { padding: 30px 0 34px; color: #fff; }
.dossier__head--vault { background: linear-gradient(140deg, #06281c, #0c8a5f); }
.dossier__head--fort { background: linear-gradient(140deg, #063230, #0e8f80); }
.dossier__head--secure { background: linear-gradient(140deg, #06303a, #128aa3); }
.dossier__head--guard { background: linear-gradient(140deg, #33260a, #b07d1e); }
.dossier__top { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-top: 18px; flex-wrap: wrap; }
.dossier__brand { margin-bottom: 12px; }
.dossier__title { font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 900; }
.dossier__tag { margin-top: 10px; color: rgba(255, 255, 255, .88); font-size: 1.05rem; max-width: 40em; }
.dossier__score { display: flex; align-items: center; gap: 16px; background: rgba(0, 0, 0, .25); border: 1px solid rgba(255, 255, 255, .2); border-radius: var(--radius-lg); padding: 14px 20px; }
.dossier__scoremeta { display: flex; flex-direction: column; }
.dossier__scoremeta small { font-size: .74rem; text-transform: uppercase; letter-spacing: .05em; color: rgba(255, 255, 255, .8); font-weight: 700; }
.dossier__scoremeta strong { font-size: 1.35rem; color: #fff; }
.dossier__body { display: grid; grid-template-columns: 1fr 340px; gap: 36px; padding-top: 36px; padding-bottom: 60px; align-items: start; }
.dossier__lead { font-size: 1.15rem; margin-bottom: 30px; }
.dossier__main section { margin-bottom: 30px; }

.brk__list { display: grid; gap: 14px; }
.bar { display: grid; grid-template-columns: 160px 1fr 40px; align-items: center; gap: 14px; }
.bar__label { font-weight: 700; font-size: .92rem; }
.bar__track { height: 9px; border-radius: 999px; background: rgba(255, 255, 255, .07); overflow: hidden; }
.bar__fill { display: block; height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, var(--em), var(--em-2)); transition: width 1s var(--ease); }
.bar__val { font-family: var(--mono); font-weight: 800; text-align: right; }

.pc { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pc__box { border-radius: var(--radius); padding: 22px; border: 1px solid var(--line); }
.pc__box--up { background: rgba(16, 185, 129, .07); border-color: rgba(16, 185, 129, .3); }
.pc__box--dn { background: rgba(245, 180, 69, .06); border-color: rgba(245, 180, 69, .28); }
.pc__box h2 { font-size: 1.1rem; margin-bottom: 12px; }
.pc__list { display: grid; gap: 10px; }
.pc__list li { position: relative; padding-left: 26px; color: var(--ink-soft); }
.pc__list--up li::before { content: "✓"; position: absolute; left: 0; color: var(--em-2); font-weight: 900; }
.pc__list--dn li::before { content: "!"; position: absolute; left: 5px; color: var(--amber); font-weight: 900; }

.dossier__tp .tscore { display: inline-flex; }
.verdict { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center; border-radius: var(--radius-lg); padding: 24px; background: var(--em-soft); border: 1px solid rgba(16, 185, 129, .3); }
.verdict__txt h2 { font-size: 1.25rem; margin-bottom: 6px; }
.verdict__txt p { color: var(--ink-soft); margin-bottom: 14px; }

.dossier__side { position: sticky; top: 84px; display: grid; gap: 18px; }
.offer { background: linear-gradient(160deg, #0c2a20, #0a1f19); border: 1px solid rgba(16, 185, 129, .3); border-radius: var(--radius-lg); padding: 22px; }
.offer__k { font-size: .74rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); font-weight: 700; }
.offer__h { display: block; font-size: 1.3rem; font-weight: 800; margin: 6px 0 12px; color: var(--em-2); }
.offer__meta { display: flex; flex-direction: column; gap: 4px; font-size: .86rem; color: var(--ink-soft); margin-bottom: 16px; }
.offer__meta code { color: var(--teal); font-weight: 700; }
.specs { background: linear-gradient(180deg, var(--panel), var(--panel-2)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; }
.specs__t { font-size: 1.05rem; margin-bottom: 12px; }
.specs__row { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.specs__row:last-child { border-bottom: 0; }
.specs__row dt { color: var(--muted); font-size: .9rem; }
.specs__row dd { font-weight: 700; text-align: right; }
.side-more { background: linear-gradient(180deg, var(--panel), var(--panel-2)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 18px 20px; }
.side-more h2 { font-size: 1rem; margin-bottom: 12px; }
.othr { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.othr:last-child { border-bottom: 0; }
.othr:hover .brand__name { color: var(--em-2); }
.side-back { display: inline-block; color: var(--muted); font-weight: 700; }
.side-back:hover { color: var(--em-2); }
.stickybar { position: sticky; bottom: 0; z-index: 80; display: none; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px; background: rgba(8, 13, 14, .95); backdrop-filter: blur(10px); border-top: 1px solid var(--line-2); }
.stickybar__g { display: flex; align-items: center; gap: 8px; font-size: .85rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ---- prose / about / responsible ------------------------------------------ */
.prose { padding: 26px 0 48px; }
.prose__col { max-width: 760px; }
.prose p { margin-bottom: 16px; color: var(--ink-soft); font-size: 1.07rem; }
.prose h2 { margin: 28px 0 12px; font-size: 1.45rem; font-weight: 800; }
.ticks { display: grid; gap: 10px; margin-bottom: 16px; }
.ticks li { position: relative; padding-left: 28px; color: var(--ink-soft); }
.ticks li::before { content: "🛡"; position: absolute; left: 0; font-size: .9rem; }
.agegate { margin-top: 22px; padding: 16px 20px; border-radius: var(--radius); background: rgba(245, 180, 69, .08); border: 1px solid rgba(245, 180, 69, .3); font-weight: 700; }
.values { padding: 10px 0 56px; }
.values__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.valuecard { background: linear-gradient(180deg, var(--panel), var(--panel-2)); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.valuecard h3 { font-size: 1.12rem; position: relative; padding-left: 26px; }
.valuecard h3::before { content: "🛡"; position: absolute; left: 0; }
.valuecard p { margin-top: 8px; color: var(--muted); }

/* ---- redirect -------------------------------------------------------------- */
.beam { min-height: 58vh; display: grid; place-items: center; padding: 60px 0; text-align: center; }
.beam__in { max-width: 520px; }
.beam__spin { width: 54px; height: 54px; margin: 0 auto 24px; border-radius: 50%; border: 4px solid var(--em-soft); border-top-color: var(--em-2); animation: spin .9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.beam h1 { font-size: 1.7rem; font-weight: 800; }
.beam p { margin-top: 12px; color: var(--ink-soft); }
.beam a { color: var(--em-2); font-weight: 700; text-decoration: underline; }
.beam__disc { margin-top: 20px; font-size: .82rem; color: var(--muted); }

/* ---- footer ---------------------------------------------------------------- */
.rf-footer { margin-top: 20px; border-top: 1px solid var(--line); background: #060a0b; }
.rf-footer__trust { border-bottom: 1px solid var(--line); padding: 32px 0; }
.rf-footer__trust-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.rf-footer__trust-in h2 { font-size: 1.35rem; font-weight: 800; }
.rf-footer__trust-in p { margin-top: 6px; color: var(--muted); }
.rf-footer__trust-in strong { color: var(--ink); }
.rf-footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 32px; padding: 44px 22px; }
.rf-footer__brand p { margin: 14px 0 14px; color: var(--muted); max-width: 340px; }
.rf-footer__col h3 { font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; color: var(--ink); }
.rf-footer__col ul { display: grid; gap: 10px; }
.rf-footer__col a { color: var(--muted); }
.rf-footer__col a:hover { color: var(--em-2); }
.rf-footer__legal { border-top: 1px solid var(--line); padding: 24px 0; font-size: .84rem; color: var(--muted); }
.rf-footer__legal p { max-width: 900px; }
.rf-footer__rg { margin-top: 10px; font-weight: 600; color: var(--ink-soft); }

/* ---- responsive ------------------------------------------------------------ */
@media (max-width: 1000px) {
  .rf-nav { display: none; }
  .hamb { display: flex; }
  .rf-header.is-open .rf-nav { display: flex; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; gap: 2px; padding: 14px; background: var(--panel); border-bottom: 1px solid var(--line-2); box-shadow: var(--shadow); }
  .rf-header.is-open .rf-nav__link { padding: 12px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile--keep { grid-column: span 2; grid-row: span 1; }
  .tile--keep .tile__facts { grid-template-columns: 1fr 1fr; }
  .why__grid { grid-template-columns: 1fr; gap: 26px; }
  .vet__wrap { grid-template-columns: 1fr; }
  .dossier__body { grid-template-columns: 1fr; }
  .dossier__side { position: static; }
  .stickybar { display: flex; }
}
@media (max-width: 620px) {
  .bento { grid-template-columns: 1fr; }
  .tile--keep { grid-column: span 1; }
  .tile__act, .tile--keep .tile__act { grid-auto-flow: row; }
  .rf-footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .rf-footer__trust-in { flex-direction: column; align-items: flex-start; }
  .pc { grid-template-columns: 1fr; }
  .verdict { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .bar { grid-template-columns: 120px 1fr 34px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; } }
