/* ==========================================================================
   Online Casino Australia
   Redesign v2 - light editorial magazine

   Dials      : DESIGN_VARIANCE 8 · MOTION_INTENSITY 6 · VISUAL_DENSITY 5
   Theme      : LIGHT, locked. Emerald is brand chrome, never a second theme.
   Accent     : gold #F0A81C, and nothing else, on every section.
   Type       : Bricolage Grotesque (display) · Instrument Sans (body)
                Martian Mono (rank numerals, figures, small labels)
   Shape lock : media + cards 16px · buttons pill · chips and plates 10px
   Cards      : borderless. Art bleeds to the rounded edge. Depth comes from
                one shared tinted shadow plus a hover lift, never an outline.

   House rules honoured here:
     - no max-width on any heading or body text; the container and the grid
       column set the measure (standing preference across these builds)
     - every bounded block shares the same 1200px guides; the header and any
       full-bleed band span the viewport and put their content on those guides
     - no hairline border on a card, no filled progress tracks, no decorative
       dots, no scroll cues, no em-dashes anywhere in rendered copy
   ========================================================================== */

:root {
  /* --- ground ------------------------------------------------------------ */
  --paper:        #fbfcfa;
  --paper-2:      #f1f4f1;
  --paper-3:      #e7ece8;

  /* --- brand chrome ------------------------------------------------------ */
  --emerald:      #06392a;
  --emerald-2:    #0a5940;
  --emerald-deep: #042318;

  /* --- the single accent ------------------------------------------------- */
  --gold:         #f0a81c;
  --gold-hi:      #ffc24a;
  --gold-deep:    #b57c07;

  /* --- ink --------------------------------------------------------------- */
  --ink:          #0c1f17;
  --ink-soft:     #48594f;
  --ink-faint:    #78877e;
  --on-emerald:   #eef5f0;
  --on-emerald-2: #a9c6b7;

  /* --- lines, used sparingly and never on a card ------------------------- */
  --rule:         rgba(12, 31, 23, .12);
  --rule-strong:  rgba(12, 31, 23, .22);
  --rule-dark:    rgba(238, 245, 240, .16);

  /* --- depth: one shadow language for the whole page --------------------- */
  --lift:      0 2px 4px rgba(6, 57, 42, .05), 0 12px 28px -12px rgba(6, 57, 42, .18);
  --lift-hi:   0 4px 8px rgba(6, 57, 42, .07), 0 26px 50px -18px rgba(6, 57, 42, .30);
  --lift-gold: 0 4px 8px rgba(181, 124, 7, .12), 0 26px 50px -18px rgba(181, 124, 7, .38);

  /* --- type -------------------------------------------------------------- */
  --font-display: 'Bricolage Grotesque', 'Helvetica Neue', Helvetica, sans-serif;
  --font-body:    'Instrument Sans', 'Helvetica Neue', Helvetica, sans-serif;
  --font-mono:    'Martian Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* --- metrics ----------------------------------------------------------- */
  --container: 1200px;
  --gutter:    1.5rem;
  --r-card:    16px;
  --r-chip:    10px;
  --r-pill:    999px;
  --ease:      cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------------------
   base
   -------------------------------------------------------------------------- */

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }

img { max-width: 100%; display: block; }

a { color: var(--emerald-2); text-decoration: none; }
a:hover { color: var(--gold-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.028em;
  margin: 0 0 .8rem;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.25rem, 1.9vw, 1.6rem); letter-spacing: -.02em; }
h4 { font-size: clamp(1.05rem, 1.5vw, 1.25rem); letter-spacing: -.015em; }

/* emphasis stays in the same family, never a borrowed serif */
h1 em, h2 em, h3 em { font-style: italic; color: var(--gold-deep); }

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }

::selection { background: var(--gold); color: var(--ink); }

:focus-visible { outline: 3px solid var(--gold-deep); outline-offset: 3px; border-radius: 4px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold); color: var(--ink);
  padding: .8rem 1.3rem; font-weight: 600; border-radius: 0 0 var(--r-chip) 0;
}
.skip-link:focus { left: 0; top: 0; }

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

/* --------------------------------------------------------------------------
   section rhythm and banding
   -------------------------------------------------------------------------- */

.section { padding: clamp(3.5rem, 6.5vw, 6rem) 0; }
.section--tight { padding-block: clamp(2.25rem, 4vw, 3.25rem); }

.band--paper2 { background: var(--paper-2); }
.band--emerald {
  background: var(--emerald);
  color: var(--on-emerald);
}
.band--emerald h1, .band--emerald h2, .band--emerald h3, .band--emerald h4 { color: var(--on-emerald); }
.band--emerald p { color: var(--on-emerald-2); }
.band--emerald a:not(.btn) { color: var(--gold-hi); }
.band--emerald .btn--primary { color: var(--ink); }
.band--emerald .btn--dark { color: var(--on-emerald); }

/* the only small-caps label on the page, rationed to two per page */
.eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 .9rem;
}
.band--emerald .eyebrow { color: var(--gold); }

/* the page's decorative signature: a short gold rule under a heading */
.gold-rule { position: relative; padding-bottom: 1.1rem; }
.gold-rule::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 3.5rem; height: 4px;
  background: var(--gold);
  border-radius: var(--r-pill);
}

.lede { font-size: clamp(1.08rem, 1.5vw, 1.25rem); color: var(--ink-soft); }
.band--emerald .lede { color: var(--on-emerald-2); }

/* --------------------------------------------------------------------------
   buttons - pill, per the shape lock
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body);
  font-size: .95rem; font-weight: 600;
  letter-spacing: -.01em;
  white-space: nowrap;
  padding: .95rem 1.9rem;
  border: 0;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease),
              background .2s var(--ease), color .2s var(--ease);
}
.btn:active { transform: translateY(1px) scale(.985); }

.btn--primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: var(--lift-gold);
}
.btn--primary:hover {
  background: var(--gold-hi);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--emerald);
  color: var(--on-emerald);
  box-shadow: var(--lift);
}
.btn--dark:hover { background: var(--emerald-2); color: #fff; transform: translateY(-2px); }

.btn--quiet {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--rule-strong);
}
.btn--quiet:hover { background: var(--ink); color: var(--paper); box-shadow: none; transform: translateY(-2px); }

.band--emerald .btn--quiet { color: var(--on-emerald); box-shadow: inset 0 0 0 2px var(--rule-dark); }
.band--emerald .btn--quiet:hover { background: var(--on-emerald); color: var(--emerald); }

.btn--sm { padding: .7rem 1.35rem; font-size: .875rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; font-size: .95rem;
  color: var(--emerald-2);
  transition: gap .2s var(--ease), color .2s var(--ease);
}
.link-arrow::after { content: '\2192'; transition: transform .2s var(--ease); }
.link-arrow:hover { gap: .65rem; color: var(--gold-deep); }
.band--emerald .link-arrow { color: var(--gold-hi); }

/* --------------------------------------------------------------------------
   header - solid emerald bar, full viewport width, content on the guides
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky; top: 0; z-index: 200;
  width: 100%;
  background: var(--emerald);
  color: var(--on-emerald);
}
.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  height: 72px;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px -14px rgba(4, 35, 24, .55); }

.brand-mark { display: flex; align-items: center; flex-shrink: 0; margin-right: auto; }
.brand-mark img { height: 46px; width: auto; object-fit: contain; }
.brand-mark__text {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.2rem; line-height: 1.05; color: var(--on-emerald);
}
.brand-mark__text em { font-style: italic; color: var(--gold); }

.primary-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.nav-item { position: relative; }

.nav-list a {
  display: block;
  padding: .55rem .8rem;
  font-size: .95rem; font-weight: 500;
  color: var(--on-emerald-2);
  border-radius: var(--r-chip);
  white-space: nowrap;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-list a:hover { color: #fff; }
.nav-list a.active { color: var(--gold); }

.nav-parent { display: inline-flex !important; align-items: center; gap: .35rem; }
.nav-parent svg { transition: transform .25s var(--ease); }
.nav-item--has-submenu:hover .nav-parent svg,
.nav-item--has-submenu.is-open .nav-parent svg { transform: rotate(180deg); }

/* transparent bridge so the cursor can cross the gap into the panel */
.nav-item--has-submenu::after {
  content: '';
  position: absolute; top: 100%; left: -.5rem; right: -.5rem;
  height: 1.25rem;
  pointer-events: auto;
}

.nav-submenu {
  position: absolute; top: calc(100% + 1rem); left: 50%;
  transform: translate(-50%, 8px);
  min-width: 30rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: .25rem;
  padding: .7rem; margin: 0; list-style: none;
  background: var(--paper);
  border-radius: var(--r-card);
  box-shadow: var(--lift-hi);
  opacity: 0; visibility: hidden;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  z-index: 30;
}
.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 a {
  display: flex !important; align-items: center; gap: .7rem;
  padding: .5rem .55rem !important;
  font-size: .92rem !important;
  color: var(--ink) !important;
  border-radius: var(--r-chip);
}
.nav-submenu a:hover { background: var(--paper-2); color: var(--emerald-2) !important; }

.header-cta { flex-shrink: 0; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px; flex-shrink: 0;
  background: transparent; border: 0; cursor: pointer; position: relative;
  border-radius: var(--r-chip);
}
.menu-toggle span {
  position: absolute; left: 50%; top: 50%;
  width: 20px; height: 2px; margin-left: -10px;
  background: var(--on-emerald); border-radius: 2px;
  transition: transform .25s var(--ease), opacity .18s var(--ease);
}
.menu-toggle span:nth-child(1) { transform: translateY(-6px); }
.menu-toggle span:nth-child(3) { transform: translateY(6px); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }

/* --------------------------------------------------------------------------
   logo plates - each takes its own logo's background so every mark contrasts
   -------------------------------------------------------------------------- */

.logo-plate {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  border-radius: var(--r-chip);
  overflow: hidden;
}
.logo-plate img { width: 100%; height: 100%; object-fit: contain; }
.logo-plate--matched { padding: 0; }
.logo-plate--xs { width: 52px; height: 32px; padding: .2rem .25rem; }
.logo-plate--sm { width: 88px; height: 48px; padding: .3rem .4rem; }
.logo-plate--md { width: 132px; height: 62px; padding: .4rem .6rem; }
.logo-plate--lg { width: 168px; height: 76px; padding: .5rem .8rem; }

/* --------------------------------------------------------------------------
   hero - asymmetric split, image right, ranked card overlapping the image
   -------------------------------------------------------------------------- */

.hero { padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(3.5rem, 6vw, 5.5rem); }
.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: center;
}
/* the headline is a fixed 54-character source string, so its scale is set to
   land on two lines in this column rather than left at the global h1 size. */
.hero__copy h1 { font-size: clamp(2.05rem, 3.3vw, 2.95rem); margin-bottom: 1.6rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.hero__media { position: relative; }
.hero__media figure {
  margin: 0;
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 5 / 6;
  box-shadow: var(--lift-hi);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media--empty figure { background: var(--emerald); }

/* the number one card breaks the image edge: the page's variance moment */
.hero-pick {
  position: absolute;
  left: -2.5rem; bottom: 2rem;
  width: min(19rem, 78%);
  background: var(--paper);
  border-radius: var(--r-card);
  box-shadow: var(--lift-hi);
  padding: 1.25rem 1.35rem;
  display: grid; gap: .75rem;
}
.hero-pick__rank {
  font-family: var(--font-mono);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-deep);
}
.hero-pick__row { display: flex; align-items: center; gap: .85rem; }
.hero-pick__name { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; letter-spacing: -.02em; }
.hero-pick__bonus { font-size: .95rem; color: var(--ink-soft); }
.hero-pick .btn { width: 100%; }

/* --------------------------------------------------------------------------
   figures strip - mono numerals, no card boxes, hairline separators only
   -------------------------------------------------------------------------- */

.figures {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--rule);
  border-radius: var(--r-card);
  overflow: hidden;
}
.figure { background: var(--paper); padding: 1.4rem 1.25rem; }
.figure__num {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 700; line-height: 1;
  color: var(--emerald);
  margin-bottom: .5rem;
}
.figure__label { font-size: .85rem; color: var(--ink-faint); }

/* --------------------------------------------------------------------------
   ranked leaderboard - replaces the old podium, one row per operator
   -------------------------------------------------------------------------- */

.leaderboard { display: grid; gap: .6rem; }

.rank-row {
  display: grid;
  grid-template-columns: 4.25rem 132px 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.05rem 1.5rem 1.05rem 1.1rem;
  background: rgba(238, 245, 240, .06);
  border-radius: var(--r-card);
  transition: background .22s var(--ease), transform .22s var(--ease);
}
.rank-row:hover { background: rgba(238, 245, 240, .11); transform: translateX(5px); }

.rank-row--lead {
  background: var(--paper);
  box-shadow: var(--lift-hi);
  padding-block: 1.4rem;
}
.rank-row--lead .rank-row__name { color: var(--ink); }
.rank-row--lead .rank-row__bonus { color: var(--ink-soft); }
.rank-row--lead .rank-row__score { color: var(--emerald); }
.rank-row--lead .rank-row__num { color: var(--gold-deep); }
.rank-row--lead:hover { background: #fff; }
.rank-row--lead .link-arrow { color: var(--emerald-2); }
.rank-row--lead .link-arrow:hover { color: var(--gold-deep); }

.rank-row__num {
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 700; line-height: 1;
  color: var(--gold);
  text-align: center;
}
.rank-row__meta { min-width: 0; }
.rank-row__name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.3rem; letter-spacing: -.02em;
  color: var(--on-emerald);
  margin-bottom: .15rem;
}
.rank-row__bonus { font-size: .95rem; color: var(--on-emerald-2); }
.rank-row__scoring { text-align: right; }
.rank-row__score {
  font-family: var(--font-mono);
  font-size: 1.15rem; font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .3rem;
}
.rank-row__stat { font-size: .8rem; color: var(--on-emerald-2); }
.rank-row__actions { display: flex; align-items: center; gap: .9rem; }

.lead-flag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .6rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: .3rem .6rem;
  border-radius: var(--r-pill);
  margin-bottom: .4rem;
}

/* --------------------------------------------------------------------------
   magazine two column - sticky image beside a numbered running list
   -------------------------------------------------------------------------- */

.magazine {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.magazine__media { position: sticky; top: 96px; }
.magazine__media figure {
  margin: 0; border-radius: var(--r-card); overflow: hidden;
  aspect-ratio: 3 / 4.4; box-shadow: var(--lift);
  background: var(--paper-3);
}
.magazine__media img { width: 100%; height: 100%; object-fit: cover; }

.method { display: grid; gap: 0; }
.method__item {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--rule);
}
.method__item:first-child { border-top: 0; padding-top: 0; }
.method__num {
  font-family: var(--font-mono);
  font-size: .95rem; font-weight: 700;
  color: var(--gold-deep);
  padding-top: .3rem;
}
.method__item h3 { margin-bottom: .5rem; }
.method__item p { color: var(--ink-soft); margin: 0; }

/* --------------------------------------------------------------------------
   feature band - full bleed image with a panel sitting on the guides
   -------------------------------------------------------------------------- */

.feature-band { position: relative; overflow: hidden; background: var(--emerald-deep); }
.feature-band__bg { position: absolute; inset: 0; }
.feature-band__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.feature-band__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(4, 35, 24, .95) 30%, rgba(4, 35, 24, .35) 100%);
}
.feature-band .container { position: relative; z-index: 2; }
.feature-band__panel { padding-block: clamp(3.5rem, 7vw, 6rem); }
.feature-band__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }

.ticklist { list-style: none; margin: 1.75rem 0 0; padding: 0; display: grid; gap: .8rem; }
.ticklist li {
  display: block;
  position: relative;
  padding-left: 2.4rem;
  color: var(--on-emerald-2);
}
.ticklist li strong { color: var(--on-emerald); font-weight: 600; }
.ticklist li::before {
  content: '';
  position: absolute; left: 0; top: .1rem;
  width: 1.6rem; height: 1.6rem;
  border-radius: var(--r-pill);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f0a81c' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 13px 13px no-repeat,
    rgba(240, 168, 28, .16);
}

/* --------------------------------------------------------------------------
   art cards - borderless, art bleeds to the rounded edge
   -------------------------------------------------------------------------- */

.art-grid {
  display: grid;
  grid-template-columns: repeat(var(--cols, 4), minmax(0, 1fr));
  gap: 1.15rem;
}
.art-grid[data-cols="1"] { --cols: 1; }
.art-grid[data-cols="2"] { --cols: 2; }
.art-grid[data-cols="3"] { --cols: 3; }
.art-grid[data-cols="4"] { --cols: 4; }

.art-card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--lift);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.art-card:hover { transform: translateY(-5px); box-shadow: var(--lift-hi); }
.art-card__media { aspect-ratio: 16 / 11; background: var(--paper-3); overflow: hidden; }
.art-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.art-card:hover .art-card__media img { transform: scale(1.05); }
.art-card__body { padding: 1.35rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.art-card__body h3, .art-card__body h4 { margin-bottom: .5rem; }
.art-card__body p { color: var(--ink-soft); font-size: .98rem; }
.art-card__body .link-arrow { margin-top: auto; padding-top: 1rem; }

/* rewards rail - horizontal scroll snap, a different family to the grid */
.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(17.5rem, 1fr);
  gap: 1.15rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  scrollbar-width: thin;
}
.rail > * { scroll-snap-align: start; }
.rail::-webkit-scrollbar { height: 8px; }
.rail::-webkit-scrollbar-thumb { background: var(--rule-strong); border-radius: var(--r-pill); }
.rail-hint {
  font-family: var(--font-mono);
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: .5rem;
}

/* --------------------------------------------------------------------------
   review page - masthead, operator bar, verdict
   -------------------------------------------------------------------------- */

.masthead { padding: clamp(2.25rem, 4.5vw, 3.5rem) 0 0; }
.masthead__grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }

.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: .45rem;
  list-style: none; margin: 0 0 1.1rem; padding: 0;
  font-size: .84rem; color: var(--ink-faint);
}
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--gold-deep); }
.breadcrumb li + li::before { content: '/'; margin-right: .45rem; color: var(--rule-strong); }

.masthead h1 { margin-bottom: 1.2rem; }
.masthead__lede { color: var(--ink-soft); font-size: clamp(1.05rem, 1.4vw, 1.18rem); }

.byline { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.4rem; }
.byline__avatar {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: var(--r-pill); overflow: hidden; background: var(--emerald);
}
.byline__avatar img { width: 100%; height: 100%; object-fit: cover; }
.byline__avatar--fallback {
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
}
.byline__name { font-weight: 600; display: flex; align-items: center; gap: .35rem; }
.byline__check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border-radius: var(--r-pill);
  background: var(--emerald-2); color: #fff;
}
.byline__role { font-size: .84rem; color: var(--ink-faint); }

/* the score block sits opposite the headline, mono numerals */
.scorebox { background: var(--paper-2); border-radius: var(--r-card); padding: 1.5rem 1.6rem; display: grid; gap: 1rem; }
.scorebox__top { display: flex; align-items: center; gap: 1rem; }
.scorebox__value {
  font-family: var(--font-mono); font-weight: 700;
  font-size: clamp(2.4rem, 4.5vw, 3.2rem); line-height: 1;
  color: var(--emerald);
}
.scorebox__outof { font-size: .84rem; color: var(--ink-faint); }

.operator-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  background: var(--emerald);
  color: var(--on-emerald);
  border-radius: var(--r-card);
  padding: 1.3rem 1.5rem;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--lift);
}
.operator-bar__label {
  font-family: var(--font-mono); font-size: .64rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold);
  margin-bottom: .3rem;
}
.operator-bar__bonus {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.5rem); letter-spacing: -.02em;
  color: var(--on-emerald);
}

/* --- verdict -------------------------------------------------------------- */
.verdict-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3.5vw, 3rem); align-items: start; }

.ratings { display: grid; gap: 0; }
.rating-row {
  display: grid; grid-template-columns: 1fr auto auto;
  align-items: center; gap: 1rem;
  padding: .85rem 0;
  border-top: 1px solid var(--rule);
}
.rating-row:first-child { border-top: 0; }
.rating-row__label { color: var(--ink-soft); }
.rating-row__score { font-family: var(--font-mono); font-weight: 700; font-size: .95rem; color: var(--emerald); min-width: 2.4rem; text-align: right; }

.verdict-quote {
  background: var(--emerald);
  color: var(--on-emerald);
  border-radius: var(--r-card);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
}
.verdict-quote p {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  line-height: 1.35; letter-spacing: -.02em;
  color: var(--on-emerald);
  margin: 0;
}
.verdict-quote footer {
  margin-top: 1.4rem; padding-top: 1rem;
  border-top: 1px solid var(--rule-dark);
  font-size: .84rem; color: var(--on-emerald-2);
}
.verdict-note { margin-top: 1.5rem; font-size: .88rem; color: var(--ink-faint); }

/* --------------------------------------------------------------------------
   stars - css only, gold, no emoji
   -------------------------------------------------------------------------- */

.stars { display: inline-flex; gap: .08em; line-height: 1; }
.star { position: relative; display: inline-block; }
.star--full  { color: var(--gold); }
.star--empty { color: rgba(240, 168, 28, .28); }
.star--half  { color: rgba(240, 168, 28, .28); }
.star--half::before {
  content: attr(data-star);
  position: absolute; inset: 0; width: 50%; overflow: hidden;
  color: var(--gold);
}
.stars--sm { font-size: .85rem; }
.stars--lg { font-size: 1.5rem; }
.band--emerald .star--empty, .band--emerald .star--half { color: rgba(240, 168, 28, .32); }

/* --------------------------------------------------------------------------
   article body - generated content
   -------------------------------------------------------------------------- */

.article { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.article__section { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.article__section:last-child { margin-bottom: 0; }
.article h2 { margin-bottom: 1.25rem; }
.article h3 { margin: 0 0 .75rem; }
.article p { color: var(--ink-soft); }

.subcard {
  background: var(--paper-2);
  border-radius: var(--r-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  margin-top: 1.5rem;
}
.subcard > h3 { color: var(--emerald); }
.subcard > p:last-child { margin-bottom: 0; }

.prose-card {
  background: var(--paper-2);
  border-radius: var(--r-card);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
}

/* data table - grouped, no hairline under every row */
.data-table {
  margin: 1.5rem 0;
  border-radius: var(--r-card);
  overflow-x: auto;
  background: var(--paper);
  box-shadow: var(--lift);
}
.data-table table { width: 100%; min-width: 34rem; border-collapse: collapse; font-size: .96rem; }
.data-table thead th {
  text-align: left; padding: .95rem 1.4rem;
  font-family: var(--font-mono); font-size: .64rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--on-emerald);
  background: var(--emerald);
  white-space: nowrap;
}
.data-table tbody th, .data-table tbody td {
  padding: .9rem 1.4rem; text-align: left; vertical-align: top; line-height: 1.55;
  color: var(--ink-soft);
}
.data-table tbody th { font-weight: 600; color: var(--ink); }
.data-table tbody tr:nth-child(even) { background: var(--paper-2); }
.data-table--2col tbody th { width: 34%; }
.table-hint { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-faint); margin-top: .5rem; display: none; }

.intro-note { display: grid; grid-template-columns: 3.5rem 1fr; gap: 1.25rem; align-items: start; }
.intro-note__mark { height: 4px; background: var(--gold); border-radius: var(--r-pill); margin-top: .85rem; }
.intro-note p { color: var(--ink-soft); font-size: clamp(1.02rem, 1.3vw, 1.12rem); }

.figure-band { border-radius: var(--r-card); overflow: hidden; aspect-ratio: 21 / 9; margin: clamp(2rem, 4vw, 3rem) 0; box-shadow: var(--lift); }
.figure-band img { width: 100%; height: 100%; object-fit: cover; }

/* --------------------------------------------------------------------------
   footer - emerald, bigger logo, four columns
   -------------------------------------------------------------------------- */

.site-footer { background: var(--emerald); color: var(--on-emerald-2); margin-top: clamp(3rem, 6vw, 5rem); }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: clamp(1.75rem, 3.5vw, 3rem);
  padding: clamp(3rem, 5.5vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
}
.footer-brand .brand-mark { margin-bottom: 1.1rem; }
.footer-brand .brand-mark img { height: 62px; }
.footer-brand p { color: var(--on-emerald-2); font-size: .96rem; margin-bottom: 1.35rem; }

.footer-col h4 {
  font-family: var(--font-mono); font-size: .66rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer-col a { color: var(--on-emerald-2); font-size: .96rem; transition: color .2s var(--ease); }
.footer-col a:hover { color: #fff; }

.footer-safe { border-radius: var(--r-card); background: rgba(238, 245, 240, .07); padding: 1.4rem 1.5rem; }
.footer-safe h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  letter-spacing: -.02em; text-transform: none; color: var(--on-emerald); margin-bottom: .6rem; }
.footer-safe p { font-size: .92rem; margin-bottom: 1rem; }

.footer-bottom {
  padding: 1.5rem 0 2.25rem;
  border-top: 1px solid var(--rule-dark);
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; justify-content: space-between;
}
.footer-bottom p { margin: 0; font-size: .88rem; }
.footer-badges { display: flex; flex-wrap: wrap; gap: .5rem; }
.footer-badges span {
  font-family: var(--font-mono); font-size: .62rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--on-emerald);
  background: rgba(238, 245, 240, .1);
  padding: .4rem .7rem; border-radius: var(--r-pill);
}

/* --------------------------------------------------------------------------
   404
   -------------------------------------------------------------------------- */

.error-page { padding: clamp(4rem, 9vw, 7rem) 0; }
.error-code {
  font-family: var(--font-mono); font-weight: 700;
  font-size: clamp(3.5rem, 9vw, 6rem); line-height: 1;
  color: var(--gold); margin-bottom: 1rem;
}
.error-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.75rem; }

/* --------------------------------------------------------------------------
   motion - MOTION_INTENSITY 6, transform and opacity only
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .magazine__media { position: static; }
}

/* --------------------------------------------------------------------------
   responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1080px) {
  .footer-top { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-safe { grid-column: 1 / -1; }
  .nav-list a { padding-inline: .6rem; font-size: .9rem; }
  .brand-mark img { height: 40px; }
  .rank-row { grid-template-columns: 3.5rem 104px 1fr auto; gap: 1rem; }
  .rank-row__actions .btn { display: none; }
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .hero__media figure { aspect-ratio: 16 / 10; }
  .hero-pick { position: static; width: 100%; margin-top: -3rem; }

  .magazine { grid-template-columns: 1fr; }
  .magazine__media { position: static; }
  .magazine__media figure { aspect-ratio: 16 / 10; }

  .feature-band__inner { grid-template-columns: 1fr; }
  .masthead__grid { grid-template-columns: 1fr; }
  .verdict-grid { grid-template-columns: 1fr; }

  .art-grid[data-cols="3"], .art-grid[data-cols="4"] { --cols: 2; }
  .figures { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .table-hint { display: block; }

  .rank-row {
    grid-template-columns: 3rem 1fr;
    grid-template-areas: 'num brand' 'meta meta' 'score score' 'act act';
    row-gap: .75rem;
  }
  .rank-row__num     { grid-area: num; text-align: left; }
  .rank-row .logo-plate { grid-area: brand; }
  .rank-row__meta    { grid-area: meta; }
  .rank-row__scoring { grid-area: score; text-align: left; display: flex; align-items: center; gap: .75rem; }
  .rank-row__score   { margin: 0; }
  .rank-row__actions { grid-area: act; }
  .rank-row__actions .btn { display: inline-flex; }
  .rank-row:hover { transform: none; }

  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .brand-mark { margin-right: auto; }

  .primary-nav {
    position: fixed; inset: 72px 0 0 0;
    background: var(--emerald);
    padding: 1.5rem var(--gutter) 3rem;
    overflow-y: auto;
    display: block;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
  }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list > .nav-item > a {
    padding: 1rem .25rem; font-size: 1.1rem;
    border-bottom: 1px solid var(--rule-dark); border-radius: 0;
  }
  .nav-item--has-submenu::after { display: none; }

  .nav-submenu {
    position: static; transform: none; min-width: 0;
    grid-template-columns: 1fr; gap: 0;
    background: transparent; box-shadow: none;
    padding: 0 0 0 .75rem;
    max-height: 0; overflow: hidden;
    opacity: 1; visibility: visible;
    transition: max-height .35s var(--ease), padding .35s var(--ease);
  }
  .nav-item--has-submenu:hover .nav-submenu,
  .nav-item--has-submenu:focus-within .nav-submenu { transform: none; max-height: 0; padding-block: 0; }
  .nav-item--has-submenu.is-open .nav-submenu,
  .nav-item--has-submenu.is-open:hover .nav-submenu { transform: none; max-height: 34rem; padding-block: .4rem .6rem; }
  .nav-submenu a { color: var(--on-emerald-2) !important; padding: .7rem .5rem !important; }
  .nav-submenu a:hover { background: rgba(238, 245, 240, .08); color: #fff !important; }
}

@media (max-width: 620px) {
  body { font-size: 1rem; }
  .container { padding-inline: 1.15rem; }
  .art-grid[data-cols="2"], .art-grid[data-cols="3"], .art-grid[data-cols="4"] { --cols: 1; }
  .figures { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .operator-bar { grid-template-columns: 1fr; text-align: left; }
  .operator-bar .btn { width: 100%; }
  .method__item { grid-template-columns: 1fr; gap: .5rem; }
  .method__num { padding-top: 0; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .intro-note { grid-template-columns: 1fr; gap: .75rem; }
  .intro-note__mark { width: 3.5rem; margin-top: 0; }
  .rail { grid-auto-columns: minmax(15rem, 1fr); }
}

/* --------------------------------------------------------------------------
   spec cards - a two column "label to description" table promoted to tiles
   -------------------------------------------------------------------------- */

.spec-card {
  background: var(--paper);
  border-radius: var(--r-card);
  padding: 1.3rem 1.35rem;
  box-shadow: var(--lift);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.spec-card:hover { transform: translateY(-4px); box-shadow: var(--lift-hi); }
.spec-card h4 { color: var(--emerald); margin-bottom: .45rem; }
.spec-card p { color: var(--ink-soft); font-size: .96rem; margin: 0; }
.band--paper2 .spec-card, .subcard .spec-card { background: #fff; }

.grid-label {
  display: block;
  font-family: var(--font-mono);
  font-size: .64rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-deep);
  margin: 1.5rem 0 .85rem;
}

/* light-ground variant of the tick list, for generated article content */
.ticklist--light li { color: var(--ink-soft); }
.ticklist--light li strong { color: var(--ink); }
.ticklist--light li::before { background:
  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b57c07' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
  center / 13px 13px no-repeat, rgba(240, 168, 28, .18); }
