/* SpinEmpire Australia 8 — Pacific Jade · Editorial */
/* prefix: a8- · flex layout · Space Grotesk + DM Sans */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=DM+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

:root {
  --a8-bg:        #04090e;
  --a8-bg2:       #070f18;
  --a8-surface:   #091624;
  --a8-surface2:  #0d1e30;
  --a8-border:    #0f2338;
  --a8-border2:   #193548;

  --a8-jade:      #00c896;
  --a8-jade-lt:   #3fffc8;
  --a8-jade-dk:   #009e78;
  --a8-jade-gl:   rgba(0,200,150,.15);
  --a8-jade-gl2:  rgba(0,200,150,.07);

  --a8-violet:    #8b5cf6;
  --a8-violet-lt: #b899ff;
  --a8-violet-gl: rgba(139,92,246,.12);

  --a8-gold:      #f5c842;
  --a8-gold-lt:   #ffe272;
  --a8-gold-dk:   #c89a10;
  --a8-gold-gl:   rgba(245,200,66,.16);

  --a8-red:       #ff5f5f;
  --a8-red-gl:    rgba(255,95,95,.10);

  --a8-text:      #bde0d4;
  --a8-muted:     #426258;
  --a8-dim:       #152820;

  --a8-r:         8px;
  --a8-rm:        14px;
  --a8-rl:        24px;
  --a8-wrap:      1160px;
  --a8-sh:        0 24px 64px rgba(0,0,0,.7);
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--a8-bg);
  background-image:
    radial-gradient(ellipse 900px 500px at 5% 10%, rgba(0,200,150,.06) 0%, transparent 60%),
    radial-gradient(ellipse 700px 400px at 95% 40%, rgba(139,92,246,.05) 0%, transparent 55%);
  background-attachment: fixed;
  color: var(--a8-text);
  line-height: 1.72;
  overflow-x: clip;
}

/* ── Wrap ── */
.a8-wrap { max-width: var(--a8-wrap); margin: 0 auto; padding: 0 24px; }

/* ── Header ── */
.a8-hdr {
  position: sticky; top: 0; z-index: 100;
  background: rgba(4,9,14,.90);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--a8-border);
}
.a8-hdr__bar {
  max-width: var(--a8-wrap); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 20px; height: 64px;
}
.a8-logo { display: flex; align-items: center; flex-shrink: 0; }
.a8-logo img { height: 28px; width: auto; }
.a8-hdr-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--a8-jade);
  border: 1px solid rgba(0,200,150,.25); border-radius: 4px;
  padding: 3px 9px; flex-shrink: 0;
}
.a8-nav { display: flex; align-items: center; gap: 2px; margin: 0 auto; }
.a8-nav a {
  font-size: 14px; font-weight: 600; color: var(--a8-muted);
  padding: 6px 14px; border-radius: var(--a8-r);
  transition: color .15s, background .15s;
}
.a8-nav a:hover, .a8-nav a.active { color: #fff; background: rgba(0,200,150,.08); }
.a8-hdr__ctas { display: flex; align-items: center; gap: 10px; }

.a8-burger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px; padding: 6px;
  background: none; border: none; cursor: pointer; border-radius: var(--a8-r);
  flex-shrink: 0;
}
.a8-burger span { display: block; width: 100%; height: 2px; background: var(--a8-text); border-radius: 2px; transition: transform .25s, opacity .25s; }
.a8-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.a8-burger.is-open span:nth-child(2) { opacity: 0; }
.a8-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer */
.a8-veil { display: none; position: fixed; inset: 0; z-index: 149; background: rgba(0,0,0,.6); backdrop-filter: blur(4px); }
.a8-veil.on { display: block; }
.a8-drawer {
  position: fixed; top: 0; right: -100%; z-index: 150;
  width: min(320px, 92vw); height: 100%;
  background: var(--a8-surface); border-left: 1px solid var(--a8-border);
  display: flex; flex-direction: column;
  transition: right .28s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.a8-drawer.on { right: 0; }
.a8-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--a8-border); }
.a8-drawer__x { background: none; border: none; cursor: pointer; color: var(--a8-muted); font-size: 22px; line-height: 1; padding: 4px; border-radius: 6px; transition: color .15s; }
.a8-drawer__x:hover { color: var(--a8-text); }
.a8-drawer__nav { display: flex; flex-direction: column; padding: 16px 20px; border-bottom: 1px solid var(--a8-border); gap: 2px; }
.a8-drawer__nav a { font-size: 15px; font-weight: 600; color: var(--a8-muted); padding: 10px 12px; border-radius: var(--a8-r); transition: color .15s, background .15s; }
.a8-drawer__nav a:hover, .a8-drawer__nav a.active { color: var(--a8-jade); background: var(--a8-jade-gl2); }
.a8-drawer__btns { display: flex; flex-direction: column; gap: 10px; padding: 20px; }

/* ── Buttons ── */
.a8-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 26px; font-size: 14px; font-weight: 700;
  font-family: 'Space Grotesk', sans-serif; letter-spacing: .2px;
  border-radius: var(--a8-r); text-decoration: none;
  border: 2px solid transparent;
  transition: transform .15s, box-shadow .15s, opacity .15s;
  white-space: nowrap; cursor: pointer;
}
.a8-btn:hover { transform: translateY(-2px); }
.a8-btn--gold {
  background: linear-gradient(135deg, var(--a8-gold-dk), var(--a8-gold) 55%, var(--a8-gold-lt));
  color: #0a0700; box-shadow: 0 4px 20px var(--a8-gold-gl);
}
.a8-btn--gold:hover { box-shadow: 0 8px 32px rgba(245,200,66,.42); color: #0a0700; }
.a8-btn--jade {
  background: linear-gradient(135deg, var(--a8-jade-dk), var(--a8-jade) 55%, var(--a8-jade-lt));
  color: #001812; box-shadow: 0 4px 20px var(--a8-jade-gl);
}
.a8-btn--jade:hover { box-shadow: 0 8px 32px rgba(0,200,150,.38); color: #001812; }
.a8-btn--ghost { background: rgba(255,255,255,.05); color: var(--a8-text); border-color: var(--a8-border); }
.a8-btn--ghost:hover { background: rgba(255,255,255,.09); border-color: var(--a8-border2); }
.a8-btn--line { background: transparent; color: var(--a8-text); border-color: var(--a8-border2); }
.a8-btn--line:hover { border-color: var(--a8-jade); color: var(--a8-jade); }
.a8-btn--lg { padding: 15px 38px; font-size: 16px; border-radius: 10px; }
.a8-btn--sm { padding: 8px 16px; font-size: 13px; }
.a8-btn--w { width: 100%; }

/* ── HERO — full-width overlay ── */
.a8-hero {
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--a8-border);
}
.a8-hero > picture {
  position: absolute; inset: 0; z-index: 0; display: block;
}
.a8-hero > picture img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center top;
}
.a8-hero__ov {
  position: relative; z-index: 1;
  min-height: 500px;
  background: linear-gradient(to right,
    rgba(4,9,14,.97) 0%,
    rgba(4,9,14,.88) 30%,
    rgba(4,9,14,.60) 55%,
    rgba(4,9,14,.15) 75%,
    transparent 100%);
  display: flex; align-items: center;
  padding: 44px 0;
}
.a8-hero__wrap {
  width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 20px;
}
.a8-hero__box { max-width: 520px; }

.a8-hero__pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--a8-jade);
  border: 1px solid rgba(0,200,150,.22); border-radius: 5px;
  padding: 5px 12px; background: rgba(0,200,150,.07); margin-bottom: 22px;
}
.a8-hero__dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--a8-jade);
  box-shadow: 0 0 7px var(--a8-jade);
  animation: blink 2.2s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:.4; } }

.a8-hero__h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 3.6vw, 52px); font-weight: 700;
  color: #fff; line-height: 1.06; letter-spacing: -.025em;
  margin-bottom: 18px;
}
.a8-hero__h1 em { font-style: normal; color: var(--a8-jade); }
.a8-hero__h1 b { color: var(--a8-gold); font-weight: 700; }
.a8-hero__p {
  font-size: 15.5px; color: var(--a8-muted); line-height: 1.70;
  margin-bottom: 30px; max-width: 420px;
}
.a8-hero__btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

/* Verdict strip inside hero */
.a8-hero__verdict {
  display: flex; gap: 0; flex-wrap: wrap;
  border: 1px solid var(--a8-border); border-radius: var(--a8-rm);
  overflow: hidden;
}
.a8-hv {
  flex: 1; min-width: 90px;
  padding: 12px 14px;
  border-right: 1px solid var(--a8-border);
  display: flex; flex-direction: column; gap: 2px;
}
.a8-hv:last-child { border-right: none; }
.a8-hv__label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--a8-muted); }
.a8-hv__val { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; color: #fff; }
.a8-hv__val.jade { color: var(--a8-jade); }
.a8-hv__val.gold { color: var(--a8-gold); }

/* ── Chapter marker ── */
.a8-chapter {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
}
.a8-chapter__num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 72px; font-weight: 700; line-height: 1;
  color: var(--a8-border2); letter-spacing: -.04em;
  flex-shrink: 0; user-select: none;
}
.a8-chapter__meta { display: flex; flex-direction: column; gap: 4px; }
.a8-chapter__tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--a8-jade);
}
.a8-chapter__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 2.8vw, 40px); font-weight: 700;
  color: #fff; line-height: 1.10; letter-spacing: -.022em;
}

/* ── Sections ── */
.a8-sec { padding: 88px 0; }
.a8-sec--sm { padding: 56px 0; }
.a8-sec--stripe {
  background: var(--a8-surface);
  border-top: 1px solid var(--a8-border);
  border-bottom: 1px solid var(--a8-border);
}
.a8-sec--jade-stripe {
  background:
    linear-gradient(135deg, rgba(0,200,150,.06) 0%, rgba(0,200,150,.02) 50%, transparent 100%),
    var(--a8-bg2);
  border-top: 1px solid rgba(0,200,150,.10);
  border-bottom: 1px solid rgba(0,200,150,.10);
}
.a8-sec--dark {
  background: var(--a8-bg2);
  border-top: 1px solid var(--a8-border);
  border-bottom: 1px solid var(--a8-border);
}

/* ── Lead text ── */
.a8-lead {
  font-size: 18px; font-weight: 400; font-style: italic; color: var(--a8-text);
  line-height: 1.78; max-width: 700px; margin-bottom: 40px;
  border-left: 3px solid var(--a8-jade); padding-left: 22px;
}
.a8-body { font-size: 15px; color: var(--a8-muted); line-height: 1.80; }
.a8-body p { margin-bottom: 16px; }
.a8-body p:last-child { margin-bottom: 0; }
.a8-h3 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(17px,2vw,22px); font-weight: 700; color: #fff; margin-bottom: 10px; }
p { color: var(--a8-muted); margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }
a { color: var(--a8-jade); text-decoration: none; }
a:hover { color: var(--a8-jade-lt); }

/* ── Bento grid ── */
.a8-bento { display: flex; flex-wrap: wrap; gap: 16px; }
.a8-bento-tile {
  background: var(--a8-surface); border: 1px solid var(--a8-border);
  border-radius: var(--a8-rm); padding: 28px;
  transition: border-color .2s, transform .2s;
}
.a8-bento-tile:hover { border-color: rgba(0,200,150,.22); transform: translateY(-2px); }
.a8-bento-tile--wide { flex: 2; min-width: 280px; }
.a8-bento-tile--narrow { flex: 1; min-width: 210px; }
.a8-bento-tile--accent { border-top: 3px solid var(--a8-jade); }
.a8-bento-tile--gold-top { border-top: 3px solid var(--a8-gold); }
.a8-bento-tile--violet-top { border-top: 3px solid var(--a8-violet); }

.a8-bento-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 2.2vw, 34px); font-weight: 700; line-height: 1;
  letter-spacing: -.03em; white-space: nowrap;
}
.a8-bento-num.jade { color: var(--a8-jade); }
.a8-bento-num.gold { color: var(--a8-gold); }
.a8-bento-num.violet { color: var(--a8-violet-lt); }
.a8-bento-lbl { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--a8-muted); margin-top: 6px; }
.a8-bento-desc { font-size: 14px; color: var(--a8-muted); margin-top: 10px; line-height: 1.65; }

/* ── Horizontal bonus stepper ── */
.a8-stepper { display: flex; gap: 0; position: relative; margin: 36px 0; }
.a8-stepper::before {
  content: ''; position: absolute; top: 28px; left: 28px; right: 28px; height: 2px;
  background: linear-gradient(90deg, var(--a8-jade), var(--a8-violet) 50%, var(--a8-gold));
  z-index: 0;
}
.a8-step {
  flex: 1; min-width: 200px; display: flex; flex-direction: column;
  align-items: center; gap: 16px; padding: 0 12px; position: relative; z-index: 1;
}
.a8-step__dot {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 700;
  background: var(--a8-surface); border: 2px solid var(--a8-border2);
  flex-shrink: 0;
}
.a8-step--1 .a8-step__dot { color: var(--a8-jade); border-color: var(--a8-jade); background: rgba(0,200,150,.08); }
.a8-step--2 .a8-step__dot { color: var(--a8-violet-lt); border-color: var(--a8-violet); background: var(--a8-violet-gl); }
.a8-step--3 .a8-step__dot { color: var(--a8-jade); border-color: var(--a8-jade); background: rgba(0,200,150,.08); }
.a8-step--4 .a8-step__dot { color: var(--a8-gold-lt); border-color: var(--a8-gold); background: var(--a8-gold-gl); }
.a8-step__card {
  background: var(--a8-surface2); border: 1px solid var(--a8-border);
  border-radius: var(--a8-rm); padding: 18px; text-align: center; width: 100%;
  transition: border-color .2s;
}
.a8-step__card:hover { border-color: rgba(0,200,150,.22); }
.a8-step__match {
  font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700;
  color: #fff; margin-bottom: 4px;
}
.a8-step--2 .a8-step__match { color: var(--a8-violet-lt); }
.a8-step--4 .a8-step__match { color: var(--a8-gold-lt); }
.a8-step__upto { font-size: 12px; color: var(--a8-jade); font-weight: 700; margin-bottom: 8px; }
.a8-step--2 .a8-step__upto { color: var(--a8-violet-lt); }
.a8-step--4 .a8-step__upto { color: var(--a8-gold-lt); }
.a8-step__tags { display: flex; flex-wrap: wrap; gap: 5px; justify-content: center; margin-top: 10px; }
.a8-tag {
  font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 4px;
  background: var(--a8-jade-gl); border: 1px solid rgba(0,200,150,.18); color: var(--a8-jade-lt);
}
.a8-tag--v { background: var(--a8-violet-gl); border-color: rgba(139,92,246,.20); color: var(--a8-violet-lt); }
.a8-tag--g { background: var(--a8-gold-gl); border-color: rgba(245,200,66,.20); color: var(--a8-gold-lt); }
.a8-tag--dim { background: rgba(255,255,255,.04); border-color: var(--a8-border2); color: var(--a8-muted); }

/* ── Mosaic games ── */
.a8-mosaic { display: flex; flex-wrap: wrap; gap: 10px; }
.a8-mosaic-item {
  border-radius: var(--a8-rm); overflow: hidden;
  border: 1px solid var(--a8-border); position: relative;
  cursor: pointer; flex-shrink: 0;
  transition: transform .2s, border-color .2s;
}
.a8-mosaic-item:hover { transform: scale(1.03); border-color: rgba(0,200,150,.40); }
.a8-mosaic-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.a8-mosaic-item--lg { width: 200px; height: 200px; }
.a8-mosaic-item--md { width: 140px; height: 190px; }
.a8-mosaic-item--sm { width: 120px; height: 120px; }

/* ── Provider pills ── */
.a8-provs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.a8-prov {
  background: var(--a8-surface); border: 1px solid var(--a8-border);
  border-radius: var(--a8-r); padding: 10px 18px;
  display: flex; align-items: center; transition: border-color .2s, transform .2s;
}
.a8-prov:hover { border-color: rgba(0,200,150,.28); transform: translateY(-1px); }
.a8-prov img { height: 20px; width: auto; max-width: 90px; object-fit: contain; opacity: .45; transition: opacity .2s; display: block; }
.a8-prov:hover img { opacity: .85; }

/* ── Fact row ── */
.a8-facts { display: flex; flex-direction: column; }
.a8-fact {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 0; border-bottom: 1px solid var(--a8-border);
  gap: 16px;
}
.a8-fact:first-child { border-top: 1px solid var(--a8-border); }
.a8-fact__k { font-size: 13.5px; color: var(--a8-muted); font-weight: 500; }
.a8-fact__v { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; color: #fff; text-align: right; }
.a8-fact__v.jade { color: var(--a8-jade); }
.a8-fact__v.gold { color: var(--a8-gold); }

/* ── Steps list ── */
.a8-steps { display: flex; flex-direction: column; gap: 12px; }
.a8-step-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px; background: var(--a8-surface);
  border: 1px solid var(--a8-border); border-radius: var(--a8-r);
  transition: border-color .2s;
}
.a8-step-item:hover { border-color: rgba(0,200,150,.20); }
.a8-step-n {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: var(--a8-jade-gl); border: 1.5px solid rgba(0,200,150,.35);
  color: var(--a8-jade); font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
}
.a8-step-body p { margin: 0; font-size: 14px; }
.a8-step-body strong { color: #fff; display: block; margin-bottom: 3px; font-size: 14.5px; font-weight: 700; }

/* ── Callout ── */
.a8-note {
  padding: 16px 20px; border-left: 3px solid var(--a8-jade);
  background: var(--a8-jade-gl2); border-radius: 0 var(--a8-r) var(--a8-r) 0;
  font-size: 14px; color: var(--a8-muted); line-height: 1.70; margin: 20px 0;
}
.a8-note strong { color: var(--a8-jade-lt); }
.a8-note--v { border-left-color: var(--a8-violet); background: var(--a8-violet-gl); }
.a8-note--v strong { color: var(--a8-violet-lt); }
.a8-note--r { border-left-color: var(--a8-red); background: var(--a8-red-gl); }
.a8-note--r strong { color: #ff9090; }

/* ── Table ── */
.a8-tbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--a8-rm); border: 1px solid var(--a8-border); }
.a8-tbl { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.a8-tbl th { text-align: left; padding: 12px 16px; font-size: 10.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--a8-jade); background: var(--a8-surface); border-bottom: 1px solid var(--a8-border); }
.a8-tbl td { padding: 13px 16px; color: var(--a8-text); border-bottom: 1px solid var(--a8-border); }
.a8-tbl tr:last-child td { border-bottom: none; }
.a8-tbl tr:nth-child(odd) td { background: var(--a8-surface); }
.a8-tbl tr:nth-child(even) td { background: var(--a8-bg2); }
.a8-tbl td:first-child { font-weight: 700; color: #fff; }

/* ── Info cards ── */
.a8-info-row { display: flex; flex-wrap: wrap; gap: 14px; }
.a8-ic {
  flex: 1; min-width: 180px;
  background: var(--a8-surface2); border: 1px solid var(--a8-border);
  border-radius: var(--a8-r); padding: 18px;
  display: flex; flex-direction: column; gap: 5px;
}
.a8-ic__lbl { font-size: 10.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--a8-muted); }
.a8-ic__val { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 700; color: var(--a8-jade); }
.a8-ic__note { font-size: 12.5px; color: var(--a8-muted); }
.a8-ic__icon { margin-bottom: 10px; }
.a8-ic__h { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; color: #fff; margin: 0 0 6px; }
.a8-ic__p { font-size: 13.5px; color: var(--a8-muted); line-height: 1.6; margin: 0; }

/* ── CTA banner ── */
.a8-cta {
  background: linear-gradient(135deg, rgba(0,200,150,.09) 0%, rgba(139,92,246,.06) 60%, rgba(0,200,150,.07) 100%);
  border: 1px solid rgba(0,200,150,.16); border-radius: var(--a8-rl);
  padding: 56px 48px; text-align: center; position: relative; overflow: hidden;
}
.a8-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 300px at 50% 0%, rgba(0,200,150,.07), transparent 70%);
  pointer-events: none;
}
.a8-cta__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px,3vw,38px); font-weight: 700; color: #fff;
  margin-bottom: 12px; position: relative;
}
.a8-cta__sub { font-size: 16px; color: var(--a8-muted); margin-bottom: 28px; position: relative; }
.a8-cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── FAQ ── */
.a8-faq { display: flex; flex-direction: column; }
.a8-faq-item { border-bottom: 1px solid var(--a8-border); }
.a8-faq-item:first-child { border-top: 1px solid var(--a8-border); }
.a8-faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 19px 0; cursor: pointer;
  font-family: 'Space Grotesk', sans-serif; font-size: 15.5px; font-weight: 600;
  color: var(--a8-text); background: none; border: none; width: 100%; text-align: left; gap: 16px;
  transition: color .15s;
}
.a8-faq-q:hover { color: var(--a8-jade); }
.a8-faq-ico {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  border: 1.5px solid var(--a8-border2);
  display: flex; align-items: center; justify-content: center;
  transition: transform .24s, border-color .24s, background .24s;
}
.a8-faq-item.open .a8-faq-ico { transform: rotate(45deg); border-color: var(--a8-jade); background: var(--a8-jade-gl); }
.a8-faq-a { overflow: hidden; max-height: 0; transition: max-height .34s cubic-bezier(.4,0,.2,1); }
.a8-faq-a-in { font-size: 14.5px; color: var(--a8-muted); line-height: 1.80; padding-bottom: 18px; }
.a8-faq-item.open .a8-faq-a { max-height: 500px; }

/* ── Page hero (inner) ── */
.a8-pg-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--a8-border); }
.a8-pg-hero picture { display: block; }
.a8-pg-hero img { width: 100%; height: auto; display: block; max-height: 400px; object-fit: cover; object-position: center top; }
.a8-pg-hero__ov {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(4,9,14,.92) 0%, rgba(4,9,14,.65) 55%, rgba(4,9,14,.22) 100%);
  display: flex; flex-direction: column; justify-content: center;
  align-items: stretch; padding: 48px 0;
}
.a8-pg-hero .a8-wrap { width: 100%; display: flex; flex-direction: column; align-items: flex-start; }
.a8-pg-hero__tag { font-family: 'Space Grotesk', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--a8-jade); margin-bottom: 12px; }
.a8-pg-hero__h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(24px,3.5vw,48px); font-weight: 700; color: #fff; line-height: 1.08; letter-spacing: -.022em; }
.a8-pg-hero__sub { font-size: 15.5px; color: var(--a8-muted); margin-top: 12px; max-width: 620px; }
.a8-crumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--a8-muted); margin-bottom: 20px; }
.a8-crumb a { color: var(--a8-muted); }
.a8-crumb a:hover { color: var(--a8-jade); }
.a8-crumb span { color: var(--a8-dim); }

/* ── Split section (50/50) ── */
.a8-split { display: flex; gap: 64px; align-items: flex-start; }
.a8-split__main { flex: 1; min-width: 0; }
.a8-split__aside { flex: 0 0 320px; }
.a8-split--rev { flex-direction: row-reverse; }

/* Aside nav box */
.a8-aside-box {
  background: var(--a8-surface); border: 1px solid var(--a8-border);
  border-top: 3px solid var(--a8-jade); border-radius: var(--a8-rm); padding: 24px;
  position: sticky; top: 84px;
  display: flex; flex-direction: column; gap: 10px;
}
.a8-aside-box h4 { font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--a8-muted); margin-bottom: 4px; }
.a8-aside-box a { font-size: 13.5px; color: var(--a8-muted); display: block; padding: 7px 0; border-bottom: 1px solid var(--a8-border); transition: color .15s; }
.a8-aside-box a:last-of-type { border-bottom: none; }
.a8-aside-box a:hover { color: var(--a8-jade); }

/* ── Footer ── */
.a8-foot {
  background: var(--a8-surface);
  border-top: 1px solid var(--a8-border);
  padding: 56px 0 0;
}
.a8-foot__grid { display: flex; flex-wrap: wrap; gap: 40px; margin-bottom: 48px; }
.a8-foot__brand { flex: 0 0 200px; }
.a8-foot__tagline { font-size: 13px; color: #93b3a7; margin-top: 12px; line-height: 1.65; }
.a8-foot__col { flex: 1; min-width: 120px; }
.a8-foot__col h5 { font-family: 'Space Grotesk', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #7f9d91; margin-bottom: 14px; }
.a8-foot__col a { display: block; font-size: 13.5px; color: #9cbbb0; margin-bottom: 9px; transition: color .15s; }
.a8-foot__col a:hover { color: var(--a8-jade); }

.a8-foot__reviews { border-top: 1px solid var(--a8-border); padding: 20px 0; }
.a8-foot__reviews-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 5px 18px; }
.a8-foot__reviews-grid a { display: flex; align-items: center; opacity: .55; transition: opacity .2s; }
.a8-foot__reviews-grid a:hover { opacity: .9; }
.a8-foot__reviews-grid img { height: 20px; width: auto; }

.a8-foot__bottom { border-top: 1px solid var(--a8-border); padding: 18px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.a8-foot__copy { font-size: 12px; color: #8aa89c; }
.a8-foot__age { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; border: 2px solid #35564a; font-size: 10px; font-weight: 800; color: #a7c4b8; font-family: 'Space Grotesk', sans-serif; }
.a8-foot__disc { font-size: 12px; color: #86a498; line-height: 1.70; padding: 18px 0; border-top: 1px solid var(--a8-border); }

/* ── Prose ── */
.a8-prose { font-size: 15px; color: var(--a8-muted); line-height: 1.80; }
.a8-prose h3 { font-family: 'Space Grotesk', sans-serif; font-size: 19px; font-weight: 700; color: #fff; margin: 32px 0 10px; }
.a8-prose h3:first-child { margin-top: 0; }
.a8-prose p { margin-bottom: 14px; }
.a8-prose ul { padding-left: 18px; margin-bottom: 14px; display: flex; flex-direction: column; gap: 5px; }
.a8-prose strong { color: var(--a8-text); }
.a8-prose a { color: var(--a8-jade); }

/* Highlight cards row */
.a8-hl-row { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0; }
.a8-hl {
  flex: 1; min-width: 140px; background: var(--a8-surface2);
  border: 1px solid var(--a8-border); border-radius: var(--a8-r);
  padding: 18px; text-align: center; transition: border-color .2s;
}
.a8-hl:hover { border-color: rgba(0,200,150,.22); }
.a8-hl__v { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; color: var(--a8-jade); display: block; line-height: 1; }
.a8-hl__l { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--a8-muted); margin-top: 6px; display: block; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .a8-hero__ov { min-height: 420px; }
  .a8-hero__box { max-width: 100%; }
  .a8-stepper { flex-wrap: wrap; }
  .a8-stepper::before { display: none; }
  .a8-step { min-width: 45%; }
  .a8-split { flex-direction: column; gap: 36px; }
  .a8-split--rev { flex-direction: column; }
  .a8-split__aside { flex: none; }
  .a8-aside-box { position: static; }
}
@media (max-width: 900px) {
  .a8-nav { display: none; }
  .a8-hdr__ctas { display: none; }
  .a8-burger { display: flex; margin-left: auto; }
  .a8-foot__brand { flex: none; width: 100%; }
  .a8-cta { padding: 40px 22px; }
}
@media (max-width: 640px) {
  .a8-sec { padding: 60px 0; }
  .a8-hero__ov { min-height: 360px; padding: 32px 0; }
  .a8-chapter__num { font-size: 48px; }
  .a8-step { min-width: 100%; }
  .a8-mosaic-item--lg { width: 160px; height: 160px; }
  .a8-mosaic-item--md { width: 120px; height: 160px; }
  .a8-mosaic-item--sm { width: 100px; height: 100px; }
  .a8-bento-tile--wide, .a8-bento-tile--narrow { flex: none; width: 100%; }
}

/* ── Legal pages layout ── */
.a8-section { padding: 72px 0; }

.a8-page-hero {
  border-bottom: 1px solid var(--a8-border);
  padding: 56px 0 48px;
  background: linear-gradient(160deg, rgba(0,200,150,.06) 0%, transparent 60%);
}
.a8-page-hero__label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--a8-jade); margin-bottom: 14px;
}
.a8-page-hero__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 3vw, 40px); font-weight: 700;
  color: #fff; line-height: 1.12; letter-spacing: -.02em;
  margin-bottom: 14px;
}
.a8-page-hero__sub { font-size: 15px; color: var(--a8-muted); max-width: 600px; line-height: 1.65; }

.a8-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--a8-muted); margin-bottom: 20px; }
.a8-breadcrumb a { color: var(--a8-muted); }
.a8-breadcrumb a:hover { color: var(--a8-jade); }

.a8-two-col { display: flex; gap: 56px; align-items: flex-start; }
.a8-two-col__main { flex: 1; min-width: 0; }
.a8-two-col__aside { flex: 0 0 260px; }

.a8-sticky-aside {
  background: var(--a8-surface); border: 1px solid var(--a8-border);
  border-top: 3px solid var(--a8-jade); border-radius: var(--a8-rm);
  padding: 22px; position: sticky; top: 84px;
  display: flex; flex-direction: column; gap: 2px;
}
.a8-sticky-aside h4 {
  font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--a8-muted); margin-bottom: 10px;
}
.a8-sticky-aside a {
  font-size: 13.5px; color: var(--a8-muted); display: block;
  padding: 7px 0; border-bottom: 1px solid var(--a8-border); transition: color .15s;
}
.a8-sticky-aside a:last-of-type { border-bottom: none; }
.a8-sticky-aside a:hover { color: var(--a8-jade); }

.a6-prose { font-size: 15px; color: var(--a8-muted); line-height: 1.80; }
.a6-prose h3 { font-family: 'Space Grotesk', sans-serif; font-size: 19px; font-weight: 700; color: #fff; margin: 32px 0 10px; }
.a6-prose h3:first-child { margin-top: 0; }
.a6-prose p { margin-bottom: 14px; }
.a6-prose ul, .a6-prose ol { padding-left: 20px; margin-bottom: 14px; display: flex; flex-direction: column; gap: 5px; }
.a6-prose strong { color: var(--a8-text); }
.a6-prose a { color: var(--a8-jade); }

.a8-table-wrap { overflow-x: auto; margin: 20px 0; border-radius: var(--a8-r); border: 1px solid var(--a8-border); }
.a8-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.a8-table thead tr { background: rgba(0,200,150,.08); }
.a8-table th { font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--a8-muted); padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--a8-border); }
.a8-table td { padding: 11px 16px; color: var(--a8-muted); border-bottom: 1px solid var(--a8-border); vertical-align: top; }
.a8-table tbody tr:last-child td { border-bottom: none; }
.a8-table tbody tr:hover { background: rgba(255,255,255,.02); }

@media (max-width: 960px) {
  .a8-two-col { flex-direction: column; gap: 36px; }
  .a8-two-col__aside { flex: none; width: 100%; }
  .a8-sticky-aside { position: static; }
}
@media (max-width: 640px) {
  .a8-section { padding: 48px 0; }
  .a8-page-hero { padding: 40px 0 32px; }
}
