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

:root {
  --canvas: #0B1121;
  --surface: #151D33;
  --tile: #1C2541;
  --accent: #2DD4BF;
  --highlight: #F59E0B;
  --ink: #E2E8F0;
  --muted: #94A3B8;
  --dim: #64748B;
  --danger: #dc2626;
  --ink-dark: #0B1121;
  --heading: 'Oswald', sans-serif;
  --body: 'Raleway', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--highlight); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 3px; }

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

h1, h2, h3, h4 { font-family: var(--heading); font-weight: 700; line-height: 1.2; }

/* Skip link */
.jumpLink {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--accent);
  color: var(--ink-dark);
  padding: .5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  z-index: 1000;
  transition: top .2s;
}
.jumpLink:focus { top: 1rem; }

/* ========== HEADER — H10 floating pill ========== */
.topPill {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 1060px);
  background: rgba(21, 29, 51, .92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(45, 212, 191, .15);
  border-radius: 60px;
  padding: .6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 900;
}

.topPill .brandMark { height: 28px; width: auto; }

.topPill .pillNav { display: flex; gap: 1.2rem; list-style: none; }
.topPill .pillNav a {
  color: var(--muted);
  font-family: var(--heading);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: color .2s;
}
.topPill .pillNav a:hover,
.topPill .pillNav a[aria-current="page"] { color: var(--accent); }

.topPill .burgerBtn {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  padding: .4rem;
}
.topPill .burgerBtn svg { width: 24px; height: 24px; }

@media (max-width: 640px) {
  .topPill { border-radius: 16px; padding: .5rem 1rem; top: .5rem; }
  .topPill .pillNav { display: none; }
  .topPill .burgerBtn { display: block; }
}

/* Mobile drawer */
.mobileDrawer {
  position: fixed;
  inset: 0;
  background: rgba(11, 17, 33, .97);
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.mobileDrawer.isOpen { opacity: 1; pointer-events: auto; }
.mobileDrawer a {
  font-family: var(--heading);
  font-size: 1.5rem;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.mobileDrawer a:hover { color: var(--accent); }
.drawerClose {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 2rem;
  cursor: pointer;
}

/* ========== HERO — R09 wide band + narrow column ========== */
.heroBand {
  background: linear-gradient(135deg, #0e1a30 0%, #162040 50%, #0e1830 100%);
  padding: 8rem 1.5rem 4rem;
  text-align: center;
}
.heroBand .narrowCol {
  max-width: 720px;
  margin: 0 auto;
}
.heroBand h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--ink);
  margin-bottom: 1rem;
}
.heroBand h1 em { font-style: normal; color: var(--accent); }
.heroBand .heroSub {
  font-size: clamp(.95rem, 2.5vw, 1.15rem);
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.ageBadge {
  display: inline-block;
  background: rgba(45, 212, 191, .12);
  border: 1px solid rgba(45, 212, 191, .3);
  color: var(--accent);
  font-family: var(--heading);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .35rem 1rem;
  border-radius: 20px;
}

/* ========== RANKING — C07 editorial picks ========== */
.pickSection {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.pickSection .sectionTag {
  font-family: var(--heading);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--highlight);
  margin-bottom: .5rem;
}
.pickSection h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 2rem;
}

.pickItem {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 1.2rem;
  align-items: start;
  background: var(--tile);
  border: 1px solid rgba(45, 212, 191, .08);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1.2rem;
  transition: border-color .25s;
}
.pickItem:hover { border-color: rgba(45, 212, 191, .25); }

.pickRank {
  font-family: var(--heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--highlight);
  text-align: center;
  line-height: 1;
  padding-top: .2rem;
}

.pickBody { min-width: 0; }
.pickBody .opLogo { height: 32px; width: auto; margin-bottom: .6rem; }
.pickBody .opBonus {
  font-family: var(--heading);
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: .3rem;
}
.pickBody .opVerdict {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: .6rem;
}
.pickBody .opFeatures {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: .6rem;
  list-style: none;
}
.pickBody .opFeatures li {
  background: rgba(45, 212, 191, .08);
  color: var(--accent);
  font-size: .75rem;
  padding: .2rem .6rem;
  border-radius: 4px;
}
.pickBody .opPayments {
  font-size: .78rem;
  color: var(--dim);
}

.pickAside {
  text-align: center;
  min-width: 100px;
}
.pickAside .starScore {
  font-family: var(--heading);
  font-size: 1.6rem;
  color: var(--highlight);
}
.pickAside .starLabel {
  font-size: .7rem;
  color: var(--muted);
  margin-bottom: .6rem;
}
.pickAside .visitBtn {
  display: inline-block;
  background: var(--accent);
  color: var(--ink-dark);
  font-family: var(--heading);
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .5rem 1.2rem;
  border-radius: 8px;
  transition: background .2s, transform .15s;
}
.visitBtn:hover { background: #22b8a5; color: var(--ink-dark); transform: translateY(-1px); }

@media (max-width: 640px) {
  .pickItem {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .pickRank { font-size: 1.4rem; }
  .pickAside { margin-top: .5rem; }
  .pickBody .opFeatures { justify-content: center; }
}

/* ========== METHODOLOGY — M02 numbered timeline ========== */
.timelineWrap {
  background: var(--surface);
  padding: 3.5rem 1.5rem;
}
.timelineWrap .inner {
  max-width: 760px;
  margin: 0 auto;
}
.timelineWrap .sectionTag {
  font-family: var(--heading);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--highlight);
  margin-bottom: .5rem;
}
.timelineWrap h2 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  margin-bottom: .6rem;
}
.timelineWrap .introLine {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 2rem;
  max-width: 560px;
}

.timelineList { list-style: none; position: relative; padding-left: 2.5rem; }
.timelineList::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(45, 212, 191, .2);
}
.timelineList li {
  position: relative;
  margin-bottom: 1.8rem;
}
.timelineList li::before {
  content: attr(data-step);
  position: absolute;
  left: -2.5rem;
  top: 0;
  width: 22px;
  height: 22px;
  background: var(--accent);
  color: var(--ink-dark);
  font-family: var(--heading);
  font-size: .7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.timelineList h3 {
  font-size: 1rem;
  margin-bottom: .25rem;
}
.timelineList p {
  font-size: .88rem;
  color: var(--muted);
}

/* ========== HELPLINE — L04 wide horizontal strip ========== */
.helpStrip {
  background: var(--tile);
  border-top: 1px solid rgba(45, 212, 191, .1);
  border-bottom: 1px solid rgba(45, 212, 191, .1);
  padding: 2rem 1.5rem;
}
.helpStrip .inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.helpStrip h3 {
  font-size: 1rem;
  color: var(--ink);
  flex-shrink: 0;
}
.helpStrip .phoneNum {
  font-family: var(--heading);
  font-size: 1.5rem;
  color: var(--highlight);
  font-weight: 700;
}
.helpStrip .helpDesc {
  font-size: .85rem;
  color: var(--muted);
  flex: 1;
  min-width: 200px;
}
.helpStrip .helpLinks {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}
.helpStrip .helpLinks a { font-size: .82rem; }
.helpStrip .onlyAdult {
  font-size: .72rem;
  color: var(--dim);
  background: rgba(245, 158, 11, .1);
  padding: .2rem .6rem;
  border-radius: 4px;
}

@media (max-width: 640px) {
  .helpStrip .inner { flex-direction: column; text-align: center; }
}

/* ========== DISCLOSURE — D05 narrow strip ========== */
.disclosureBar {
  max-width: 860px;
  margin: 0 auto;
  padding: 1.5rem;
}
.disclosureBar p {
  font-size: .8rem;
  color: var(--dim);
  line-height: 1.6;
  border-left: 3px solid var(--highlight);
  padding-left: 1rem;
}

/* ========== RG BANNER — G05 red editorial note ========== */
.dangerNote {
  background: var(--danger);
  padding: 3rem 1.5rem;
}
.dangerNote .inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.dangerNote h3 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: #fff;
  margin-bottom: .8rem;
}
.dangerNote p {
  color: rgba(255, 255, 255, .92);
  font-size: .95rem;
  margin-bottom: .6rem;
}
.dangerNote a { color: #fff; text-decoration: underline; }
.dangerNote a:hover { color: rgba(255, 255, 255, .8); }

/* ========== FOOTER — F06 dense legal ========== */
.legalFoot {
  background: var(--surface);
  border-top: 1px solid rgba(45, 212, 191, .08);
  padding: 2rem 1.5rem 1.5rem;
}
.legalFoot .inner {
  max-width: 900px;
  margin: 0 auto;
}
.legalFoot .footNav {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.2rem;
  list-style: none;
  margin-bottom: 1rem;
  justify-content: center;
}
.legalFoot .footNav a {
  font-size: .78rem;
  color: var(--muted);
  font-family: var(--heading);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.legalFoot .footNav a:hover { color: var(--accent); }

.legalFoot .footDisclaimer {
  font-size: .75rem;
  color: var(--dim);
  text-align: center;
  line-height: 1.6;
  margin-bottom: .6rem;
}
.legalFoot .footDisclaimer strong { color: var(--muted); }

.legalFoot .footHotline {
  font-size: .75rem;
  color: var(--dim);
  text-align: center;
}
.legalFoot .footHotline a { color: var(--muted); }
.legalFoot .footCopy {
  text-align: center;
  font-size: .7rem;
  color: var(--dim);
  margin-top: .8rem;
}

/* ========== INTERNAL PAGES ========== */
.pageBanner {
  background: linear-gradient(135deg, #0e1a30, #162040);
  padding: 7rem 1.5rem 2.5rem;
  text-align: center;
}
.pageBanner h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.pageContent {
  max-width: 780px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
}
.pageContent h2 {
  font-size: 1.4rem;
  margin: 2rem 0 .8rem;
  color: var(--accent);
}
.pageContent h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 .5rem;
}
.pageContent p { margin-bottom: 1rem; color: var(--ink); }
.pageContent ul, .pageContent ol {
  margin: .5rem 0 1rem 1.5rem;
  color: var(--ink);
}
.pageContent li { margin-bottom: .4rem; }
.pageContent strong { color: var(--ink); }

.infoCard {
  background: var(--tile);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border: 1px solid rgba(45, 212, 191, .08);
}

.alertBox {
  background: rgba(245, 158, 11, .08);
  border-left: 3px solid var(--highlight);
  padding: 1rem 1.2rem;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
  font-size: .9rem;
}

.warnBox {
  background: rgba(220, 38, 38, .08);
  border-left: 3px solid var(--danger);
  padding: 1rem 1.2rem;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
  font-size: .9rem;
}

.lastUpdate {
  text-align: center;
  font-size: .8rem;
  color: var(--dim);
  padding: 1rem 1.5rem;
}
