/* SpinEmpire Australia 6 — Midnight Copper */
/* prefix: a6- · flex layout · Outfit + Inter */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --a6-bg:          #06080f;
  --a6-bg-alt:      #090c16;
  --a6-surface:     #0d1120;
  --a6-surface-2:   #111628;
  --a6-border:      #1c2240;
  --a6-border-lt:   #283160;

  --a6-copper:      #e8924a;
  --a6-copper-lt:   #ffb478;
  --a6-copper-dk:   #b86830;
  --a6-copper-glow: rgba(232,146,74,.18);
  --a6-copper-glow-lg: rgba(232,146,74,.10);

  --a6-gold:        #f5c842;
  --a6-gold-lt:     #ffe070;
  --a6-gold-dk:     #c99a10;
  --a6-gold-glow:   rgba(245,200,66,.18);

  --a6-sky:         #38bdf8;
  --a6-sky-glow:    rgba(56,189,248,.14);

  --a6-text:        #dce8ff;
  --a6-text-muted:  #6080b0;
  --a6-text-dim:    #283050;

  --a6-radius:      8px;
  --a6-radius-md:   14px;
  --a6-radius-lg:   24px;
  --a6-shadow:      0 24px 64px rgba(0,0,0,.7);
  --a6-wrap:        1180px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(ellipse 900px 500px at 80% -8%, rgba(232,146,74,.10), transparent 60%),
    radial-gradient(ellipse 700px 420px at 5% 12%, rgba(56,189,248,.07), transparent 55%),
    var(--a6-bg);
  background-attachment: fixed;
  color: var(--a6-text);
  line-height: 1.72;
  overflow-x: clip;
}

/* ── Layout ── */
.a6-wrap { max-width: var(--a6-wrap); margin: 0 auto; padding: 0 22px; }
.a6-section { padding: 96px 0; }
.a6-section--alt {
  background: linear-gradient(180deg, var(--a6-bg-alt) 0%, rgba(9,12,22,.5) 100%);
  border-top: 1px solid var(--a6-border);
  border-bottom: 1px solid var(--a6-border);
}
.a6-section--tight { padding: 64px 0; }
.a6-section--dark {
  background: var(--a6-surface);
  border-top: 1px solid var(--a6-border);
  border-bottom: 1px solid var(--a6-border);
}

/* ── Typography ── */
.a6-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--a6-copper);
  margin-bottom: 14px;
}
.a6-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: linear-gradient(90deg, var(--a6-copper), transparent);
  border-radius: 2px;
}

.a6-h2 {
  font-family: 'Outfit', Georgia, sans-serif;
  font-size: clamp(26px, 3.2vw, 46px); font-weight: 800;
  color: #fff; line-height: 1.08; letter-spacing: -.025em; margin-bottom: 18px;
}
.a6-h3 {
  font-family: 'Outfit', Georgia, sans-serif;
  font-size: clamp(17px, 2vw, 22px); font-weight: 700; color: #fff; margin-bottom: 10px;
}
.a6-lead {
  font-size: 16.5px; line-height: 1.82; color: var(--a6-text-muted);
  max-width: 680px; margin-bottom: 36px;
}
p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }
a { color: var(--a6-copper); text-decoration: none; }
a:hover { color: var(--a6-copper-lt); }

/* ── Buttons ── */
.a6-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; font-size: 14.5px; font-weight: 700;
  font-family: 'Outfit', sans-serif; letter-spacing: .3px;
  border-radius: 8px; text-decoration: none;
  border: 2px solid transparent;
  transition: transform .15s, box-shadow .15s, background .15s, color .15s;
  white-space: nowrap; cursor: pointer;
}
.a6-btn:hover { transform: translateY(-2px); }

.a6-btn--copper {
  background: linear-gradient(135deg, var(--a6-copper) 0%, var(--a6-copper-lt) 100%);
  color: #1a0a00; border-color: transparent;
  box-shadow: 0 4px 22px var(--a6-copper-glow);
}
.a6-btn--copper:hover {
  box-shadow: 0 8px 30px rgba(232,146,74,.40); color: #1a0a00;
}

.a6-btn--gold {
  background: linear-gradient(135deg, var(--a6-gold-dk) 0%, var(--a6-gold) 50%, var(--a6-gold-lt) 100%);
  color: #0a0700; border-color: transparent;
  box-shadow: 0 4px 22px var(--a6-gold-glow);
}
.a6-btn--gold:hover { box-shadow: 0 8px 30px rgba(245,200,66,.45); color: #0a0700; }

.a6-btn--outline {
  background: transparent; color: var(--a6-text);
  border-color: var(--a6-border-lt);
}
.a6-btn--outline:hover { border-color: var(--a6-copper); color: var(--a6-copper); }

.a6-btn--ghost {
  background: rgba(255,255,255,.05); color: var(--a6-text);
  border-color: var(--a6-border);
}
.a6-btn--ghost:hover { background: rgba(255,255,255,.09); border-color: var(--a6-border-lt); }

.a6-btn--lg  { padding: 16px 40px; font-size: 16px; border-radius: 10px; }
.a6-btn--sm  { padding: 8px 18px; font-size: 13px; }
.a6-btn--full { width: 100%; }

/* ── Header ── */
.a6-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,8,15,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--a6-border);
}
.a6-header__bar {
  max-width: var(--a6-wrap); margin: 0 auto; padding: 0 22px;
  display: flex; align-items: center; gap: 24px; height: 66px;
}
.a6-logo { display: flex; align-items: center; flex-shrink: 0; }
.a6-logo img { height: 30px; }

.a6-nav {
  display: flex; align-items: center; gap: 2px; margin: 0 auto;
}
.a6-nav a {
  font-size: 14px; font-weight: 600; color: var(--a6-text-muted);
  padding: 7px 14px; border-radius: var(--a6-radius);
  transition: color .15s, background .15s;
}
.a6-nav a:hover, .a6-nav a.active {
  color: var(--a6-text); background: rgba(255,255,255,.06);
}

.a6-header__actions { display: flex; align-items: center; gap: 10px; }

.a6-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(--a6-radius);
  flex-shrink: 0;
}
.a6-burger span {
  display: block; width: 100%; height: 2px; background: var(--a6-text);
  border-radius: 2px; transition: transform .25s, opacity .25s;
}
.a6-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.a6-burger.is-open span:nth-child(2) { opacity: 0; }
.a6-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Drawer ── */
.a6-overlay {
  display: none; position: fixed; inset: 0; z-index: 149;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
}
.a6-overlay.is-open { display: block; }

.a6-drawer {
  position: fixed; top: 0; right: -100%; z-index: 150;
  width: min(340px, 92vw); height: 100%;
  background: var(--a6-surface); border-left: 1px solid var(--a6-border);
  display: flex; flex-direction: column;
  transition: right .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.a6-drawer.is-open { right: 0; }

.a6-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid var(--a6-border);
}
.a6-drawer__close {
  background: none; border: none; cursor: pointer;
  color: var(--a6-text-muted); font-size: 22px; line-height: 1;
  padding: 4px; border-radius: 6px; transition: color .15s;
}
.a6-drawer__close:hover { color: var(--a6-text); }

.a6-drawer__nav {
  display: flex; flex-direction: column; padding: 20px;
  border-bottom: 1px solid var(--a6-border);
  align-items: center;
}
.a6-drawer__nav a {
  font-size: 16px; font-weight: 600; color: var(--a6-text-muted);
  padding: 12px 14px; border-radius: var(--a6-radius);
  transition: color .15s, background .15s;
  width: 100%; text-align: center;
}
.a6-drawer__nav a:hover, .a6-drawer__nav a.active {
  color: var(--a6-text); background: rgba(255,255,255,.06);
}

.a6-drawer__btns {
  display: flex; flex-direction: column; gap: 10px; padding: 20px;
}

/* ── Hero ── */
.a6-hero { position: relative; overflow: hidden; background: var(--a6-bg); }
.a6-hero picture { display: block; }
.a6-hero img {
  width: 100%; height: auto; display: block;
  max-height: 560px; object-fit: cover; object-position: center top;
}
.a6-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(6,8,15,.84) 0%,
    rgba(6,8,15,.55) 50%,
    rgba(6,8,15,.12) 100%
  );
  display: flex; align-items: center; justify-content: center;
  padding: 40px 0;
}
.a6-hero__overlay .a6-wrap {
  width: 100%;
  display: flex; flex-direction: column; align-items: flex-start;
}

.a6-hero__kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--a6-copper);
  margin-bottom: 18px;
  padding: 6px 14px; background: rgba(232,146,74,.10);
  border: 1px solid rgba(232,146,74,.25); border-radius: 4px;
}
.a6-hero__kicker-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--a6-copper);
  box-shadow: 0 0 8px var(--a6-copper);
  animation: a6pulse 2s ease-in-out infinite;
}
@keyframes a6pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.6; transform:scale(1.4); }
}

.a6-hero__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(30px, 4.8vw, 62px); font-weight: 900;
  line-height: 1.04; letter-spacing: -.03em; color: #fff;
  margin-bottom: 16px; max-width: 640px;
}
.a6-hero__title em { color: var(--a6-copper); font-style: normal; }
.a6-hero__title strong { color: var(--a6-gold); }

.a6-hero__sub {
  font-size: 15.5px; color: rgba(220,232,255,.75);
  margin-bottom: 28px; line-height: 1.65; max-width: 480px;
}

.a6-hero__chips {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px;
}
.a6-hero__chip {
  font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 600;
  background: rgba(232,146,74,.10); border: 1px solid rgba(232,146,74,.28);
  color: var(--a6-copper-lt); padding: 5px 13px; border-radius: 4px;
}

.a6-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Stats strip ── */
.a6-stats {
  background: var(--a6-surface);
  border-top: 1px solid var(--a6-border);
  border-bottom: 1px solid var(--a6-border);
}
.a6-stats__grid { display: flex; flex-wrap: wrap; }
.a6-stat {
  flex: 1; min-width: 140px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 28px 20px; gap: 4px;
  border-right: 1px solid var(--a6-border);
  position: relative; overflow: hidden;
}
.a6-stat:last-child { border-right: none; }
.a6-stat::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, transparent, var(--a6-copper), transparent);
  transform: scaleX(0); transition: transform .3s;
}
.a6-stat:hover::before { transform: scaleX(1); }
.a6-stat__num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 3vw, 38px); font-weight: 900;
  color: var(--a6-copper); letter-spacing: -.02em; line-height: 1;
}
.a6-stat__label {
  font-size: 11.5px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: var(--a6-text-muted); text-align: center;
}

/* ── Cards ── */
.a6-card {
  background: var(--a6-surface);
  border: 1px solid var(--a6-border);
  border-radius: var(--a6-radius-md);
  padding: 28px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.a6-card:hover {
  border-color: rgba(232,146,74,.25);
  box-shadow: 0 0 32px var(--a6-copper-glow-lg), var(--a6-shadow);
  transform: translateY(-2px);
}
.a6-card--copper { border-left: 3px solid var(--a6-copper); border-radius: 0 var(--a6-radius-md) var(--a6-radius-md) 0; }
.a6-card--gold   { border-left: 3px solid var(--a6-gold); }

/* ── Feature grid ── */
.a6-feature-grid { display: flex; flex-wrap: wrap; gap: 20px; }
.a6-feature-grid .a6-card { flex: 1; min-width: 240px; }
.a6-feature-icon {
  width: 48px; height: 48px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--a6-copper-glow); border-radius: var(--a6-radius);
}

/* ── Alternating rows ── */
.a6-alt-row { display: flex; align-items: center; gap: 64px; margin-bottom: 80px; }
.a6-alt-row:last-child { margin-bottom: 0; }
.a6-alt-row--flip { flex-direction: row-reverse; }
.a6-alt-row__content { flex: 2; font-size: 1.08em; }
.a6-alt-row__visual {
  flex: 0 0 380px;
  background: var(--a6-surface);
  border: 1px solid var(--a6-border);
  border-radius: var(--a6-radius-md);
  padding: 32px; display: flex; flex-direction: column; gap: 14px;
}

/* ── Stages ── */
.a6-stages { display: flex; flex-direction: column; gap: 0; position: relative; }
.a6-stages::before {
  content: ''; position: absolute; left: 22px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--a6-copper), var(--a6-border) 90%);
}
.a6-stage {
  display: flex; gap: 28px; align-items: flex-start;
  padding: 32px 0; border-bottom: 1px solid var(--a6-border); position: relative;
}
.a6-stage:last-child { border-bottom: none; }
.a6-stage__num {
  flex-shrink: 0; width: 46px; height: 46px;
  border-radius: 50%; border: 2px solid var(--a6-copper);
  background: rgba(232,146,74,.10);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 800; color: var(--a6-copper);
  position: relative; z-index: 1;
}
.a6-stage__body { flex: 1; }
.a6-stage__title {
  font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 800;
  color: #fff; margin-bottom: 4px;
}
.a6-stage__sub { font-size: 14px; color: var(--a6-copper); font-weight: 600; margin-bottom: 10px; }
.a6-stage__desc { font-size: 14.5px; color: var(--a6-text-muted); margin-bottom: 0; }
.a6-stage-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.a6-stage-pill {
  font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 4px;
  background: rgba(232,146,74,.10); border: 1px solid rgba(232,146,74,.22);
  color: var(--a6-copper-lt);
}
.a6-stage-pill--gold {
  background: rgba(245,200,66,.10); border-color: rgba(245,200,66,.22); color: var(--a6-gold-lt);
}

/* ── Bonus summary card ── */
.a6-bonus-summary {
  background: var(--a6-surface);
  border: 1px solid var(--a6-border);
  border-top: 3px solid var(--a6-copper);
  border-radius: var(--a6-radius-md);
  padding: 32px;
}
.a6-bonus-summary__total {
  font-family: 'Outfit', sans-serif; font-size: 36px; font-weight: 900;
  color: var(--a6-gold-lt); margin-bottom: 4px; line-height: 1.1;
}
.a6-bonus-summary__tag {
  font-size: 13px; color: var(--a6-text-muted); margin-bottom: 24px;
}
.a6-bonus-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.a6-bonus-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--a6-text-muted); padding: 10px 12px;
  background: var(--a6-surface-2); border-radius: var(--a6-radius);
}
.a6-bonus-list li::before {
  content: ''; display: block; flex-shrink: 0;
  width: 6px; height: 6px; border-radius: 50%; background: var(--a6-copper);
}
.a6-bonus-list strong { color: var(--a6-text); font-weight: 700; }

/* ── Table ── */
.a6-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.a6-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.a6-table th {
  text-align: left; padding: 12px 16px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--a6-text-muted);
  border-bottom: 1px solid var(--a6-border); background: var(--a6-surface);
}
.a6-table td {
  padding: 13px 16px; color: var(--a6-text);
  border-bottom: 1px solid var(--a6-border); background: var(--a6-bg-alt);
}
.a6-table tr:last-child td { border-bottom: none; }
.a6-table tr:nth-child(odd) td { background: var(--a6-surface); }
.a6-table td:first-child { font-weight: 600; }

/* ── Marquee carousel ── */
.a6-marquee {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.a6-marquee-track {
  display: flex;
  width: max-content;
  animation: a6marquee 40s linear infinite;
}
.a6-marquee-track:hover { animation-play-state: paused; }
.a6-marquee--slow .a6-marquee-track { animation-duration: 55s; }
@keyframes a6marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Games carousel */
.a6-game-card {
  flex-shrink: 0;
  width: 140px; height: 190px;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 12px;
  border: 1px solid var(--a6-border);
  transition: transform .2s, border-color .2s;
  cursor: pointer;
}
.a6-game-card:hover { transform: scale(1.04); border-color: rgba(232,146,74,.45); }
.a6-game-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Providers carousel */
.a6-prov-slide {
  flex-shrink: 0;
  height: 44px;
  padding: 0 20px;
  margin-right: 16px;
  display: flex; align-items: center;
  background: var(--a6-surface);
  border: 1px solid var(--a6-border);
  border-radius: var(--a6-radius);
  transition: border-color .2s;
}
.a6-prov-slide:hover { border-color: rgba(232,146,74,.35); }
.a6-prov-slide img {
  height: 20px; width: auto; max-width: 100px;
  object-fit: contain; opacity: .55; transition: opacity .2s; display: block;
  filter: brightness(0) invert(1);
}
.a6-prov-slide:hover img { opacity: .9; }

/* ── Providers (static grid) ── */
.a6-providers { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.a6-provider-badge {
  background: var(--a6-surface);
  border: 1px solid var(--a6-border);
  border-radius: var(--a6-radius);
  padding: 10px 16px; display: flex; align-items: center;
  transition: border-color .2s, transform .2s;
}
.a6-provider-badge:hover { border-color: rgba(232,146,74,.3); transform: translateY(-1px); }
.a6-provider-badge img {
  height: 22px; width: auto; object-fit: contain; opacity: .5; transition: opacity .2s;
}
.a6-provider-badge:hover img { opacity: .85; }

/* ── Info cards ── */
.a6-info-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.a6-info-card {
  flex: 1; min-width: 200px;
  background: var(--a6-surface-2);
  border: 1px solid var(--a6-border);
  border-radius: var(--a6-radius);
  padding: 20px; display: flex; flex-direction: column; gap: 6px;
}
.a6-info-card__label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--a6-text-dim);
}
.a6-info-card__value {
  font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 700; color: var(--a6-copper);
}
.a6-info-card__note { font-size: 13px; color: var(--a6-text-muted); }

/* ── Callout ── */
.a6-callout {
  background: rgba(232,146,74,.07);
  border: 1px solid rgba(232,146,74,.2);
  border-left: 3px solid var(--a6-copper);
  border-radius: 0 var(--a6-radius) var(--a6-radius) 0;
  padding: 18px 22px; margin: 24px 0;
  font-size: 14.5px; color: var(--a6-text-muted); line-height: 1.72;
}
.a6-callout strong { color: var(--a6-copper-lt); }
.a6-callout--sky { border-left-color: var(--a6-sky); background: rgba(56,189,248,.07); border-color: rgba(56,189,248,.2); }
.a6-callout--sky strong { color: var(--a6-sky); }

/* ── CTA Block ── */
.a6-cta-block {
  background: linear-gradient(135deg, rgba(232,146,74,.12) 0%, rgba(245,200,66,.07) 100%);
  border: 1px solid rgba(232,146,74,.22);
  border-radius: var(--a6-radius-lg);
  padding: 60px 48px; text-align: center; position: relative; overflow: hidden;
}
.a6-cta-block::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,146,74,.12), transparent 70%);
  pointer-events: none;
}
.a6-cta-block__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(22px, 3vw, 38px); font-weight: 900; color: #fff;
  margin-bottom: 12px; position: relative;
}
.a6-cta-block__sub { font-size: 16px; color: var(--a6-text-muted); margin-bottom: 30px; position: relative; }
.a6-cta-block__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FAQ ── */
.a6-faq { display: flex; flex-direction: column; }
.a6-faq-item { border-bottom: 1px solid var(--a6-border); }
.a6-faq-item:first-child { border-top: 1px solid var(--a6-border); }
.a6-faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer;
  font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700;
  color: var(--a6-text); transition: color .15s; gap: 16px;
  background: none; border: none; width: 100%; text-align: left;
}
.a6-faq-q:hover { color: var(--a6-copper); }
.a6-faq-icon {
  flex-shrink: 0; width: 24px; height: 24px;
  border: 1.5px solid var(--a6-border-lt); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s, border-color .25s, background .25s;
}
.a6-faq-item.open .a6-faq-icon {
  transform: rotate(45deg); border-color: var(--a6-copper);
  background: var(--a6-copper-glow);
}
.a6-faq-a {
  overflow: hidden; max-height: 0;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
}
.a6-faq-a-inner {
  font-size: 15px; color: var(--a6-text-muted); line-height: 1.78;
  padding-bottom: 20px;
}
.a6-faq-item.open .a6-faq-a { max-height: 500px; }

/* ── Two-col ── */
.a6-two-col { display: flex; gap: 48px; align-items: flex-start; }
.a6-two-col__main { flex: 3; min-width: 0; }
.a6-two-col__aside { flex: 1; min-width: 220px; }
.a6-sticky-aside {
  position: sticky; top: 86px;
  background: var(--a6-surface); border: 1px solid var(--a6-border);
  border-top: 3px solid var(--a6-copper);
  border-radius: var(--a6-radius-md); padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.a6-sticky-aside h4 {
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700; color: #fff;
  margin-bottom: 4px;
}
.a6-sticky-aside a {
  font-size: 13.5px; color: var(--a6-text-muted); display: block;
  padding: 7px 0; border-bottom: 1px solid var(--a6-border);
  transition: color .15s;
}
.a6-sticky-aside a:last-child { border-bottom: none; }
.a6-sticky-aside a:hover { color: var(--a6-copper); }

/* ── Steps ── */
.a6-steps { list-style: none; counter-reset: a6step; display: flex; flex-direction: column; gap: 14px; }
.a6-steps li {
  counter-increment: a6step;
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: var(--a6-surface); border: 1px solid var(--a6-border);
  border-radius: var(--a6-radius);
  transition: border-color .2s;
}
.a6-steps li:hover { border-color: rgba(232,146,74,.22); }
.a6-steps li::before {
  content: counter(a6step); flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--a6-copper-glow); border: 1.5px solid rgba(232,146,74,.4);
  color: var(--a6-copper); font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
}
.a6-steps li p { margin: 0; font-size: 14.5px; color: var(--a6-text-muted); }
.a6-steps li strong { color: var(--a6-text); display: block; margin-bottom: 4px; font-size: 15px; }

/* ── Badge ── */
.a6-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 4px;
}
.a6-badge--copper { background: var(--a6-copper-glow); color: var(--a6-copper-lt); border: 1px solid rgba(232,146,74,.25); }
.a6-badge--gold   { background: var(--a6-gold-glow); color: var(--a6-gold-lt); border: 1px solid rgba(245,200,66,.25); }

/* ── Divider ── */
.a6-divider { height: 1px; background: var(--a6-border); }

/* ── Prose ── */
.a6-prose h3 {
  font-family: 'Outfit', sans-serif; font-size: 19px; font-weight: 700; color: #fff;
  margin: 36px 0 12px;
}
.a6-prose h3:first-child { margin-top: 0; }
.a6-prose p { font-size: 15px; color: var(--a6-text-muted); margin-bottom: 14px; line-height: 1.78; }
.a6-prose ul, .a6-prose ol {
  padding-left: 20px; margin-bottom: 14px; color: var(--a6-text-muted);
  font-size: 15px; line-height: 1.78; display: flex; flex-direction: column; gap: 6px;
}
.a6-prose a { color: var(--a6-copper); }
.a6-prose strong { color: var(--a6-text); }

/* ── Page hero (inner pages) ── */
.a6-page-hero {
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--a6-border);
}
.a6-page-hero picture { display: block; }
.a6-page-hero picture img {
  width: 100%; height: auto; display: block;
  max-height: 420px; object-fit: cover; object-position: center top;
}
.a6-page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(6,8,15,.88) 0%,
    rgba(6,8,15,.65) 55%,
    rgba(6,8,15,.30) 100%
  );
  display: flex; align-items: center; align-items: stretch;
  flex-direction: column; justify-content: center;
  padding: 52px 0;
}
.a6-page-hero .a6-wrap {
  width: 100%;
  display: flex; flex-direction: column; align-items: flex-start;
}
.a6-page-hero__label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--a6-copper); margin-bottom: 12px;
}
.a6-page-hero__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 3.5vw, 50px); font-weight: 900;
  color: #fff; line-height: 1.08; letter-spacing: -.025em;
}
.a6-page-hero__sub {
  font-size: 16px; color: var(--a6-text-muted); margin-top: 12px; max-width: 640px;
}
.a6-breadcrumb {
  display: flex; align-items: center; gap: 8px; justify-content: flex-start;
  font-size: 13px; color: var(--a6-text-muted); margin-bottom: 20px;
}
.a6-breadcrumb a { color: var(--a6-text-muted); }
.a6-breadcrumb a:hover { color: var(--a6-copper); }
.a6-breadcrumb span { color: var(--a6-text-dim); }

/* ── Footer testimonials ── */
.a6-footer-reviews {
  border-top: 1px solid var(--a6-border); padding: 24px 0;
}
.a6-footer-reviews__grid {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 6px 20px;
}
.a6-footer-reviews__grid a {
  display: flex; align-items: center; opacity: .38; transition: opacity .2s;
}
.a6-footer-reviews__grid a:hover { opacity: .78; }
.a6-footer-reviews__grid img { height: 22px; width: auto; }

/* ── Footer ── */
.a6-footer {
  background: var(--a6-surface);
  border-top: 1px solid var(--a6-border);
  padding: 60px 0 0;
}
.a6-footer__grid { display: flex; flex-wrap: wrap; gap: 40px; margin-bottom: 48px; }
.a6-footer__brand { flex: 0 0 220px; }
.a6-footer__tagline { font-size: 13.5px; color: var(--a6-text-muted); margin-top: 12px; line-height: 1.65; }
.a6-footer__col { flex: 1; min-width: 130px; }
.a6-footer__col h4 {
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--a6-text-dim);
  margin-bottom: 16px;
}
.a6-footer__col a {
  display: block; font-size: 14px; color: var(--a6-text-muted);
  margin-bottom: 10px; transition: color .15s;
}
.a6-footer__col a:hover { color: var(--a6-copper); }

.a6-footer__bottom {
  border-top: 1px solid var(--a6-border); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.a6-footer__copy { font-size: 12.5px; color: var(--a6-text-dim); }
.a6-footer__age {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--a6-border-lt);
  font-size: 11px; font-weight: 800; color: var(--a6-text-dim);
}
.a6-footer__disclaimer {
  font-size: 12px; color: var(--a6-text-dim); line-height: 1.7;
  padding: 20px 0; border-top: 1px solid var(--a6-border);
}

/* ── Highlight strip (bonus page) ── */
.a6-highlight-row {
  display: flex; flex-wrap: wrap; gap: 16px; margin: 28px 0;
}
.a6-highlight-card {
  flex: 1; min-width: 160px;
  background: var(--a6-surface-2);
  border: 1px solid var(--a6-border);
  border-radius: var(--a6-radius);
  padding: 20px 18px; text-align: center;
}
.a6-highlight-card__val {
  font-family: 'Outfit', sans-serif; font-size: 28px; font-weight: 900;
  color: var(--a6-copper); display: block; line-height: 1;
}
.a6-highlight-card__lbl {
  font-size: 12px; font-weight: 600; color: var(--a6-text-muted);
  text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; display: block;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .a6-nav { display: none; }
  .a6-header__actions { display: none; }
  .a6-burger { display: flex; margin-left: auto; }
  .a6-alt-row { flex-direction: column; gap: 32px; }
  .a6-alt-row--flip { flex-direction: column; }
  .a6-alt-row__visual { flex: none; }
  .a6-two-col { flex-direction: column; }
  .a6-sticky-aside { position: static; }
  .a6-footer__grid { gap: 28px; }
  .a6-footer__brand { flex: none; width: 100%; }
  .a6-cta-block { padding: 42px 24px; }
}
@media (max-width: 640px) {
  .a6-section { padding: 64px 0; }
  .a6-hero img { max-height: 400px; }
  .a6-hero__overlay { padding-bottom: 40px; }
  .a6-hero__overlay .a6-wrap { align-items: center; text-align: center; }
  .a6-hero__title { font-size: clamp(26px, 8vw, 36px); max-width: 100%; }
  .a6-hero__sub { max-width: 100%; }
  .a6-hero__chips { justify-content: center; }
  .a6-hero__actions { justify-content: center; }
  .a6-hero__kicker { align-self: center; }
  .a6-stat { padding: 22px 14px; }
  .a6-stages::before { left: 16px; }
  .a6-stage__num { width: 34px; height: 34px; font-size: 13px; }
  .a6-stats__grid { gap: 0; }
}
