/* ==========================================================================
   FairGo Pokies Guide — style.css
   Sections: 1 tokens & reset · 2 typography · 3 layout · 4 buttons & pills
   5 header & nav · 6 hero & torn edges · 7 ticker · 8 tables · 9 tiles
   10 featured card · 11 features / USP grid · 12 steps · 13 trust strip
   14 content rows, callout, pros/cons, coupon, lists · 15 FAQ accordion
   16 TOC · 17 CTA band · 18 footer · 19 utilities & motion
   ========================================================================== */

/* 1. Tokens & reset ------------------------------------------------------- */
:root {
  --c-page: #1c724d;
  --c-surface: #0f442e;
  --c-surface-2: #0e3e2a;
  --c-deep: #013334;
  --c-ticker: #3ca371;
  --c-green-2: #16964e;
  --c-accent: #f9cb16;
  --c-accent-2: #ffc300;
  --c-text: #ffffff;
  --c-text-dim: rgba(255, 255, 255, .78);
  --c-on-accent: #0f442e;
  --c-border: rgba(255, 255, 255, .35);
  --c-link: #ffe066; /* lighter accent tint: keeps 4.5:1 for small link text on the page green */
  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-pill: 50px;
  --container: 1320px;
  --header-h: 76px;
  --font-display: "Rowdies", "Arial Black", sans-serif;
  --font-body: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--c-page);
  color: var(--c-text);
  font: 400 16px/1.6 var(--font-body);
}

img, svg { max-width: 100%; }

/* 2. Typography ----------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(30px, 4.5vw, 40px); }
h2 { font-size: clamp(24px, 3vw, 28px); }
h3 { font-size: 20px; }

p { margin: 0 0 1em; }

a { color: var(--c-link); text-underline-offset: 2px; }
a:hover { color: var(--c-accent); }

strong { font-weight: 700; }

code { font-family: var(--font-display); }

.sec-title {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0 0 18px;
}

.sec-leaf { width: 22px; height: 22px; flex: none; }

.sec-intro { max-width: 70ch; color: var(--c-text-dim); margin: -6px 0 22px; }

.lead { font-size: 18px; color: var(--c-text-dim); max-width: 60ch; }

.kicker {
  display: inline-block;
  background: var(--c-accent);
  color: var(--c-on-accent);
  font: 700 12px/1 var(--font-display);
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 12px;
}

/* 3. Layout --------------------------------------------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

.skip {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 200;
  background: var(--c-accent);
  color: var(--c-on-accent);
  padding: 10px 16px;
  border-radius: var(--r-md);
  font-weight: 700;
}
.skip:focus { left: 12px; }

:focus-visible { outline: 3px solid var(--c-accent); outline-offset: 3px; }

.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;
}

.page-body { padding: 44px 20px 24px; }
.content { max-width: 880px; }
.sec { margin: 0 0 48px; }
.band { padding: 56px 0; margin: 0; }
.band-surface { background: var(--c-surface); }
.band-surface .feat,
.band-surface .callout,
.band-surface .acc,
.band-surface .coupon,
.band-surface .tbl td { background: var(--c-surface-2); }
.band-surface .tbl tbody tr:nth-child(even) td { background: var(--c-surface); }

/* 4. Buttons & pills ------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  font: 700 14px/1.2 var(--font-body);
  text-transform: uppercase;
  letter-spacing: .04em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .15s, transform .15s, color .15s;
}
.btn .ico { width: 18px; height: 18px; }

.btn-primary { background: var(--c-accent); color: var(--c-on-accent); }
.btn-primary:hover { background: var(--c-accent-2); color: var(--c-on-accent); transform: translateY(-1px); }

.btn-ghost {
  background: rgba(1, 51, 52, .55);
  border-color: var(--c-accent);
  color: var(--c-accent);
}
.btn-ghost:hover { background: rgba(1, 51, 52, .85); color: var(--c-accent-2); transform: translateY(-1px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.btn-row.centre { justify-content: center; margin-top: 28px; }

.pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 22px; }
.pill {
  border: 1px solid #fff;
  border-radius: var(--r-pill);
  background: transparent;
  color: #fff;
  padding: 8px 18px;
  font: 700 13px/1.2 var(--font-body);
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background-color .15s;
}
.pill:hover, .pill.is-active { background: var(--c-green-2); border-color: var(--c-green-2); }

/* 5. Header & nav --------------------------------------------------------- */
.site-header {
  background: var(--c-surface);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
  position: relative;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  line-height: 1;
}
.brand:hover { color: #fff; }
.brand-a { color: var(--c-accent); }
.brand-b { color: #fff; }
.brand-leaf { width: 24px; height: 24px; }

.burger {
  display: inline-flex;
  align-items: center;
  background: none;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  color: #fff;
  padding: 8px;
  cursor: pointer;
}
.burger .ico, .burger svg { width: 24px; height: 24px; flex: none; }
.burger .ico-close { display: none; }
.burger[aria-expanded="true"] .ico-menu { display: none; }
.burger[aria-expanded="true"] .ico-close { display: block; }

.site-nav {
  display: none;
  position: absolute;
  left: -20px;
  right: -20px;
  top: 100%;
  background: var(--c-surface);
  padding: 8px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
.site-nav.is-open { display: block; }

.nav-list { list-style: none; margin: 0; padding: 0; }
.nav-list > li { border-bottom: 1px solid rgba(255, 255, 255, .1); position: relative; }
.nav-list a {
  display: block;
  padding: 12px 0;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.nav-list a:hover, .nav-list a[aria-current="page"] { color: var(--c-accent); }

.has-sub { display: flex; flex-wrap: wrap; align-items: center; }
.has-sub > a { flex: 1; }

.sub-toggle {
  background: none;
  border: 0;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  display: inline-flex;
}
.sub-toggle .ico { width: 20px; height: 20px; transition: transform .2s; }
.sub-toggle[aria-expanded="true"] .ico { transform: rotate(180deg); }

.sub {
  list-style: none;
  margin: 0;
  padding: 0 0 10px 16px;
  flex-basis: 100%;
  display: none;
}
.has-sub.is-open .sub { display: block; }
.sub a { font-weight: 400; padding: 8px 0; color: var(--c-text-dim); }

.nav-ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

/* desktop nav from 1100px: below that the full nav + two CTAs would exceed the container, so the burger stays */
@media (min-width: 1100px) {
  .burger { display: none; }
  .header-inner { flex-wrap: nowrap; }
  .site-nav {
    display: flex;
    position: static;
    background: none;
    padding: 0;
    border: 0;
    align-items: center;
    gap: 20px;
    max-height: none;
    overflow: visible;
    flex: 1 1 auto;
    justify-content: flex-end;
    min-width: 0;
  }
  .nav-list { display: flex; gap: 2px; }
  .nav-list > li { border: 0; }
  .nav-list a { padding: 10px 12px; border-radius: var(--r-sm); font-size: 15px; white-space: nowrap; }
  .nav-list > li.is-current > a { color: var(--c-accent); }
  .has-sub { flex-wrap: nowrap; }
  .has-sub > a { padding-right: 4px; }
  .sub-toggle { padding: 6px 4px; }
  .sub {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--c-surface);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--r-md);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .15s, transform .15s, visibility .15s;
    z-index: 20;
  }
  .has-sub:hover .sub,
  .has-sub:focus-within .sub,
  .has-sub.is-open .sub { opacity: 1; visibility: visible; transform: none; }
  .sub a { padding: 9px 12px; color: #fff; }
  .sub a:hover { background: var(--c-surface-2); color: var(--c-accent); }
  .nav-ctas { margin: 0; flex: 0 0 auto; flex-wrap: nowrap; }
}

/* tighter spacing between 1100px and 1279px so nav + Log In + Sign Up fit on one line */
@media (min-width: 1100px) and (max-width: 1279px) {
  .brand { font-size: 20px; }
  .brand-leaf { width: 20px; height: 20px; }
  .site-nav { gap: 12px; }
  .nav-list a { padding: 10px 8px; font-size: 14px; }
  .sub-toggle { padding: 6px 2px; }
  .nav-ctas { gap: 8px; }
  .nav-ctas .btn { padding: 10px 14px; font-size: 13px; }
}

/* 6. Hero & torn edges ---------------------------------------------------- */
.hero { position: relative; padding: 44px 0 64px; }
.hero-home { padding-bottom: 96px; }
.hero-inner { display: grid; gap: 32px; align-items: center; }
.hero-text { position: relative; z-index: 1; }

.hero-home h1 {
  font-size: clamp(38px, 7vw, 76px);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: .01em;
  margin-bottom: 20px;
}
.t-y { color: var(--c-accent); }
.t-w { color: #fff; }

.hero-page h1 { font-size: clamp(30px, 4.5vw, 40px); margin-bottom: 14px; }

.hero-side svg { width: 100%; height: auto; display: block; margin: 0 auto; }
.hero-scene svg { max-width: 560px; }
.hero-page .hero-side svg { max-width: 340px; }

.hero-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 36px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--c-text-dim);
  font-size: 14px;
}
.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.1;
  color: var(--c-accent);
}

.crumbs { font-size: 14px; margin-bottom: 14px; }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs a { color: var(--c-text-dim); text-decoration: none; }
.crumbs a:hover { color: var(--c-accent); text-decoration: underline; }
.crumb-sep { color: var(--c-accent); margin-right: 6px; }
.crumbs [aria-current="page"] { color: #fff; }

.torn-wrap { line-height: 0; }
.torn { display: block; width: 100%; height: 40px; }
.torn-hero { position: absolute; left: 0; right: 0; bottom: -1px; color: var(--c-ticker); }
.torn-footer { color: var(--c-surface); background: var(--c-deep); }

@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.15fr 1fr; gap: 48px; }
  .hero-page .hero-inner { grid-template-columns: 1.4fr 1fr; }
  .hero { padding: 64px 0 80px; }
  .hero-home { padding-bottom: 110px; }
}

/* 7. Winners ticker ------------------------------------------------------- */
.ticker {
  background: var(--c-ticker);
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  overflow: hidden;
  height: 52px;
}
.ticker-label {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font: 400 12px/1 var(--font-display);
  text-transform: uppercase;
  letter-spacing: .06em;
  background: rgba(0, 0, 0, .35);
  color: #fff;
  white-space: nowrap;
}
/* viewport: clips the track and paints the edge fades */
.ticker-view {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.ticker-view::before, .ticker-view::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.ticker-view::before { left: 0; background: linear-gradient(90deg, var(--c-ticker), rgba(60, 163, 113, 0)); }
.ticker-view::after { right: 0; background: linear-gradient(270deg, var(--c-ticker), rgba(60, 163, 113, 0)); }

/* track: one non-wrapping line holding two identical lists; scrolls by half its width */
.ticker-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  height: 100%;
  animation: ticker-scroll 40s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-list {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  align-items: center;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0 7px;
  height: 100%;
}
.ticker-list li {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(1, 51, 52, .7);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  font-size: 14px;
  line-height: 1.3;
  white-space: nowrap;
  color: #fff;
}
.tk-name { font-weight: 700; }
.tk-amt { color: var(--c-accent); font-family: var(--font-display); }
.tk-game { color: var(--c-text-dim); }

@keyframes ticker-scroll { to { transform: translateX(-50%); } }

/* phones: label becomes a slim caption line above the band so items get the full width */
@media (max-width: 767px) {
  .ticker { flex-wrap: wrap; height: auto; }
  .ticker-label {
    flex: 0 0 100%;
    justify-content: center;
    padding: 5px 12px;
    font-size: 10px;
    letter-spacing: .08em;
  }
  .ticker-view { flex: 0 0 100%; height: 48px; }
  .ticker-view::before, .ticker-view::after { width: 32px; }
}

/* 8. Tables --------------------------------------------------------------- */
.table-wrap { overflow-x: auto; margin: 18px 0 22px; border-radius: var(--r-md); }
.tbl { width: 100%; border-collapse: collapse; min-width: 560px; font-size: 15px; }
.tbl caption {
  caption-side: bottom;
  text-align: left;
  font-size: 13px;
  color: var(--c-text-dim);
  padding: 10px 2px 0;
}
.tbl th {
  background: var(--c-deep);
  color: var(--c-accent);
  text-align: left;
  padding: 12px 14px;
  font: 400 13px/1.3 var(--font-display);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.tbl td {
  background: var(--c-surface);
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  vertical-align: top;
}
.tbl tbody tr:nth-child(even) td { background: var(--c-surface-2); }
.tbl tbody tr:last-child td { border-bottom: 0; }
.tbl-glance td:first-child { font-weight: 700; width: 30%; }

/* stacked glance table on phones: label row full width on deep green, value row beneath on surface */
@media (max-width: 640px) {
  .tbl-glance,
  .tbl-glance tbody,
  .tbl-glance tr,
  .tbl-glance td { display: block; width: 100%; min-width: 0; }
  .tbl-glance td:first-child { width: 100%; }
  .tbl-glance thead { position: absolute; left: -9999px; }
  .tbl-glance tr { margin: 0; }
  .tbl-glance tr + tr { border-top: 1px solid rgba(255, 255, 255, .12); }
  .tbl-glance td { border-bottom: 0; }
  .tbl-glance td:first-child,
  .tbl-glance tbody tr:nth-child(even) td:first-child {
    background: var(--c-deep);
    color: var(--c-accent);
    font-weight: 700;
    padding: 10px 14px 8px;
  }
  .tbl-glance td:last-child,
  .tbl-glance tbody tr:nth-child(even) td:last-child {
    background: var(--c-surface);
    padding: 8px 14px 12px;
  }
}

/* 9. Game tiles ----------------------------------------------------------- */
.tile-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 600px) { .tile-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .tile-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1200px) { .tile-grid { grid-template-columns: repeat(6, 1fr); } }

.tile {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: linear-gradient(160deg, var(--ga, #2b3a67), var(--gb, #0f1b3d));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  isolation: isolate;
}
.tile::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 45%;
  background: linear-gradient(0deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, 0));
  z-index: 0;
}
.tile-art {
  position: absolute;
  inset: 0 0 34% 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tile-glyph { width: 46%; height: auto; }
.tile-name { position: relative; z-index: 1; font-size: 16px; margin: 0; line-height: 1.2; }
.tile-tag { position: relative; z-index: 1; font-size: 12px; color: var(--c-text-dim); }
.tile-hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(69, 83, 112, .86);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity .2s;
}
.tile:hover .tile-hover, .tile:focus-within .tile-hover { opacity: 1; }
.tile-hover .btn { min-width: 110px; }
.tile.is-hidden { display: none; }

/* 10. Featured card (rotated yellow frame) --------------------------------- */
.featured-wrap { position: relative; max-width: 920px; margin: 8px auto 0; padding: 6px; }
.featured-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 4px solid var(--c-accent);
  border-radius: var(--r-lg);
  transform: rotate(-.8deg);
  pointer-events: none;
}
.featured {
  position: relative;
  background: var(--c-surface);
  border-radius: var(--r-lg);
  display: grid;
  gap: 24px;
  padding: 24px;
}
.featured-art {
  aspect-ratio: 3 / 4;
  max-height: 340px;
  border-radius: var(--r-md);
  background: linear-gradient(160deg, var(--ga), var(--gb));
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-art svg { width: 50%; height: auto; }
.featured-body h3 { font-size: clamp(24px, 3vw, 32px); }
.featured-body p { color: var(--c-text-dim); }
@media (min-width: 760px) { .featured { grid-template-columns: 250px 1fr; padding: 28px; } }

/* 11. Feature / USP grid --------------------------------------------------- */
.feat-grid { display: grid; gap: 16px; grid-template-columns: 1fr; margin: 6px 0 10px; }
@media (min-width: 600px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .feat-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .feat-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
  .feat-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
}
.feat { background: var(--c-surface); border-radius: 10px; padding: 22px; }
.feat-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--c-page);
  color: var(--c-accent);
  margin-bottom: 12px;
}
.feat-ico .ico { width: 26px; height: 26px; }
.feat h3 { font-size: 18px; margin: 0 0 6px; }
.feat p { margin: 0; color: var(--c-text-dim); font-size: 15px; }

/* 12. Steps --------------------------------------------------------------- */
.steps { list-style: none; margin: 18px 0 8px; padding: 0; }
.step { display: flex; gap: 18px; position: relative; padding-bottom: 28px; }
.step::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 42px;
  bottom: 0;
  width: 3px;
  background: var(--c-accent);
}
.step:last-child { padding-bottom: 0; }
.step:last-child::before { display: none; }
.step-num {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-accent);
  color: var(--c-on-accent);
  font: 700 18px/1 var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.step-body h3 { margin: 8px 0 4px; font-size: 18px; }
.step-body p { margin: 0; color: var(--c-text-dim); }

/* 13. Trust / payment strip ----------------------------------------------- */
.trust { background: var(--c-deep); padding: 22px 0; }
.trust-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 14px; }
.badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, .06);
}
.badge-trust { color: var(--c-accent); border-color: var(--c-accent); }
.badge .ico { width: 16px; height: 16px; }

/* 14. Content rows, callout, pros/cons, coupon, lists ---------------------- */
.illus-row { display: grid; gap: 24px; align-items: center; margin: 8px 0 20px; }
.illus-art svg { width: 100%; max-width: 360px; height: auto; display: block; margin: 0 auto; }
.illus-text p:last-child { margin-bottom: 0; }
@media (min-width: 800px) {
  .illus-row { grid-template-columns: 3fr 2fr; gap: 40px; }
  .illus-row.flip .illus-text { order: 2; }
}

.callout {
  background: var(--c-surface);
  border-left: 4px solid var(--c-accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 16px 20px;
  margin: 20px 0;
}
.callout strong { color: var(--c-accent); }

.pros-cons { display: grid; gap: 16px; margin: 16px 0 20px; }
@media (min-width: 700px) { .pros-cons { grid-template-columns: 1fr 1fr; } }
.pros, .cons { background: var(--c-surface); border-radius: 10px; padding: 20px 22px; }
.pros h3, .cons h3 { font-size: 17px; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 10px; }
.pros ul, .cons ul { list-style: none; margin: 0; padding: 0; }
.pros li, .cons li { display: flex; gap: 10px; margin: 8px 0; color: var(--c-text-dim); }
.pros .ico, .cons .ico { flex: none; width: 22px; height: 22px; margin-top: 2px; }
.pros .ico { color: var(--c-accent); }
.cons .ico { color: #ff9e8f; }

.coupon {
  border: 2px dotted var(--c-accent);
  border-radius: var(--r-lg);
  padding: 22px;
  background: var(--c-surface);
  max-width: 600px;
}
.coupon-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--c-accent);
}
.coupon-head .ico { width: 22px; height: 22px; }
.coupon-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin: 14px 0; }
.coupon-code {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: .08em;
  background: var(--c-deep);
  padding: 10px 18px;
  border-radius: var(--r-md);
  color: #fff;
}
.coupon-note { font-size: 14px; color: var(--c-text-dim); }
.btn-copy.is-copied { background: var(--c-green-2); color: #fff; }

.leaf-list { list-style: none; margin: 0 0 1em; padding: 0; }
.leaf-list li { position: relative; padding-left: 30px; margin: 8px 0; }
.leaf-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 6px;
  width: 16px; height: 16px;
  background: url("../img/leaf.svg") no-repeat center / contain;
}

/* 15. FAQ accordion ------------------------------------------------------- */
.faq { display: grid; gap: 12px; }
.acc {
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 12px;
  background: var(--c-surface);
}
.acc summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary:hover { color: var(--c-accent); }
.acc-chev { flex: none; width: 22px; height: 22px; color: #fff; transition: transform .2s; }
.acc[open] .acc-chev { transform: rotate(180deg); }
.acc-body { padding: 0 20px 18px; color: var(--c-text-dim); }
.acc-body p { margin: 0 0 10px; }
.acc-body p:last-child { margin-bottom: 0; }

/* 16. Table of contents --------------------------------------------------- */
.toc {
  background: var(--c-surface);
  border-radius: var(--r-md);
  margin: 0 0 32px;
  max-width: 760px;
}
.toc summary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  cursor: pointer;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .04em;
  list-style: none;
}
.toc summary::-webkit-details-marker { display: none; }
.toc summary .ico { width: 20px; height: 20px; color: var(--c-accent); }
.toc-toggle { margin-left: auto; background: none; border: 0; color: #fff; padding: 0; pointer-events: none; display: inline-flex; }
.toc-toggle .ico { color: #fff; transition: transform .2s; }
.toc[open] .toc-toggle .ico { transform: rotate(180deg); }
.toc-list { margin: 0; padding: 0 18px 16px 38px; columns: 2; column-gap: 28px; }
.toc-list li { padding: 3px 0; break-inside: avoid; }
.toc-list a { text-decoration: none; }
.toc-list a:hover { text-decoration: underline; }
@media (max-width: 600px) { .toc-list { columns: 1; } }

/* 17. CTA band ------------------------------------------------------------ */
.cta-band { background: var(--c-deep); padding: 56px 0; }
.cta-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 24px; }
.cta-band p { margin: 0; color: var(--c-text-dim); max-width: 60ch; }
.cta-title {
  font: 700 clamp(26px, 4vw, 36px)/1.15 var(--font-display);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin: 0 0 8px;
}
.cta-leaf { width: 34px; height: 34px; display: block; margin-bottom: 8px; }
.cta-band .btn-row { margin: 0; }

/* 18. Footer -------------------------------------------------------------- */
.site-footer { background: var(--c-surface); padding: 36px 0 0; position: relative; overflow: hidden; }
.footer-mark {
  position: absolute;
  right: -2vw;
  top: -.28em;
  font: 700 clamp(120px, 22vw, 320px)/1 var(--font-display);
  color: rgba(255, 255, 255, .035);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}
.footer-tag { margin: 0; color: var(--c-text-dim); max-width: 52ch; }
.footer-grid { display: grid; gap: 24px; grid-template-columns: repeat(2, 1fr); margin-bottom: 36px; position: relative; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.fcol h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0 0 12px;
}
.fcol-ico { width: 20px; height: 20px; color: var(--c-accent); }
.fcol ul { list-style: none; margin: 0; padding: 0; }
.fcol li { margin: 6px 0; }
.fcol a { color: var(--c-text-dim); text-decoration: none; }
.fcol a:hover { color: var(--c-accent); text-decoration: underline; }
.footer-bottom { padding: 18px 20px 26px; position: relative; }
.compliance { font-size: 12px; color: rgba(255, 255, 255, .72); margin: 4px 0; }

/* 19. Utilities & motion -------------------------------------------------- */
.page-home .hero-home .lead { font-size: 19px; }

body.nav-open { overflow: hidden; }
@media (min-width: 1100px) { body.nav-open { overflow: auto; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .ticker-view { overflow-x: auto; }
  .btn, .pill, .acc-chev, .sub, .tile-hover, .sub-toggle .ico { transition: none; }
  .btn:hover { transform: none; }
}

@media print {
  .site-header, .site-footer, .cta-band, .ticker, .torn-wrap, .btn-row, .hero-side { display: none; }
  body { background: #fff; color: #000; }
  a { color: #000; }
}
