/* =============================================================================
 * SpinGrade — Stylesheet (BEM). Light editorial "report card" theme.
 * Vanilla CSS, no frameworks. Distinct from the dark CoinVerdict build.
 * ========================================================================== */
:root {
  --canvas: #f5f6fb;
  --paper: #ffffff;
  --paper-2: #fbfbfe;
  --ink: #14172b;
  --ink-soft: #3d4460;
  --muted: #6a7290;
  --line: #e5e7f0;
  --line-2: #d7dbe8;

  --indigo: #4f46e5;
  --indigo-d: #4338ca;
  --indigo-soft: #eef0fe;
  --amber: #f59e0b;
  --amber-d: #e08e05;
  --amber-ink: #3c2c00;

  /* grade colours */
  --g-aplus: #16a34a;
  --g-a: #0d9488;
  --g-am: #65a30d;
  --g-bp: #d97706;
  --g-b: #ea580c;

  --radius: 14px;
  --radius-lg: 20px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(20, 23, 43, .06), 0 2px 8px rgba(20, 23, 43, .05);
  --shadow: 0 10px 30px -12px rgba(20, 23, 43, .18);
  --shadow-lg: 0 24px 60px -20px rgba(79, 70, 229, .35);
  --wrap: 1140px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::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: var(--canvas);
  line-height: 1.62; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  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: ui-monospace, SFMono-Regular, Menlo, monospace; }
h1, h2, h3 { line-height: 1.15; 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(--indigo); color: #fff; padding: 10px 16px; border-radius: 8px; font-weight: 700; transition: top .2s; }
.skip:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--indigo); outline-offset: 2px; border-radius: 5px; }

/* ---- buttons --------------------------------------------------------------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; border-radius: 10px; 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--amber { background: var(--amber); color: var(--amber-ink); box-shadow: 0 8px 20px -8px rgba(245, 158, 11, .6); }
.btn--amber:hover { background: var(--amber-d); }
.btn--line { background: var(--paper); border-color: var(--line-2); color: var(--ink); }
.btn--line:hover { border-color: var(--indigo); color: var(--indigo); }
.btn--ghost { background: var(--indigo-soft); color: var(--indigo-d); }
.btn--ghost:hover { background: #e2e5fd; }
.btn--sm { padding: 9px 15px; font-size: .88rem; border-radius: 9px; }
.btn--lg { padding: 15px 26px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.pill { display: inline-block; padding: 6px 14px; border-radius: 999px; background: var(--indigo-soft); color: var(--indigo-d); font-weight: 800; font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; }
.tag { display: inline-block; padding: 4px 10px; border-radius: 999px; background: var(--canvas); border: 1px solid var(--line); font-size: .76rem; color: var(--muted); font-weight: 600; }
.kicker { color: var(--indigo); font-weight: 800; font-size: .82rem; letter-spacing: .09em; text-transform: uppercase; }

.sect-head { text-align: center; max-width: 640px; margin: 0 auto 34px; }
.sect-head h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); 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; }

/* ---- grade badge ----------------------------------------------------------- */
.gradebadge { display: inline-grid; place-items: center; min-width: 44px; height: 44px; padding: 0 10px; border-radius: 12px; font-weight: 900; font-size: 1.15rem; color: #fff; letter-spacing: -.02em; box-shadow: var(--shadow-sm); }
.gradebadge--aplus { background: linear-gradient(150deg, #22c55e, var(--g-aplus)); }
.gradebadge--a { background: linear-gradient(150deg, #14b8a6, var(--g-a)); }
.gradebadge--am { background: linear-gradient(150deg, #84cc16, var(--g-am)); }
.gradebadge--bp { background: linear-gradient(150deg, #f59e0b, var(--g-bp)); }
.gradebadge--b { background: linear-gradient(150deg, #fb923c, var(--g-b)); }
.gradebadge--xl { min-width: 84px; height: 84px; border-radius: 20px; font-size: 2.4rem; }

/* ---- meter ----------------------------------------------------------------- */
.meter { display: block; height: 8px; border-radius: 999px; background: var(--line); overflow: hidden; }
.meter__fill { display: block; height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, var(--indigo), #7c74f0); transition: width 1s var(--ease); }

/* ---- brand logo lockup ----------------------------------------------------- */
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 0; }
.brand__ic { width: 40px; height: 40px; border-radius: 10px; object-fit: contain; padding: 4px; background: var(--paper); border: 1px solid var(--line); flex: none; }
.brand__name { font-weight: 800; font-size: 1.12rem; }
.brand__mark { height: 34px; width: auto; }
.brand--wide .brand__mark { filter: none; }
/* bitguruz wordmark is white+gold → needs a dark chip to stay legible on light bg */
.brand--wide { background: #0e1430; padding: 8px 14px; border-radius: 10px; }

/* ---- header ---------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, .86); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.site-header__inner { display: flex; align-items: center; gap: 18px; min-height: 66px; }
.brandmark { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; font-size: 1.24rem; letter-spacing: -.03em; }
.brandmark__badge { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(150deg, var(--indigo), var(--indigo-d)); color: #fff; font-weight: 900; font-size: 1rem; box-shadow: var(--shadow-sm); }
.brandmark__badge sup { font-size: .6em; }
.brandmark__hi { color: var(--indigo); }
.menu { display: flex; align-items: center; gap: 2px; margin-left: 6px; }
.menu__link { padding: 9px 12px; border-radius: 9px; font-weight: 600; font-size: .95rem; color: var(--ink-soft); transition: color .2s, background .2s; }
.menu__link:hover { color: var(--ink); background: var(--canvas); }
.menu__link.is-active { color: var(--indigo); background: var(--indigo-soft); }
.site-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); }
.site-header.is-open .hamb span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.is-open .hamb span:nth-child(2) { opacity: 0; }
.site-header.is-open .hamb span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lang-select { position: relative; }
.lang-select__btn { display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px; border-radius: 9px; border: 1px solid var(--line-2); background: var(--paper); font-weight: 600; font-size: .9rem; color: var(--ink-soft); }
.lang-select__btn:hover { border-color: var(--indigo); color: var(--indigo); }
.lang-select__menu { position: absolute; right: 0; top: calc(100% + 8px); min-width: 190px; background: var(--paper); 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-select[data-open] .lang-select__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-select__opt { display: flex; gap: 9px; padding: 10px 12px; border-radius: 8px; font-weight: 600; font-size: .92rem; color: var(--ink-soft); }
.lang-select__opt:hover { background: var(--canvas); color: var(--ink); }
.lang-select__opt.is-active { background: var(--indigo-soft); color: var(--indigo-d); }

/* ---- masthead -------------------------------------------------------------- */
.masthead { padding: 56px 0 46px; background: radial-gradient(1100px 480px at 88% -10%, #ede9ff 0, transparent 60%), radial-gradient(700px 380px at -5% 0, #e6fbf4 0, transparent 55%); }
.masthead__grid { display: grid; grid-template-columns: 1.25fr .95fr; gap: 40px; align-items: center; }
.masthead__title { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 900; margin: 16px 0 0; }
.masthead__lead { margin-top: 16px; color: var(--ink-soft); font-size: 1.12rem; max-width: 34em; }
.masthead__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.masthead__trust { margin-top: 26px; }

.topcard { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 24px 24px; box-shadow: var(--shadow); }
.topcard__ribbon { position: absolute; top: -13px; left: 24px; background: linear-gradient(150deg, #22c55e, var(--g-aplus)); color: #fff; font-weight: 800; font-size: .74rem; letter-spacing: .05em; text-transform: uppercase; padding: 6px 13px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.topcard__grade { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.topcard__gl { display: flex; flex-direction: column; font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; font-weight: 700; }
.topcard__gl strong { font-size: 1.7rem; color: var(--ink); letter-spacing: -.02em; }
.topcard__gl small { color: var(--muted); font-weight: 700; }
.topcard__brand { margin-bottom: 12px; }
.topcard__bonus { font-weight: 800; font-size: 1.15rem; color: var(--indigo-d); margin-bottom: 16px; }
.topcard__link { display: inline-block; margin-top: 14px; color: var(--indigo); font-weight: 700; }
.topcard__link:hover { color: var(--indigo-d); }

/* ---- leaderboard ----------------------------------------------------------- */
.board { padding: 56px 0; }
.lb { display: grid; gap: 14px; }
.lb__row { display: grid; grid-template-columns: 64px 1.4fr .9fr 1.3fr 1fr 190px; align-items: center; gap: 18px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s, border-color .2s; }
.lb__row:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-2); }
.lb__row--top { border-color: transparent; box-shadow: var(--shadow-lg); background: linear-gradient(#fff, #fff) padding-box, linear-gradient(120deg, var(--indigo), #22c55e) border-box; border: 2px solid transparent; }
.lb__rank { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.lb__rank span { font-size: 1.7rem; font-weight: 900; color: var(--muted); }
.lb__row--top .lb__rank span { color: var(--indigo); }
.lb__pick { font-size: .58rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--g-aplus); text-align: center; line-height: 1.1; }
.lb__grade { display: flex; align-items: center; gap: 10px; }
.lb__score { font-weight: 800; font-size: 1.05rem; }
.lb__score small { color: var(--muted); font-weight: 600; }
.lb__k { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); font-weight: 700; margin-bottom: 2px; }
.lb__bonus strong, .lb__payout strong { font-size: .95rem; font-weight: 700; }
.lb__act { display: grid; gap: 8px; }

/* ---- 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: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); }
.why__list h3 { font-size: 1.05rem; position: relative; padding-left: 26px; }
.why__list h3::before { content: "✓"; position: absolute; left: 0; top: -1px; color: var(--g-aplus); font-weight: 900; }
.why__list p { margin-top: 8px; color: var(--muted); font-size: .94rem; }

/* ---- method ---------------------------------------------------------------- */
.method { padding: 56px 0; background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.method__wrap { display: grid; grid-template-columns: 1.4fr .85fr; gap: 34px; align-items: start; }
.method__list { display: grid; gap: 14px; }
.method__step { display: flex; gap: 16px; padding: 18px 20px; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); }
.method__num { flex: none; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: var(--indigo); color: #fff; font-weight: 800; }
.method__step h3 { font-size: 1.06rem; }
.method__step p { margin-top: 5px; color: var(--muted); font-size: .94rem; }
.gradescale { background: linear-gradient(160deg, #0e1430, #1a1f45); color: #fff; border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); }
.gradescale h3 { font-size: 1.1rem; margin-bottom: 16px; }
.gradescale__item { display: flex; align-items: center; gap: 13px; padding: 9px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); color: #c9cdea; font-weight: 600; }
.gradescale__item:last-child { border-bottom: 0; }

/* ---- compare table --------------------------------------------------------- */
.compare { padding: 56px 0; }
.ctable__scroll { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.ctable { width: 100%; border-collapse: collapse; background: var(--paper); min-width: 640px; }
.ctable th { text-align: left; font-size: .74rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); padding: 14px 18px; background: var(--paper-2); border-bottom: 1px solid var(--line); }
.ctable td { padding: 16px 18px; border-bottom: 1px solid var(--line); font-weight: 600; font-size: .93rem; vertical-align: middle; }
.ctable tr:last-child td { border-bottom: 0; }
.ctable__go { text-align: right; }

/* ---- faq ------------------------------------------------------------------- */
.faq { padding: 56px 0; }
.faq__wrap { max-width: 800px; }
.faq__list { display: grid; gap: 12px; }
.faq__item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.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(--indigo); 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, var(--indigo), var(--indigo-d)); color: #fff; box-shadow: var(--shadow-lg); }
.cta-strip__in h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; max-width: 20em; }

/* ---- trustpilot score ------------------------------------------------------ */
.tscore { display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap; padding: 12px 16px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.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: #dcdfe6; 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: .85rem; color: var(--muted); }
.tscore__meta strong { color: var(--ink); }
.tscore--panel { background: var(--paper); }

/* ---- subhead (inner pages) ------------------------------------------------- */
.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.06rem; 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(--indigo); }
.crumbs--light { color: rgba(255, 255, 255, .75); }
.crumbs--light a { color: rgba(255, 255, 255, .9); }

/* ---- report (review) ------------------------------------------------------- */
.report__head { color: #fff; padding: 30px 0 34px; background: linear-gradient(140deg, #1a1f45, #2a2f66); }
.report__head--aplus { background: linear-gradient(140deg, #0e3d24, #16a34a); }
.report__head--a { background: linear-gradient(140deg, #0c3b37, #0d9488); }
.report__head--am { background: linear-gradient(140deg, #2f3d0c, #65a30d); }
.report__head--bp { background: linear-gradient(140deg, #3d2a06, #d97706); }
.report__head--b { background: linear-gradient(140deg, #3d1f06, #ea580c); }
.report__top { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-top: 18px; flex-wrap: wrap; }
.report__brand { margin-bottom: 12px; }
.report__title { font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 900; }
.report__tag { margin-top: 10px; color: rgba(255, 255, 255, .85); font-size: 1.05rem; max-width: 40em; }
.report__scorebox { display: flex; align-items: center; gap: 16px; background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .2); border-radius: var(--radius-lg); padding: 16px 20px; backdrop-filter: blur(4px); }
.report__overall { display: flex; flex-direction: column; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: rgba(255, 255, 255, .8); font-weight: 700; }
.report__overall strong { font-size: 2rem; color: #fff; letter-spacing: -.02em; }
.report__overall small { font-weight: 700; color: rgba(255, 255, 255, .7); }

.report__body { display: grid; grid-template-columns: 1fr 340px; gap: 36px; padding-top: 36px; padding-bottom: 60px; align-items: start; }
.report__lead { font-size: 1.15rem; color: var(--ink); margin-bottom: 30px; }
.report__main section { margin-bottom: 30px; }

.brk__list { display: grid; gap: 14px; }
.brk__row { display: grid; grid-template-columns: 150px 1fr 42px; align-items: center; gap: 14px; }
.brk__label { font-weight: 700; font-size: .92rem; }
.brk__val { 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); background: var(--paper); box-shadow: var(--shadow-sm); }
.pc__box--up { border-color: #bbe8ce; background: #f2fbf6; }
.pc__box--dn { border-color: #f4d3c4; background: #fdf5f1; }
.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(--g-aplus); font-weight: 900; }
.pc__list--dn li::before { content: "!"; position: absolute; left: 4px; color: var(--g-b); font-weight: 900; }

.report__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(--indigo-soft); border: 1px solid #d9dcfb; }
.verdict__grade { display: flex; flex-direction: column; align-items: center; gap: 8px; font-weight: 800; }
.verdict__grade span { font-size: 1.1rem; }
.verdict__grade small { color: var(--muted); font-weight: 600; }
.verdict__txt h2 { font-size: 1.25rem; margin-bottom: 6px; }
.verdict__txt p { color: var(--ink-soft); margin-bottom: 14px; }

.report__side { position: sticky; top: 84px; display: grid; gap: 18px; }
.offer { background: linear-gradient(160deg, #0e1430, #232a57); color: #fff; border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow); }
.offer__k { font-size: .74rem; text-transform: uppercase; letter-spacing: .05em; color: #a6acd6; font-weight: 700; }
.offer__h { display: block; font-size: 1.3rem; font-weight: 800; margin: 6px 0 12px; color: #ffd47a; }
.offer__meta { display: flex; flex-direction: column; gap: 4px; font-size: .86rem; color: #c7cbeb; margin-bottom: 16px; }
.offer__meta code { color: #7ee7c7; font-weight: 700; }
.facts { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-sm); }
.facts__t { font-size: 1.05rem; margin-bottom: 12px; }
.facts dl { display: grid; }
.facts__row { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.facts__row:last-child { border-bottom: 0; }
.facts__row dt { color: var(--muted); font-size: .9rem; }
.facts__row dd { font-weight: 700; text-align: right; }
.side-others { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 18px 20px; box-shadow: var(--shadow-sm); }
.side-others 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(--indigo); }
.othr__rank { font-weight: 800; color: var(--muted); width: 18px; }
.othr__g { margin-left: auto; }
.othr__g .gradebadge { min-width: 36px; height: 36px; font-size: .95rem; }
.side-back { display: inline-block; color: var(--muted); font-weight: 700; }
.side-back:hover { color: var(--indigo); }

/* sticky mobile bar on report pages */
.stickybar { position: sticky; bottom: 0; z-index: 80; display: none; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px; background: rgba(255, 255, 255, .95); backdrop-filter: blur(10px); border-top: 1px solid var(--line-2); box-shadow: 0 -8px 24px -12px rgba(20, 23, 43, .3); }
.stickybar__g { display: flex; align-items: center; gap: 8px; font-size: .85rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.stickybar__g .gradebadge { min-width: 34px; height: 34px; font-size: .9rem; }

/* ---- 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; color: var(--indigo); font-weight: 900; }
.agegate { margin-top: 22px; padding: 16px 20px; border-radius: var(--radius); background: #fdf5f1; border: 1px solid #f4d3c4; 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: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.valuecard h3 { font-size: 1.15rem; position: relative; padding-left: 24px; }
.valuecard h3::before { content: "★"; position: absolute; left: 0; color: var(--amber); }
.valuecard p { margin-top: 8px; color: var(--muted); }

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

/* ---- footer ---------------------------------------------------------------- */
.footer { background: #0e1430; color: #c7cbeb; margin-top: 20px; }
.footer__trust { border-bottom: 1px solid rgba(255, 255, 255, .09); padding: 32px 0; }
.footer__trust-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer__trust-t { color: #fff; font-size: 1.35rem; font-weight: 800; }
.footer__trust-b { margin-top: 6px; }
.footer__trust-b strong { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 32px; padding: 44px 22px; }
.footer .brandmark { color: #fff; }
.footer__about { margin: 14px 0 14px; max-width: 340px; }
.footer__col h3 { color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.footer__col ul { display: grid; gap: 10px; }
.footer__col a:hover { color: #fff; }
.footer__legal { border-top: 1px solid rgba(255, 255, 255, .09); padding: 24px 0; font-size: .84rem; color: #9aa0c8; }
.footer__legal p { max-width: 900px; }
.footer__rg { margin-top: 10px; font-weight: 600; color: #c7cbeb; }
.footer__cp { margin-top: 10px; }

/* ---- responsive ------------------------------------------------------------ */
@media (max-width: 980px) {
  .menu { display: none; }
  .hamb { display: flex; }
  .site-header.is-open .menu { display: flex; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; gap: 2px; padding: 14px; background: var(--paper); border-bottom: 1px solid var(--line-2); box-shadow: var(--shadow); }
  .site-header.is-open .menu__link { padding: 12px; }
  .masthead__grid { grid-template-columns: 1fr; gap: 30px; }
  .why__grid { grid-template-columns: 1fr; gap: 26px; }
  .method__wrap { grid-template-columns: 1fr; }
  .report__body { grid-template-columns: 1fr; }
  .report__side { position: static; }
  .lb__row { grid-template-columns: 48px 1fr auto; grid-template-areas: "rank brand grade" "bonus bonus bonus" "payout payout payout" "act act act"; row-gap: 12px; }
  .lb__rank { grid-area: rank; } .lb__brand { grid-area: brand; } .lb__grade { grid-area: grade; }
  .lb__bonus { grid-area: bonus; } .lb__payout { grid-area: payout; } .lb__act { grid-area: act; }
  .lb__act { grid-auto-flow: column; }
  .stickybar { display: flex; }
}
@media (max-width: 620px) {
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer__trust-in { flex-direction: column; align-items: flex-start; }
  .pc { grid-template-columns: 1fr; }
  .verdict { grid-template-columns: 1fr; text-align: center; }
  .why__list { grid-template-columns: 1fr; }
  .report__scorebox { width: 100%; }
  .brk__row { grid-template-columns: 120px 1fr 36px; }
  .lb__act { grid-auto-flow: row; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; } }
