/* =============================================================================
   pfminimart.com / Online Casino Australia
   "Ironstone & Jacaranda" - a surveyor's field report.
   Terracotta + slate: cool slate-mist ground, ironstone rust dominant,
   jacaranda violet as the single sharp accent, ironbark slate chrome.
   Type: Newsreader (display, italic monograms) + Hanken Grotesk (body)
         + Spline Sans Mono (figures, kickers).
   Signature: topographic contour lines (repeating radial gradients).
   Shape lock: every surface and control is 2px. No max-width on text (R11).
   ============================================================================= */

:root {
  --brand:        #a2412a;   /* ironstone rust - white text 5.9:1 */
  --brand-dark:   #7a2e1c;
  --brand-light:  #d0714f;
  --accent:       #5b3fc4;   /* jacaranda - white text 7.3:1 */
  --accent-warm:  #7c62e0;
  --accent-soft:  #e9e4fa;

  --bg:           #eef1f2;   /* slate mist */
  --bg-card:      #f8fafa;
  --bg-elevated:  #fdfefe;
  --bg-panel:     #e2e7e9;
  --chrome:       #1c2529;   /* ironbark slate */
  --chrome-2:     #243036;

  --text:         #1b2327;
  --text-muted:   #48555c;
  --text-dim:     #66737a;
  --text-on-dark: #eef0ef;
  --muted-on-dark:#b3bec3;

  --border:        #d4dcdf;
  --border-strong: #b7c2c7;
  --border-soft:   #e3e8ea;

  --plate-a: #fbf7f0;        /* cream logo plate (R6) */
  --plate-b: #ece3d5;
  --star-empty: #cfd6d9;

  --radius:    2px;
  --shadow-sm: 0 1px 2px rgba(28, 37, 41, .06), 0 2px 8px rgba(28, 37, 41, .05);
  --shadow:    0 10px 30px -12px rgba(28, 37, 41, .22), 0 2px 6px rgba(28, 37, 41, .06);
  --shadow-lg: 0 30px 60px -24px rgba(28, 37, 41, .38);

  --container: 1200px;
  --gutter:    1.5rem;
  --header-h:  72px;

  --f-display: "Newsreader", "Iowan Old Style", Georgia, serif;
  --f-body:    "Hanken Grotesk", "Segoe UI", system-ui, sans-serif;
  --f-mono:    "Spline Sans Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --ease: cubic-bezier(.16, 1, .3, 1);

  /* contour hills: concentric arcs, tiled - the site's repeating ornament */
  --contour: repeating-radial-gradient(circle at 50% 115%, transparent 0 3px, var(--brand) 3px 4px, transparent 4px 7px);
  --contour-light: repeating-radial-gradient(circle at 50% 115%, transparent 0 3px, #f0a488 3px 4px, transparent 4px 7px);
}

@media (prefers-color-scheme: dark) {
  :root {
    --brand-light:  #e08565;
    --accent:       #8f78f0;
    --accent-warm:  #a898f4;
    --accent-soft:  #2a2450;
    --bg:           #111719;
    --bg-card:      #182024;
    --bg-elevated:  #1d262b;
    --bg-panel:     #222d32;
    --text:         #e7ebec;
    --text-muted:   #aab5ba;
    --text-dim:     #8d999f;
    --border:        #2b373d;
    --border-strong: #3a4850;
    --border-soft:   #222c31;
    --star-empty:   #3a474d;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .3);
    --shadow:    0 10px 30px -12px rgba(0, 0, 0, .6);
    --shadow-lg: 0 30px 60px -24px rgba(0, 0, 0, .7);
  }
}

/* ---------------------------------------------------------------- base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); }
body {
  margin: 0;
  font: 400 1.0625rem/1.7 var(--f-body);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 110% -10%, rgba(162, 65, 42, .07), transparent 60%),
    radial-gradient(900px 500px at -10% 40%, rgba(91, 63, 196, .05), transparent 60%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: .2em; }
a:hover { color: var(--brand-dark); }
@media (prefers-color-scheme: dark) { a { color: var(--brand-light); } a:hover { color: #f0a488; } }
p { margin: 0 0 1.05em; }
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 600; line-height: 1.12; margin: 0 0 .6em; letter-spacing: -.01em; color: var(--text); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
strong { font-weight: 700; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.skip-link { position: absolute; left: -999px; top: .5rem; z-index: 100; background: var(--accent); color: #fff; padding: .6rem 1rem; }
.skip-link:focus { left: .5rem; color: #fff; }

/* -------------------------------------------------------------- kickers ---- */
.kicker {
  display: inline-flex; align-items: center; gap: .7rem;
  font: 600 .78rem/1.2 var(--f-mono); letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand); margin: 0 0 1.4rem;
}
.kicker::before {
  content: ""; width: 36px; height: 12px; flex: none;
  background: var(--contour) 0 0 / 18px 12px repeat-x; opacity: .9;
}
.kicker--light { color: #f0a488; }
.kicker--light::before { background: var(--contour-light) 0 0 / 18px 12px repeat-x; }
@media (prefers-color-scheme: dark) { .kicker { color: var(--brand-light); } }

/* --------------------------------------------------------------- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.4rem; border-radius: var(--radius); border: 1px solid transparent;
  font: 700 .95rem/1.1 var(--f-body); letter-spacing: .01em; text-decoration: none; white-space: nowrap;
  cursor: pointer; transition: transform .2s var(--ease), background-color .2s, box-shadow .2s, color .2s;
}
.btn:active { transform: translateY(1px); }
.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 8px 20px -10px rgba(91, 63, 196, .8); }
.btn--accent:hover { background: #4a31a8; color: #fff; transform: translateY(-1px); }
.btn--rust { background: var(--brand); color: #fff; }
.btn--rust:hover { background: var(--brand-dark); color: #fff; transform: translateY(-1px); }
.btn--ghost { background: rgba(255, 255, 255, .04); color: var(--text-on-dark); border-color: rgba(238, 240, 239, .45); }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; border-color: #fff; }
.btn--sm { padding: .6rem 1rem; font-size: .88rem; }
.btn--lg { padding: 1rem 1.7rem; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }
@media (prefers-color-scheme: dark) { .btn--accent { color: #140d2e; } .btn--accent:hover { background: #a898f4; color: #140d2e; } }

.read-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font: 600 .9rem/1.3 var(--f-body); color: var(--brand); text-decoration: none;
  border-bottom: 1px solid currentColor; padding-bottom: 1px;
}
.read-link::after { content: "\2192"; transition: transform .2s var(--ease); }
.read-link:hover::after { transform: translateX(3px); }
.read-link--strong { font-size: 1rem; }
@media (prefers-color-scheme: dark) { .read-link { color: var(--brand-light); } }

/* ------------------------------------------------------------- logo plate ---- */
.logo-plate {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  background: linear-gradient(145deg, var(--plate-a), var(--plate-b));
  border: 1px solid rgba(28, 37, 41, .08); border-radius: var(--radius);
  padding: .45rem .7rem;
}
.logo-plate img { width: auto; height: 30px; max-width: 100%; object-fit: contain; }
.logo-plate--xs { padding: .3rem .45rem; min-width: 84px; }
.logo-plate--xs img { height: 22px; }
.logo-plate--sm { min-width: 118px; }
.logo-plate--md { min-width: 160px; padding: .55rem .8rem; }
.logo-plate--md img { height: 38px; }
.logo-plate--lg { min-width: 200px; padding: .8rem 1rem; }
.logo-plate--lg img { height: 50px; }

/* ------------------------------------------------------------------ stars ---- */
.stars { display: inline-flex; gap: 2px; vertical-align: middle; font-size: 1rem; }
.stars--sm { font-size: .85rem; }
.star {
  width: 1em; height: 1em; display: inline-block; position: relative; overflow: hidden;
  background: var(--star-empty);
  clip-path: polygon(50% 0, 61.8% 35.4%, 100% 38.2%, 69.1% 61.8%, 80.9% 100%, 50% 76.4%, 19.1% 100%, 30.9% 61.8%, 0 38.2%, 38.2% 35.4%);
}
.star--full { background: var(--brand); }
.star--half::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 50%; overflow: hidden; background: var(--brand); }
@media (prefers-color-scheme: dark) { .star--full, .star--half::before { background: var(--brand-light); } }
.score { font: 600 .95rem/1 var(--f-mono); color: var(--text); margin-left: .45rem; }

/* ================================================================ HEADER ==== */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50; height: var(--header-h);
  color: var(--text-on-dark);
  background: linear-gradient(to bottom, rgba(20, 27, 30, .7), rgba(20, 27, 30, 0));
  transition: height .3s var(--ease), background-color .3s, box-shadow .3s;
}
.site-header.is-scrolled {
  --header-h: 60px;
  background: rgba(28, 37, 41, .94);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .06), 0 10px 30px -18px rgba(0, 0, 0, .6);
}
.site-header__inner { height: 100%; display: flex; align-items: center; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: inherit; flex: none; }
.brand:hover { color: inherit; }
/* R6 exception: the mark is a circular crest, so the wrapper clips it round on every surface. */
.brand__crest { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex: none; box-shadow: 0 0 0 1px rgba(255, 255, 255, .18); }
.brand__crest img { width: 100%; height: 100%; object-fit: contain; }
.brand__word { font: 600 1.18rem/1 var(--f-display); letter-spacing: -.01em; white-space: nowrap; }
.brand__word em { font-style: italic; font-weight: 500; color: #f0a488; }

.site-nav { position: relative; margin-left: auto; }
.site-nav__list { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.nav-item { position: relative; }
.nav-item > a {
  display: inline-flex; align-items: center; gap: .35rem; padding: .55rem .75rem;
  font: 600 .92rem/1 var(--f-body); color: rgba(238, 240, 239, .86); text-decoration: none; white-space: nowrap;
}
.nav-item > a:hover, .nav-item > a.active { color: #fff; }
.nav-caret { width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform .2s; }
.nav-item--has-submenu:hover .nav-caret, .nav-item--has-submenu.is-open .nav-caret { transform: translateY(1px) rotate(225deg); }
.nav-indicator {
  position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: #f0a488;
  transform: translateX(0); transition: transform .35s var(--ease), width .35s var(--ease), opacity .2s; opacity: 0; pointer-events: none;
}

/* R13 - transparent bridge so the cursor keeps :hover while crossing the gap */
.nav-item--has-submenu::after {
  content: ""; position: absolute; top: 100%; left: -.75rem; right: -.75rem; height: 1.1rem; pointer-events: auto;
}
.nav-submenu {
  position: absolute; top: calc(100% + .9rem); left: 50%; width: 440px;
  display: grid; grid-template-columns: 1fr 1fr; gap: .4rem; padding: .8rem;
  background: var(--bg-elevated); border: 1px solid var(--border); border-top: 2px solid var(--brand);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translate(-50%, 6px);
  transition: opacity .2s, transform .25s var(--ease), visibility .2s;
}
.nav-submenu::before {
  content: ""; position: absolute; top: -8px; left: 50%; width: 14px; height: 14px; transform: translateX(-50%) rotate(45deg);
  background: var(--bg-elevated); border-left: 2px solid var(--brand); border-top: 2px solid var(--brand);
}
.nav-item--has-submenu:hover .nav-submenu,
.nav-item--has-submenu:focus-within .nav-submenu,
.nav-item--has-submenu.is-open .nav-submenu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-submenu__item {
  display: flex; align-items: center; gap: .7rem; padding: .5rem; border-radius: var(--radius);
  color: var(--text); text-decoration: none; font-weight: 600; font-size: .92rem;
}
.nav-submenu__item:hover { background: var(--bg-panel); color: var(--text); }
.site-header__cta { flex: none; }

.burger { display: none; width: 44px; height: 44px; margin-left: .25rem; background: transparent; border: 1px solid rgba(255, 255, 255, .3); border-radius: var(--radius); position: relative; cursor: pointer; }
.burger span { position: absolute; left: 11px; right: 11px; height: 2px; background: #fff; transition: transform .3s var(--ease), opacity .2s, top .3s var(--ease); }
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 28px; }
.nav-open .burger span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-open .burger span:nth-child(2) { opacity: 0; }
.nav-open .burger span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ================================================================== HERO ==== */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: clamp(620px, 94dvh, 880px);
  display: flex; align-items: flex-end;
  color: var(--text-on-dark); background: var(--chrome);
  padding: calc(var(--header-h) + 3rem) 0 6.5rem;
}
.hero__art, .page-hero__art { position: absolute; inset: 0; z-index: -3; }
.hero__art img, .page-hero__art img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(700px 380px at 85% 75%, rgba(162, 65, 42, .35), transparent 70%),
    linear-gradient(to top, rgba(17, 23, 26, .97) 0%, rgba(17, 23, 26, .86) 34%, rgba(17, 23, 26, .35) 68%, rgba(17, 23, 26, .6) 100%);
}
.hero__contours {
  position: absolute; inset: auto -10% -30% 30%; height: 90%; z-index: -1; pointer-events: none;
  background: repeating-radial-gradient(ellipse 60% 45% at 70% 70%, transparent 0 22px, rgba(240, 164, 136, .12) 22px 23px);
  -webkit-mask-image: radial-gradient(ellipse at 70% 70%, #000 30%, transparent 70%);
          mask-image: radial-gradient(ellipse at 70% 70%, #000 30%, transparent 70%);
}
.hero__inner { width: 100%; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 3rem; }
.hero__title {
  font-size: clamp(2.2rem, 3.9vw, 3.5rem); font-weight: 500; line-height: 1.08; color: #fff;
  margin: 0 0 1.1rem; padding-bottom: .1em;
}
.hero__title em { display: block; font-style: italic; color: #f0a488; font-weight: 400; }
.hero__bar { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.hero__sub { font-size: 1.12rem; color: rgba(238, 240, 239, .84); margin-bottom: 1.8rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---- foreground object: compass-rose score medallion ---- */
.compass {
  position: relative; width: 270px; aspect-ratio: 1; flex: none; display: grid; place-items: center;
  border-radius: 50%; text-decoration: none; color: var(--text-on-dark);
  border: 1px solid rgba(240, 164, 136, .45);
  background: radial-gradient(circle, rgba(28, 37, 41, .55) 0 58%, rgba(28, 37, 41, .2) 72%, transparent 73%);
  transition: transform .4s var(--ease);
}
.compass:hover { transform: rotate(-2deg) scale(1.02); color: var(--text-on-dark); }
.compass__ticks {
  position: absolute; inset: 6px; border-radius: 50%;
  background: repeating-conic-gradient(from -1deg, rgba(238, 240, 239, .7) 0 .8deg, transparent .8deg 10deg);
  -webkit-mask-image: radial-gradient(circle, transparent 0 88%, #000 88.5% 100%);
          mask-image: radial-gradient(circle, transparent 0 88%, #000 88.5% 100%);
}
.compass__rings {
  position: absolute; inset: 24px; border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 10px, rgba(240, 164, 136, .28) 10px 11px);
}
.compass__needle {
  position: absolute; width: 22px; height: 250px; left: calc(50% - 11px); top: calc(50% - 125px);
  background: linear-gradient(to bottom, #d0714f 0 50%, #7f8c92 50% 100%);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  transform: rotate(24deg);
  animation: needle-settle 2.4s var(--ease) .3s both;
}
.compass__north { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); font: 600 .72rem/1 var(--f-mono); letter-spacing: .1em; color: #f0a488; }
.compass__face {
  position: relative; width: 158px; aspect-ratio: 1; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .35rem;
  background: radial-gradient(circle at 35% 30%, #2b383e, #172024 70%);
  box-shadow: 0 0 0 1px rgba(240, 164, 136, .4), 0 20px 40px -12px rgba(0, 0, 0, .7);
}
.compass__label { font: 600 .62rem/1 var(--f-mono); letter-spacing: .16em; text-transform: uppercase; color: var(--muted-on-dark); }
.compass__face .logo-plate { min-width: 0; padding: .25rem .4rem; }
.compass__face .logo-plate img { height: 22px; }
.compass__score { font: 600 2rem/1 var(--f-display); color: #fff; }
.compass .star--full, .compass .star--half::before { background: #f0a488; }
.compass .star { background: rgba(255, 255, 255, .22); }
@keyframes needle-settle { from { transform: rotate(-70deg); } 60% { transform: rotate(38deg); } to { transform: rotate(24deg); } }

/* ---- stat strip bridge (normal flow, pulled up over the hero) ---- */
.stat-strip {
  position: relative; z-index: 2; margin: -3.25rem 0 0;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--bg-elevated); border: 1px solid var(--border); border-top: 2px solid var(--brand);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.stat { display: flex; flex-direction: column-reverse; justify-content: flex-end; gap: .35rem; padding: 1.35rem 1.5rem; border-left: 1px solid var(--border-soft); }
.stat:first-child { border-left: 0; }
.stat dd { margin: 0; font: 600 clamp(1.5rem, 2.4vw, 2.1rem)/1.05 var(--f-display); color: var(--text); }
.stat dt { font: 500 .78rem/1.35 var(--f-mono); letter-spacing: .04em; color: var(--text-dim); }

/* =============================================================== SECTIONS === */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section + .section { padding-top: 0; }
.section--intro { padding-top: clamp(2.5rem, 5vw, 4rem); }
.section-title { font-size: clamp(1.75rem, 3vw, 2.55rem); margin-bottom: 1.4rem; }
.section-title::after { content: ""; display: block; width: 72px; height: 12px; margin-top: .9rem; background: var(--contour) 0 0 / 18px 12px repeat-x; }
.section-intro { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem; }
.grid-caption { font: 600 .74rem/1.3 var(--f-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); margin: 1.4rem 0 .8rem; }

/* ---- shared card chassis: hairline accent top edge, L-corners, italic monogram ---- */
.floor-tile, .subcard, .plain-card, .bento__tile, .podium-card, .verdict-card, .dossier, .intro-block, .home-note__grid {
  position: relative; overflow: hidden;
  border: 1px solid var(--border); border-top: 2px solid var(--brand); border-radius: var(--radius);
  background:
    linear-gradient(var(--brand), var(--brand)) top 10px right 10px / 18px 1px no-repeat,
    linear-gradient(var(--brand), var(--brand)) top 10px right 10px / 1px 18px no-repeat,
    var(--bg-card);
  box-shadow: var(--shadow-sm);
}
.floor-tile::before, .subcard::before, .plain-card::before, .bento__tile::before, .podium-card::before, .dossier::before {
  content: ""; position: absolute; left: 10px; bottom: 10px; width: 18px; height: 18px;
  border-left: 1px solid var(--brand); border-bottom: 1px solid var(--brand); opacity: .6; pointer-events: none;
}
[data-mono]::after {
  content: attr(data-mono); position: absolute; right: .9rem; bottom: -2.2rem; pointer-events: none;
  font: italic 500 8rem/1 var(--f-display); color: var(--brand); opacity: .07;
}

/* ---- floor grid (R3) ---- */
.floor-grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr)); margin: 1.2rem 0; }
.floor-grid[data-cols="1"] { --cols: 1; }
.floor-grid[data-cols="2"] { --cols: 2; }
.floor-grid[data-cols="3"] { --cols: 3; }
.floor-grid[data-cols="4"] { --cols: 4; }
.floor-tile { padding: 1.6rem 1.5rem 1.8rem; }
.floor-tile h3 { font-size: 1.3rem; padding-right: 1.5rem; }
.floor-tile p:last-child { margin-bottom: 0; }
.floor-tile--mini { padding: 1.2rem 1.2rem 1.4rem; }
.floor-tile--mini h4 { margin-bottom: .35rem; }
.floor-tile--mini::after { font-size: 5rem; bottom: -1.4rem; }
.floor-tile--mini p { font-size: .98rem; color: var(--text-muted); }

/* ---- dossier (table-heavy review sections) ---- */
.dossier-lead { margin-bottom: 1.2rem; }
.dossier-lead > p { font-size: 1.08rem; }
.subcard { padding: 1.8rem 1.8rem 2rem; margin: 1.1rem 0; }
.subcard h3 { font-size: 1.45rem; }

/* ---- spec grid (2-col key/value tables) ---- */
.spec-grid { display: grid; gap: .6rem; grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr)); margin: 1.2rem 0 1.4rem; }
.spec-grid[data-cols="2"] { --cols: 2; }
.spec-grid[data-cols="3"] { --cols: 3; }
.spec-grid__head { grid-column: 1 / -1; display: flex; gap: .6rem; font: 600 .72rem/1.3 var(--f-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); }
.spec-grid__head span + span::before { content: "/ "; }
.spec { display: flex; flex-direction: column; gap: .25rem; padding: .85rem 1rem; background: var(--bg-elevated); border: 1px solid var(--border-soft); border-left: 2px solid var(--brand); border-radius: var(--radius); }
.spec__k { font: 600 .74rem/1.3 var(--f-mono); letter-spacing: .05em; text-transform: uppercase; color: var(--text-dim); }
.spec__v { font-weight: 600; line-height: 1.45; }

/* ---- data tables: zebra rows, no hairline under every row ---- */
.data-table { overflow-x: auto; margin: 1.2rem 0 1.4rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-elevated); }
.data-table table { width: 100%; border-collapse: collapse; font-size: .97rem; }
.data-table thead th { text-align: left; padding: .8rem 1rem; font: 600 .74rem/1.3 var(--f-mono); letter-spacing: .08em; text-transform: uppercase; color: var(--brand); background: var(--bg-panel); white-space: nowrap; }
.data-table tbody th, .data-table td { text-align: left; padding: .8rem 1rem; vertical-align: top; }
.data-table tbody th { font-weight: 700; }
.data-table tbody tr:nth-child(even) { background: color-mix(in srgb, var(--bg-panel) 45%, transparent); }
@media (prefers-color-scheme: dark) { .data-table thead th { color: var(--brand-light); } }

/* ---- intro block (R8) ---- */
.intro-block { padding: 1.8rem 2rem; font-size: 1.1rem; }
.intro-block p:last-child { margin-bottom: 0; }
.intro-block p:first-child::first-letter { float: left; font: 600 3.4rem/.85 var(--f-display); color: var(--brand); padding: .3rem .5rem 0 0; }

.plain-card { padding: 1.8rem 2rem; }
.plain-card p:last-child { margin-bottom: 0; }
.stack > * + * { margin-top: 1rem; }

/* ---- feature check list (R10: li is block, never grid) ---- */
.feature-check-list { list-style: none; margin: 1.2rem 0; padding: 1.4rem 1.5rem; background: var(--bg-panel); border-radius: var(--radius); }
.feature-check-list li { display: block; position: relative; padding-left: 2.3rem; margin: 0 0 .85rem; }
.feature-check-list li:last-child { margin-bottom: 0; }
.feature-check-list li::before {
  content: ""; position: absolute; left: 0; top: .15rem; width: 1.45rem; height: 1.45rem;
  background: var(--accent-soft); border: 1px solid var(--accent); border-radius: var(--radius);
}
.feature-check-list li::after {
  content: ""; position: absolute; left: .5rem; top: .42rem; width: .42rem; height: .75rem;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(45deg);
}
.feature-check-list--plain { padding: 0; background: none; display: grid; gap: .7rem; }
.feature-check-list--plain li { margin: 0; padding: 1rem 1.2rem 1rem 3.4rem; background: var(--bg-card); border: 1px solid var(--border); border-left: 2px solid var(--brand); border-radius: var(--radius); }
.feature-check-list--plain li::before { left: 1.1rem; top: 1.1rem; }
.feature-check-list--plain li::after { left: 1.6rem; top: 1.37rem; }

/* ---- split layout ---- */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 4vw, 3.5rem); align-items: center; }
.split-layout__media { margin: 0; aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); position: relative; }
.split-layout__media::after { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(255, 255, 255, .35); pointer-events: none; }
.split-layout__media img { width: 100%; height: 100%; object-fit: cover; }
.split-layout--reverse .split-layout__media { order: 2; }

/* ---- image divider: 21:9, always inside .container (R11) ---- */
.image-divider { margin: 0 0 clamp(3.5rem, 7vw, 6rem); aspect-ratio: 21 / 9; overflow: hidden; border-radius: var(--radius); position: relative; box-shadow: var(--shadow); }
.image-divider img { width: 100%; height: 100%; object-fit: cover; }
.image-divider::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 12px; background: var(--contour-light) 0 0 / 18px 12px repeat-x; opacity: .85; }

/* ================================================================ PODIUM ==== */
.top-rated { padding-top: clamp(3.5rem, 6vw, 5rem); }
.podium { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; align-items: end; margin-top: .5rem; }
.podium-card { padding: 2.2rem 1.5rem 1.6rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: .6rem; }
.podium-card--first {
  transform: translateY(-1.6rem); padding-top: 2.8rem; border-top-width: 3px;
  box-shadow: var(--shadow-lg);
  background:
    linear-gradient(var(--brand), var(--brand)) top 10px right 10px / 18px 1px no-repeat,
    linear-gradient(var(--brand), var(--brand)) top 10px right 10px / 1px 18px no-repeat,
    radial-gradient(420px 200px at 50% 0%, rgba(162, 65, 42, .08), transparent 70%),
    var(--bg-elevated);
}
.podium-card__ribbon {
  position: absolute; top: 0; left: 0; right: 0; padding: .4rem;
  font: 600 .72rem/1.2 var(--f-mono); letter-spacing: .16em; text-transform: uppercase;
  background: var(--brand); color: #fff;
}
.rank-badge { position: absolute; top: .9rem; left: .9rem; font: 600 .9rem/1 var(--f-mono); color: var(--brand); padding: .35rem .5rem; border: 1px solid var(--brand); border-radius: var(--radius); background: var(--bg-elevated); }
.podium-card--first .rank-badge { top: 2.3rem; }
.podium-card__plate { display: block; margin: .6rem 0 .2rem; }
.podium-card__name { font-size: 1.55rem; margin: .2rem 0 0; }
.podium-card__name a { color: var(--text); text-decoration: none; }
.podium-card__score { display: flex; align-items: center; }
.podium-card__bonus { font: 600 1.2rem/1.3 var(--f-display); margin: .2rem 0 0; }
.podium-card__terms { font-size: .9rem; color: var(--text-muted); margin: 0 0 .5rem; }
.podium-card__stats { display: grid; grid-template-columns: 1fr 1fr; width: 100%; margin: .4rem 0 .2rem; border-top: 1px dashed var(--border-strong); padding-top: .8rem; }
.podium-card__stats div + div { border-left: 1px dashed var(--border-strong); }
.podium-card__stats dt { font: 600 .66rem/1.3 var(--f-mono); letter-spacing: .08em; text-transform: uppercase; color: var(--text-dim); }
.podium-card__stats dd { margin: .2rem 0 0; font-weight: 700; font-size: .95rem; }

.runners { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: .8rem; }
.runner {
  display: grid; grid-template-columns: 3rem 200px 1fr auto; align-items: center; gap: 1.2rem;
  padding: 1rem 1.3rem; background: var(--bg-card); border: 1px solid var(--border); border-left: 2px solid var(--brand); border-radius: var(--radius);
}
.runner__rank { font: 500 2rem/1 var(--f-display); font-style: italic; color: var(--brand); text-align: center; }
.runner__plate .logo-plate { width: 100%; }
.runner__name { font-size: 1.25rem; margin: 0; }
.runner__name a { color: var(--text); text-decoration: none; }
.runner__score { display: flex; align-items: center; margin: .2rem 0; }
.runner__bonus { margin: 0; font-size: .95rem; color: var(--text-muted); }
.runner__actions { display: flex; align-items: center; gap: 1rem; }

/* ============================================================ HOME NOTE ==== */
.home-note__grid { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 3rem); padding: clamp(1.5rem, 3vw, 2.4rem); }
.home-note__author img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); filter: saturate(.9); }
.home-note__name { font: 600 1.2rem/1.2 var(--f-display); margin: .9rem 0 .15rem; }
.home-note__role { font: 500 .8rem/1.3 var(--f-mono); color: var(--text-dim); margin: 0; }
.home-note__lead { font: 400 clamp(1.25rem, 2vw, 1.55rem)/1.5 var(--f-display); color: var(--text); }
.home-note__body .btn { margin-top: .6rem; }

/* ================================================================= BENTO ==== */
.bento { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1.1rem; }
.bento__tile { padding: 1.6rem 1.5rem 1.8rem; margin: 0; }
.bento__tile--feature { grid-column: span 3; grid-row: span 2; }
.bento__tile--wide    { grid-column: span 4; }
.bento__tile--narrow3 { grid-column: span 3; }
.bento__tile--narrow  { grid-column: span 2; }
.bento__tile--full    { grid-column: 1 / -1; }
.bento__tile h3 { font-size: 1.3rem; padding-right: 1.5rem; }
.bento__tile p:last-child { margin-bottom: 0; }
.bento__media { margin: -1.6rem -1.5rem 1.4rem; aspect-ratio: 16 / 9; overflow: hidden; }
.bento__media img { width: 100%; height: 100%; object-fit: cover; }
.method .bento__tile--narrow3 {
  background:
    linear-gradient(var(--brand), var(--brand)) top 10px right 10px / 18px 1px no-repeat,
    linear-gradient(var(--brand), var(--brand)) top 10px right 10px / 1px 18px no-repeat,
    var(--bg-panel);
}
.bento__head { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.bento__name { font: 600 1.15rem/1 var(--f-display); }
.bento__quote { font: 400 1.12rem/1.55 var(--f-display); }
.bento--rewards .bento__tile--feature .bento__quote { font-size: clamp(1.25rem, 2vw, 1.5rem); }
.bento--rewards .bento__tile--feature { grid-row: span 1; background: linear-gradient(150deg, var(--brand), var(--brand-dark)); color: #fff; border-top-color: #f0a488; }
.bento--rewards .bento__tile--feature .read-link { color: #fff; }
.bento--rewards .bento__tile--feature .bento__name { color: #fff; }
.bento--rewards .bento__tile--feature::before { border-color: #f0a488; }
.bento--rewards .bento__tile--feature[data-mono]::after { color: #fff; opacity: .1; }
.bento__tile--image { padding: 0; border-top-color: var(--brand); }
.bento__tile--image img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; }
.bento__tile--image::before { display: none; }
.bento__tile--warn { background: var(--accent-soft); border-top-color: var(--accent); }
.bento__tile--warn::before { border-color: var(--accent); }

/* =============================================================== DOSSIERS === */
.dossier { margin: 0 0 .9rem; }
.dossier[data-mono]::after, .dossier__note[data-mono]::after { font-size: 6rem; bottom: -1.6rem; }
.dossier__summary {
  list-style: none; cursor: pointer;
  display: grid; grid-template-columns: auto auto minmax(0, 1fr) auto auto; align-items: center; gap: 1rem;
  padding: 1.1rem 1.4rem;
}
.dossier__summary::-webkit-details-marker { display: none; }
.dossier__rank { font: italic 500 1.6rem/1 var(--f-display); color: var(--brand); min-width: 2.2rem; }
.dossier__title { font-size: clamp(1.15rem, 2vw, 1.45rem); margin: 0; }
.dossier__score { display: inline-flex; align-items: center; }
.dossier__toggle { width: 28px; height: 28px; position: relative; border: 1px solid var(--border-strong); border-radius: var(--radius); }
.dossier__toggle::before, .dossier__toggle::after { content: ""; position: absolute; left: 7px; right: 7px; top: 13px; height: 1.5px; background: var(--text); transition: transform .25s var(--ease); }
.dossier__toggle::after { transform: rotate(90deg); }
.dossier[open] .dossier__toggle::after { transform: rotate(0); }
.dossier__body { padding: 0 1.4rem 1.6rem; border-top: 1px dashed var(--border-strong); }
.dossier__lead { padding-top: 1.3rem; }
.dossier__intro { font: 400 1.15rem/1.55 var(--f-display); }
.dossier__notes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin: .4rem 0 1.4rem; }
.dossier__note { position: relative; overflow: hidden; padding: 1.3rem 1.3rem 1.4rem; background: var(--bg-elevated); border: 1px solid var(--border-soft); border-left: 2px solid var(--brand); border-radius: var(--radius); }
.dossier__note h3 { font-size: 1.15rem; }
.dossier__note .data-table { font-size: .9rem; }
.dossier__note .data-table table { font-size: .88rem; }
.spec-grid--compact .spec { padding: .65rem .8rem; }

/* ============================================================ SECURITY ===== */
.security-card {
  position: relative; overflow: hidden; isolation: isolate;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(2rem, 4vw, 3.2rem); border-radius: var(--radius);
  background:
    radial-gradient(600px 300px at 0% 100%, rgba(162, 65, 42, .28), transparent 70%),
    linear-gradient(150deg, var(--chrome-2), var(--chrome));
  color: var(--text-on-dark);
}
.security-card::before {
  content: ""; position: absolute; inset: -50% auto -50% -60%; width: 40%; z-index: -1;
  background: linear-gradient(115deg, transparent, rgba(240, 164, 136, .14), transparent);
  transform: translateX(0) rotate(0deg); transition: transform 1.2s var(--ease);
}
.security-card:hover::before { transform: translateX(420%); }
.security-card__corner { position: absolute; width: 26px; height: 26px; border-color: #f0a488; border-style: solid; border-width: 0; transition: width .4s var(--ease), height .4s var(--ease); }
.security-card__corner--tl { top: 14px; left: 14px; border-top-width: 1px; border-left-width: 1px; }
.security-card__corner--tr { top: 14px; right: 14px; border-top-width: 1px; border-right-width: 1px; }
.security-card__corner--bl { bottom: 14px; left: 14px; border-bottom-width: 1px; border-left-width: 1px; }
.security-card__corner--br { bottom: 14px; right: 14px; border-bottom-width: 1px; border-right-width: 1px; }
.security-card:hover .security-card__corner { width: 54px; height: 54px; }
.security-card .kicker { color: #f0a488; }
.security-card__lead { font: 400 clamp(1.25rem, 2vw, 1.5rem)/1.5 var(--f-display); color: #fff; }
.security-card p { color: rgba(238, 240, 239, .86); }
.security-card .read-link { color: #f0a488; }
.security-card__list li { background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .1); border-left-color: #f0a488; color: rgba(238, 240, 239, .9); }
.security-card__list li::before { background: rgba(143, 120, 240, .18); border-color: #a898f4; }
.security-card__list li::after { border-color: #a898f4; }
.security-card__list strong { color: #fff; }

/* ============================================================ PAGE HERO ==== */
.page-hero {
  position: relative; isolation: isolate; overflow: hidden; color: var(--text-on-dark); background: var(--chrome);
  padding: calc(var(--header-h) + 3.2rem) 0 3.2rem;
}
.page-hero__scrim { position: absolute; inset: 0; z-index: -2; background: linear-gradient(100deg, rgba(17, 23, 26, .96) 0%, rgba(17, 23, 26, .86) 45%, rgba(17, 23, 26, .5) 100%); }
.page-hero--404 { min-height: 80dvh; display: flex; align-items: flex-end; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: .5rem; font: 500 .8rem/1.4 var(--f-mono); color: var(--muted-on-dark); margin-bottom: 1.2rem; }
.breadcrumb a { color: var(--muted-on-dark); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb [aria-current] { color: #f0a488; }
.page-hero__title { font-size: clamp(1.95rem, 3.6vw, 3.1rem); font-weight: 500; color: #fff; margin-bottom: 1.2rem; }
.rating-badge {
  display: inline-flex; align-items: baseline; gap: .1rem; vertical-align: middle; margin-left: .3rem;
  padding: .3rem .6rem; font: 600 1.05rem/1 var(--f-mono); color: #fff; background: var(--brand); border-radius: var(--radius);
}
.rating-badge small { font-size: .7rem; opacity: .8; }
.review-byline { display: flex; align-items: center; gap: .85rem; margin-bottom: 1.3rem; }
.review-byline__avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px rgba(240, 164, 136, .6); }
.review-byline p { margin: 0; }
.review-byline__name { font-weight: 700; color: #fff; display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.review-byline__role { font-size: .88rem; color: var(--muted-on-dark); }
.verified { font: 600 .66rem/1 var(--f-mono); letter-spacing: .08em; text-transform: uppercase; padding: .3rem .45rem; border-radius: var(--radius); background: rgba(143, 120, 240, .22); color: #d6cffb; }
.page-hero__lede { font-size: 1.1rem; color: rgba(238, 240, 239, .86); margin-bottom: 1.8rem; }

/* ---- cream CTA strip ---- */
.cta-strip {
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 1rem 1.5rem;
  padding: 1.1rem 1.3rem; color: var(--text);
  background: linear-gradient(135deg, #f7f2ea, #ece3d4); border-radius: var(--radius);
  border-top: 2px solid var(--brand); box-shadow: var(--shadow-lg);
}
.cta-strip__plate { display: block; text-decoration: none; }
.cta-strip__plate .logo-plate { background: #fffdf9; }
.cta-strip__label { display: block; font: 600 .7rem/1.3 var(--f-mono); letter-spacing: .12em; text-transform: uppercase; color: #7a2e1c; }
.cta-strip__bonus strong { font: 600 1.15rem/1.35 var(--f-display); color: #1b2327; }
.cta-strip__visitors {
  grid-column: 1 / -1; margin: 0; padding-top: .8rem; border-top: 1px dashed rgba(28, 37, 41, .25);
  display: flex; align-items: center; gap: .6rem; font: 500 .82rem/1.3 var(--f-mono); color: #3d4a50;
}
.pulse { width: 9px; height: 9px; border-radius: 50%; background: #5b3fc4; box-shadow: 0 0 0 0 rgba(91, 63, 196, .6); animation: pulse 2s infinite; flex: none; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(91, 63, 196, 0); } 100% { box-shadow: 0 0 0 0 rgba(91, 63, 196, 0); } }

/* ============================================================== VERDICT ==== */
.section--verdict { padding-top: clamp(2.5rem, 5vw, 4rem); padding-bottom: 0; }
.verdict-card { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 3rem); padding: clamp(1.6rem, 3vw, 2.4rem); }
.verdict-card__title { font-size: 1.7rem; margin-bottom: 1rem; }
.rating-row { display: grid; grid-template-columns: minmax(0, 1fr) auto 2.6rem; align-items: center; gap: .8rem; padding: .55rem 0; border-bottom: 1px dashed var(--border); }
.rating-row:last-child { border-bottom: 0; }
.rating-row__label { font-weight: 600; font-size: .95rem; }
.rating-row__score { font: 600 .95rem/1 var(--f-mono); text-align: right; }
.rating-row--overall { padding: .9rem 0; }
.rating-row--overall .rating-row__label { font: 600 1.15rem/1 var(--f-display); }
.rating-row--overall .stars { font-size: 1.25rem; }
.rating-row--overall .rating-row__score { font-size: 1.2rem; color: var(--brand); }
.verdict-note { margin: 0; align-self: center; padding: 1.6rem; background: var(--bg-panel); border-left: 2px solid var(--accent); border-radius: var(--radius); }
.verdict-note blockquote { margin: 0; }
.verdict-note blockquote p { font: italic 400 clamp(1.25rem, 2vw, 1.5rem)/1.5 var(--f-display); margin: 0 0 1rem; }
.verdict-note figcaption { font: 600 .8rem/1.3 var(--f-mono); color: var(--text-dim); }
.verdict-note__fine { font-size: .8rem; color: var(--text-dim); margin: .8rem 0 0; }

/* ================================================================ FOOTER ==== */
.site-footer { margin-top: clamp(3.5rem, 7vw, 6rem); background: var(--chrome); color: var(--muted-on-dark); padding-bottom: 2rem; }
.contour-band { height: 18px; background: var(--contour-light) 0 100% / 24px 16px repeat-x, var(--chrome-2); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr; gap: 2rem; padding: 3.5rem 0 2.5rem; }
.footer-pedestal p { margin: 1rem 0 1.2rem; font-size: .95rem; }
.brand--footer { color: var(--text-on-dark); }
.footer-col__title { font: 600 .74rem/1.2 var(--f-mono); letter-spacing: .14em; text-transform: uppercase; color: #f0a488; margin: .5rem 0 1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-col a { color: var(--text-on-dark); text-decoration: none; font-size: .95rem; }
.footer-col a:hover { color: #f0a488; }
.vip-tile { position: relative; padding: 1.3rem; border: 1px solid rgba(255, 255, 255, .1); border-top: 2px solid #f0a488; border-radius: var(--radius); background: linear-gradient(160deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, 0)); }
.vip-tile__title { font: 600 1.05rem/1.2 var(--f-display); color: #fff; margin: 0 0 .8rem; }
.vip-tile__plate { display: inline-block; margin-bottom: .6rem; }
.vip-tile__bonus { color: var(--text-on-dark); font-size: .95rem; margin: 0 0 1rem; }
.accreditations { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.4rem 0; border-top: 1px solid rgba(255, 255, 255, .08); border-bottom: 1px solid rgba(255, 255, 255, .08); }
.badges, .footer-logos { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.badge { font: 600 .72rem/1 var(--f-mono); letter-spacing: .08em; text-transform: uppercase; padding: .55rem .7rem; border: 1px solid rgba(240, 164, 136, .4); border-radius: var(--radius); color: var(--text-on-dark); }
.badge--age { background: var(--brand); border-color: var(--brand); color: #fff; }
.footer-logos a { display: block; }
.footer-disclaimer { font-size: .85rem; text-align: center; margin: 1.5rem 0 .4rem; }
.footer-copy { font: 500 .78rem/1.4 var(--f-mono); text-align: center; margin: 0; color: #8b989e; }

/* ================================================================== 404 ==== */
.lost-links { list-style: none; padding: 0; margin: 2rem 0 0; display: flex; flex-wrap: wrap; gap: .6rem; }
.lost-links a { display: inline-flex; align-items: center; gap: .6rem; padding: .4rem .7rem .4rem .4rem; border: 1px solid rgba(255, 255, 255, .18); border-radius: var(--radius); color: var(--text-on-dark); text-decoration: none; font-weight: 600; font-size: .9rem; }
.lost-links a:hover { border-color: #f0a488; color: #fff; }

/* ================================================================ REVEAL ==== */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .podium-card--first.reveal.is-in { transform: translateY(-1.6rem); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .js .podium-card--first.reveal { transform: translateY(-1.6rem); }
}

/* ============================================================ RESPONSIVE === */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .vip-tile { grid-column: span 1; }
  .nav-item > a { padding: .55rem .55rem; }
  .compass { width: 230px; }
  .compass__needle { height: 214px; top: calc(50% - 107px); }
  .compass__face { width: 140px; }
}

@media (max-width: 900px) {
  :root { --header-h: 64px; }
  .burger { display: block; }
  .site-header__cta { margin-left: auto; }
  .site-nav {
    position: fixed; inset: 0; z-index: -1; margin: 0; padding: calc(var(--header-h) + 1.5rem) 1.5rem 2rem;
    background: var(--chrome); overflow-y: auto;
    opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s;
  }
  .nav-open .site-nav { opacity: 1; visibility: visible; }
  .nav-open .site-header { background: var(--chrome); }
  .site-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-item > a { padding: 1rem 0; font-size: 1.15rem; border-bottom: 1px solid rgba(255, 255, 255, .08); justify-content: space-between; }
  .nav-indicator { display: none; }
  .nav-item--has-submenu::after { display: none; }
  .nav-submenu {
    position: static; width: auto; transform: none; box-shadow: none; display: none;
    opacity: 1; visibility: visible; margin: .6rem 0 1rem; background: var(--chrome-2); border-color: rgba(255, 255, 255, .08);
  }
  .nav-submenu::before { display: none; }
  .nav-item--has-submenu:hover .nav-submenu, .nav-item--has-submenu:focus-within .nav-submenu { transform: none; }
  .nav-item--has-submenu.is-open .nav-submenu { display: grid; transform: none; }
  .nav-submenu__item { color: var(--text-on-dark); }
  .nav-submenu__item:hover { background: rgba(255, 255, 255, .06); color: #fff; }
  body.nav-open { overflow: hidden; }

  .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .compass { justify-self: start; }
  .floor-grid[data-cols="3"], .floor-grid[data-cols="4"], .spec-grid[data-cols="3"] { --cols: 2; }
  .stat-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--border-soft); }
  .podium { grid-template-columns: 1fr; max-width: none; }
  .podium-card--first { order: -1; transform: none; }
  .js .podium-card--first.reveal.is-in { transform: none; }
  .bento__tile--feature, .bento__tile--narrow3, .bento__tile--wide { grid-column: 1 / -1; grid-row: auto; }
  .bento__tile--narrow { grid-column: span 3; }
  .security-card, .verdict-card { grid-template-columns: 1fr; }
  .split-layout { grid-template-columns: 1fr; }
  .split-layout--reverse .split-layout__media { order: 0; }
  .split-layout__media { aspect-ratio: 16 / 10; }
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-pedestal, .vip-tile { grid-column: 1 / -1; }
  .runner { grid-template-columns: 2.2rem 150px 1fr; grid-template-areas: "rank plate body" "actions actions actions"; }
  .runner__rank { grid-area: rank; }
  .runner__plate { grid-area: plate; }
  .runner__body { grid-area: body; }
  .runner__actions { grid-area: actions; justify-content: space-between; }
  .dossier__summary { grid-template-columns: auto minmax(0, 1fr) auto; }
  .dossier__summary .logo-plate { display: none; }
  .dossier__score { grid-column: 2; grid-row: 2; }
  .dossier__toggle { grid-column: 3; grid-row: 1; }
  .dossier__notes { grid-template-columns: 1fr; }
  .home-note__grid { grid-template-columns: 1fr; }
  .home-note__author { display: grid; grid-template-columns: 96px 1fr; column-gap: 1rem; align-items: center; }
  .home-note__author img { grid-row: span 2; }
  .home-note__name { margin-top: 0; }
  .cta-strip { grid-template-columns: 1fr; }
  .cta-strip .btn { width: 100%; }
  .image-divider { aspect-ratio: 16 / 9; }
  .brand__word { font-size: 1.02rem; }
}

@media (max-width: 560px) {
  :root { --gutter: 1rem; }
  .floor-grid[data-cols], .spec-grid[data-cols] { --cols: 1; }
  .bento__tile--narrow { grid-column: 1 / -1; }
  .stat { padding: 1rem; }
  .hero { padding-bottom: 5.5rem; }
  .hero__ctas .btn { flex: 1 1 100%; }
  .site-header__cta { display: none; }
  .intro-block, .plain-card, .subcard { padding: 1.4rem 1.2rem; }
  .compass { width: 210px; }
  .compass__needle { height: 196px; top: calc(50% - 98px); }
  .compass__face { width: 128px; }
  .compass__score { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .runner { grid-template-columns: 2rem 1fr; grid-template-areas: "rank plate" "rank body" "actions actions"; }
  .runner__actions { flex-wrap: wrap; }
  .runner__actions .btn { flex: 1 1 100%; }
  .brand__word { display: none; }
}

/* ---- rhythm fixes: verdict -> intro gap, divider -> next section ---- */
.section--verdict + .section { padding-top: clamp(1.5rem, 3vw, 2.5rem); }
.container:has(> .image-divider) + .section { padding-top: 0; }
.spec-grid[data-cols="4"] { --cols: 4; }
@media (max-width: 900px) { .spec-grid[data-cols="4"] { --cols: 2; } }
@media (max-width: 560px) { .spec-grid[data-cols="4"] { --cols: 1; } }

/* ---- Reviews dropdown: fixed plate slot so every name aligns ---- */
.nav-submenu { width: 500px; gap: .35rem .6rem; }
.nav-submenu__item { display: grid; grid-template-columns: 116px minmax(0, 1fr); gap: .8rem; }
.nav-submenu__item .logo-plate { width: 116px; min-width: 0; height: 42px; padding: .3rem .5rem; }
.nav-submenu__item .logo-plate img { height: auto; max-height: 26px; max-width: 100%; }
.nav-submenu__name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 900px) {
  .nav-submenu { width: auto; }
}
@media (max-width: 480px) {
  .nav-submenu { grid-template-columns: 1fr; }
}
