
:root {
  --bg: #07112c;
  --bg-soft: #0f1e4a;
  --bg-panel: rgba(255,255,255,0.05);
  --bg-panel-strong: rgba(255,255,255,0.08);
  --text: #e7ecf8;
  --muted: #a8b4cf;
  --line: rgba(255,255,255,0.12);
  --brand: #5ea2ff;
  --brand-deep: #1846c7;
  --accent: #f2b705;
  --accent-soft: rgba(242,183,5,0.12);
  --success: #8dd08d;
  --max: 1180px;
  --radius: 26px;
  --radius-sm: 18px;
  --shadow: 0 24px 70px rgba(0,0,0,0.26);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 15%, rgba(242,183,5,0.18), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(94,162,255,0.24), transparent 28%),
    radial-gradient(circle at 50% 80%, rgba(24,70,199,0.10), transparent 30%),
    linear-gradient(180deg, #050d22 0%, #07112c 45%, #0c1635 100%);
  color: var(--text);
  line-height: 1.65;
}

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

a { color: inherit; text-decoration: none; }

p, ul, ol, table { margin-top: 0; }

h1, h2, h3, h4, p, li, td, th {
  overflow-wrap: break-word;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7,17,44,0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-header .container {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.24);
}

.brand img.brand-wordmark {
  width: auto;
  height: 32px;
  border-radius: 0;
  box-shadow: none;
}

.brand-title {
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-subtitle {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  width: 42px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
  font-size: 0;
}

.nav-toggle .hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 20px;
  height: 20px;
}

.nav-toggle .hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav > a,
.nav-dropdown > .nav-dropdown-label {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
  cursor: pointer;
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"],
.nav-dropdown:hover > .nav-dropdown-label,
.nav-dropdown-label[aria-current="page"] {
  color: var(--white, #fff);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-label {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  font: inherit;
  padding: 0;
}

.nav-dropdown-label::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-top: 1px;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-label::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background: rgba(7,17,44,0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 0.5rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  z-index: 50;
}

/* Invisible bridge so the mouse can travel from label to menu without losing hover */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
}

.nav-dropdown-menu a[aria-current="page"] {
  color: #fff;
  background: rgba(255,255,255,0.05);
}

.page-hero {
  padding: 1.4rem 0 1.4rem;
}

.page-hero .inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.6rem;
  align-items: stretch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: #d4def7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin-bottom: 1rem;
}

.page-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  padding-bottom: 0.05em;
  background: linear-gradient(135deg, #ffffff 0%, #e7ecf8 40%, #ffd45f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero .lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 62ch;
  margin-bottom: 1.3rem;
}

.hero-card,
.panel,
.callout,
.note-box,
.source-card,
.metric,
.page-card,
.quote-box,
.timeline-card,
.table-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
}

.hero-card,
.panel,
.callout,
.note-box,
.source-card,
.quote-box,
.timeline-card {
  position: relative;
  overflow: hidden;
}

.hero-card::before,
.panel::before,
.callout::before,
.note-box::before,
.source-card::before,
.quote-box::before {
  content: "";
  position: absolute;
  left: -2rem;
  bottom: -2rem;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(242,183,5,0.16), transparent 72%);
  pointer-events: none;
}

.hero-card { padding: 1.5rem; }

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  font-size: 0.82rem;
  color: #edf2ff;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.metric {
  padding: 1rem;
  border-radius: 18px;
}

.metric strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.metric span { color: var(--muted); font-size: 0.92rem; }

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  font-weight: 750;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover { transform: translateY(-1px); }

.button.primary {
  color: #0a1434;
  background: linear-gradient(135deg, #ffd45f 0%, #f2b705 100%);
  box-shadow: 0 14px 30px rgba(242,183,5,0.28);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 14px 30px rgba(242,183,5,0.28); }
  50% { box-shadow: 0 14px 40px rgba(242,183,5,0.45); }
}

.button.secondary {
  color: var(--text);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
}

.section {
  padding: 2.6rem 0 0.6rem;
}

.section-lg {
  padding: 2.8rem 0 0.6rem;
}

.section-header {
  max-width: 76ch;
  margin-bottom: 1.4rem;
}

.section-header h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #fff;
}

.section-header p {
  color: var(--muted);
  font-size: 1.02rem;
}

.grid-2, .grid-3, .grid-4, .story-grid, .page-grid, .footer-grid, .comparison-grid {
  display: grid;
  gap: 1.15rem;
}

.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.story-grid { grid-template-columns: 1.25fr 0.75fr; }
.page-grid { grid-template-columns: 1fr 320px; align-items: start; }
.comparison-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.panel, .callout, .note-box, .source-card, .quote-box, .timeline-card {
  padding: 1.45rem;
}

.kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.list,
.check-list,
.source-list,
.tight-list,
.link-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li,
.check-list li,
.source-list li,
.tight-list li,
.link-list li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.7rem;
  color: #d5dff6;
}

.list li::before,
.check-list li::before,
.source-list li::before,
.tight-list li::before,
.link-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.link-list a {
  color: #eef3ff;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.25);
  text-underline-offset: 0.18em;
}

.panel p, .callout p, .note-box p, .source-card p, .quote-box p, .timeline-card p {
  color: var(--muted);
}

.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 0.3rem;
  bottom: 0.3rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(94,162,255,0.42), rgba(242,183,5,0.28));
}

.timeline-item {
  position: relative;
  padding-left: 3.2rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0.56rem;
  top: 0.95rem;
  width: 0.88rem;
  height: 0.88rem;
  border-radius: 50%;
  background: #07112c;
  border: 3px solid var(--brand);
  box-shadow: 0 0 0 6px rgba(94,162,255,0.12);
}

.year {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
}

.timeline-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.table-shell {
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,0.03);
}

th, td {
  padding: 0.95rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

th {
  color: #fff;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.06);
}

td { color: var(--muted); }

tr:last-child td { border-bottom: 0; }

.page-links {
  display: grid;
  gap: 0.9rem;
}

.page-card {
  padding: 1.15rem;
  display: block;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.page-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242,183,5,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(242,183,5,0.06);
}

.page-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
}

.page-card p {
  margin: 0;
  color: var(--muted);
}

.page-card small {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.quote-box strong,
.note-box strong,
.callout strong {
  color: #fff;
}

.label-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}

.label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.24rem 0.65rem;
  border-radius: 999px;
  background: rgba(94,162,255,0.12);
  color: #dce9ff;
  border: 1px solid rgba(94,162,255,0.22);
  font-size: 0.8rem;
}

.aside-nav {
  position: sticky;
  top: 102px;
}

.aside-nav .panel { box-shadow: none; }

.aside-nav h3 {
  margin: 0 0 0.7rem;
  font-size: 1rem;
}

.muted {
  color: var(--muted);
}

hr.rule {
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 1.4rem 0;
}

.accent-section {
  margin-top: 3rem;
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(28,73,209,0.20), rgba(242,183,5,0.14));
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

.accent-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(242,183,5,0.08), transparent 70%);
  pointer-events: none;
}

footer {
  padding: 2.4rem 0 3.4rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 3.2rem;
}

.footer-grid {
  grid-template-columns: 1fr auto;
  align-items: start;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  color: var(--muted);
}

.footer-links a:hover { color: #fff; }

.footer-editorial {
  font-size: 0.78rem;
  font-style: italic;
  opacity: 0.7;
}

.footer-bottom {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.pplx-link {
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.6;
  text-decoration: none;
}

.pplx-link:hover {
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  /* Fallback: auto-reveal after animation delay if JS doesn't add .visible */
  animation: reveal-fallback 0s 3s forwards;
}

@keyframes reveal-fallback {
  to { opacity: 1; transform: translateY(0); }
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

@media (max-width: 1120px) {
  .page-hero .inner,
  .story-grid,
  .page-grid,
  .comparison-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .aside-nav { position: static; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 840px) {
  .site-header .container { min-height: 74px; }

  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1rem 1rem;
    background: rgb(7,17,44);
    border-bottom: 1px solid rgba(94,162,255,0.15);
    z-index: 100;
  }

  .site-nav.open { display: flex; }

  .site-nav > a {
    padding: 0.8rem 0.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-dropdown {
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-dropdown-label {
    padding: 0.8rem 0.2rem;
    width: 100%;
    color: var(--muted);
    font-size: 0.95rem;
  }

  .nav-dropdown-label::after {
    margin-left: auto;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0.5rem 1rem;
    box-shadow: none;
    min-width: 0;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-menu a {
    padding: 0.55rem 0.2rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }

  .page-hero { padding-top: 1.2rem; }

  .grid-3, .grid-2, .metrics {
    grid-template-columns: 1fr;
  }

  .grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 580px) {
  .container { width: min(calc(100% - 1.2rem), var(--max)); }
  .page-hero h1 { font-size: clamp(2.15rem, 12vw, 3.25rem); }
  .button { width: 100%; }
  .grid-4 { grid-template-columns: 1fr; }
  .timeline-item { padding-left: 2.7rem; }
  .timeline::before { left: 0.8rem; }
  .timeline-item::before { left: 0.36rem; }
  .promo-details-grid { grid-template-columns: 1fr; }
}

/* ── Disclosure bar ────────────────────────── */
.disclosure-bar {
  background: rgba(242,183,5,0.10);
  border-bottom: 1px solid rgba(242,183,5,0.18);
  padding: 0.55rem 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.disclosure-bar a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* ── Review verdict ────────────────────────── */
.review-verdict {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.verdict-score {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}

.score-number {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #ffd45f 0%, #f2b705 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.score-label {
  font-size: 1.2rem;
  color: var(--muted);
  font-weight: 600;
}

.verdict-text {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(141,208,141,0.14);
  border: 1px solid rgba(141,208,141,0.3);
  color: var(--success);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* ── Quick facts ────────────────────────── */
.quick-facts {
  display: grid;
  gap: 0;
}

.quick-fact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.quick-fact:last-child { border-bottom: 0; }

.quick-fact-label {
  color: var(--muted);
  font-size: 0.88rem;
}

.quick-fact-value {
  font-weight: 700;
  font-size: 0.92rem;
  text-align: right;
}

/* ── Rating bars ────────────────────────── */
.rating-grid {
  display: grid;
  gap: 0.8rem;
  max-width: 720px;
}

.rating-bar-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.rating-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rating-bar-label {
  font-size: 0.92rem;
  color: var(--muted);
}

.rating-bar-value {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--accent);
}

.rating-bar-track {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-deep), var(--brand));
  transition: width 0.6s ease;
}

/* ── Pros and cons ────────────────────────── */
.pros-label { color: var(--success); }
.cons-label { color: var(--danger, #ef4444); }

:root { --danger: #ef4444; }

.pros-cons-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros-cons-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  color: #d5dff6;
  font-size: 0.95rem;
  line-height: 1.55;
}

.pros-cons-list li::before {
  position: absolute;
  left: 0;
  top: 0.12em;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.pros li::before {
  content: "+";
  color: var(--success);
}

.cons li::before {
  content: "-";
  color: var(--danger);
}

/* ── Promo highlight cards ────────────────────────── */
.promo-highlight {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.promo-highlight h3 {
  margin: 0;
  font-size: 1.15rem;
}

.promo-amount {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffd45f 0%, #f2b705 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.promo-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 0.6rem 0;
}

.promo-details-grid > div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.detail-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.detail-value {
  font-weight: 700;
  font-size: 0.95rem;
}

.promo-highlight .button {
  margin-top: auto;
}

/* ── Sport tags ────────────────────────── */
.sport-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.sport-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(94,162,255,0.10);
  border: 1px solid rgba(94,162,255,0.2);
  color: #dce9ff;
  font-size: 0.84rem;
  font-weight: 600;
}

/* ── Step cards ────────────────────────── */
.step-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
  padding: 1.45rem;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  right: -1.5rem;
  top: -1.5rem;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(94,162,255,0.12), transparent 72%);
  pointer-events: none;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd45f 0%, #f2b705 100%);
  color: #0a1434;
  font-weight: 900;
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
}

.step-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

/* ── Promo code box ────────────────────────── */
.promo-code-box {
  text-align: center;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.promo-code-label {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.promo-code-display {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(242,183,5,0.12);
  border: 2px dashed rgba(242,183,5,0.4);
  border-radius: 14px;
  padding: 0.7rem 1.2rem;
  margin: 0.4rem 0;
}

.promo-code-text {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: var(--text);
  cursor: pointer;
  padding: 0.4rem 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.copy-btn:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.25);
}

.copy-btn.copied {
  background: rgba(141,208,141,0.18);
  border-color: rgba(141,208,141,0.35);
  color: var(--success);
}

.promo-code-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* ── Promo cards ────────────────────────── */
.promo-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
  padding: 1.45rem;
  position: relative;
  overflow: hidden;
}

.promo-card::before {
  content: "";
  position: absolute;
  left: -2rem;
  bottom: -2rem;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(242,183,5,0.10), transparent 72%);
  pointer-events: none;
}

.promo-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  background: rgba(94,162,255,0.12);
  border: 1px solid rgba(94,162,255,0.25);
  color: #dce9ff;
}

.promo-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
}

.promo-card p {
  color: var(--muted);
  margin: 0 0 0.8rem;
  font-size: 0.93rem;
}

.promo-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.promo-card-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
  color: #d5dff6;
}

/* ── FAQ accordion ────────────────────────── */
.faq-list {
  max-width: 800px;
  display: grid;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  list-style: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--muted);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] .faq-question::after {
  content: "-";
}

.faq-answer {
  padding: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer p { margin: 0; }

/* Trust strip */
.trust-strip {
  background: rgba(94,162,255,0.06);
  border-top: 1px solid rgba(94,162,255,0.12);
  border-bottom: 1px solid rgba(94,162,255,0.12);
  padding: 1rem 0;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem 2rem;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
  white-space: nowrap;
}

.trust-item svg {
  color: var(--brand);
  flex-shrink: 0;
}

/* Last updated badge */
.last-updated {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.6rem;
  padding: 0.3rem 0.8rem;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
}

.last-updated svg {
  flex-shrink: 0;
}

/* Mobile trust strip */
@media (max-width: 640px) {
  .trust-items {
    gap: 0.8rem 1.2rem;
    justify-content: flex-start;
  }
  .trust-item {
    font-size: 0.78rem;
  }
}

/* ===== Light Mode ===== */
[data-theme="light"] {
  --bg: #f5f7fa;
  --bg-soft: #e8ecf2;
  --bg-panel: rgba(0,0,0,0.03);
  --bg-panel-strong: rgba(0,0,0,0.06);
  --text: #1a1d27;
  --muted: #5a6278;
  --line: rgba(0,0,0,0.10);
  --brand: #1846c7;
  --brand-deep: #0d2f8a;
  --accent: #d4a005;
  --accent-soft: rgba(212,160,5,0.10);
  --success: #2d8a2d;
  --shadow: 0 24px 70px rgba(0,0,0,0.08);
}

[data-theme="light"] body {
  background: linear-gradient(180deg, #f0f3f8 0%, #f5f7fa 45%, #edf0f5 100%);
  color: var(--text);
}

[data-theme="light"] .site-header {
  background: rgba(245,247,250,0.88);
  border-bottom-color: rgba(0,0,0,0.08);
}

[data-theme="light"] .brand img.brand-wordmark {
  filter: invert(1) brightness(0.2);
}

[data-theme="light"] .nav-toggle {
  border-color: rgba(0,0,0,0.12);
  background: rgba(0,0,0,0.04);
}

[data-theme="light"] .nav-toggle .hamburger span {
  background: var(--text);
}

[data-theme="light"] .site-nav > a:hover,
[data-theme="light"] .site-nav > a[aria-current="page"],
[data-theme="light"] .nav-dropdown:hover > .nav-dropdown-label,
[data-theme="light"] .nav-dropdown-label[aria-current="page"] {
  color: var(--text);
}

[data-theme="light"] .nav-dropdown-menu {
  background: #fff;
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

[data-theme="light"] .nav-dropdown-menu a:hover {
  background: rgba(0,0,0,0.04);
}

[data-theme="light"] .page-hero {
  background: linear-gradient(135deg, #e8ecf2 0%, #dce2ed 50%, #d5dde9 100%);
}

[data-theme="light"] .page-hero h1 {
  background: linear-gradient(135deg, #111 0%, #1a1d27 40%, #1846c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="light"] .page-hero .lead {
  color: #3a3f50;
}

[data-theme="light"] .hero-card,
[data-theme="light"] .panel {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.06);
}

[data-theme="light"] .callout {
  background: rgba(255,255,255,0.7);
  border-color: rgba(0,0,0,0.06);
}

[data-theme="light"] .note-box {
  background: rgba(24,70,199,0.05);
  border-color: rgba(24,70,199,0.12);
}

[data-theme="light"] .badge {
  background: rgba(0,0,0,0.06);
  color: var(--text);
}

[data-theme="light"] .eyebrow {
  background: rgba(0,0,0,0.06);
  color: var(--muted);
}

[data-theme="light"] .button.primary {
  background: var(--accent);
  color: #111;
}

[data-theme="light"] .button.secondary {
  border-color: rgba(0,0,0,0.18);
  color: var(--text);
}

[data-theme="light"] .button.secondary:hover {
  background: rgba(0,0,0,0.04);
}

[data-theme="light"] .accent-section {
  background: rgba(24,70,199,0.04);
  border-color: rgba(24,70,199,0.10);
}

[data-theme="light"] .metric strong {
  color: var(--brand);
}

[data-theme="light"] .page-card {
  background: rgba(255,255,255,0.7);
  border-color: rgba(0,0,0,0.06);
}

[data-theme="light"] .page-card:hover {
  background: rgba(255,255,255,0.95);
  border-color: var(--brand);
}

[data-theme="light"] .section-header h2,
[data-theme="light"] h2 {
  color: #111;
}

[data-theme="light"] h3 {
  color: #1a1d27;
}

[data-theme="light"] .quick-facts {
  background: rgba(255,255,255,0.9);
  border-color: rgba(0,0,0,0.06);
}

[data-theme="light"] .quick-fact-value {
  color: var(--text);
}

[data-theme="light"] .promo-code-box {
  background: rgba(255,255,255,0.9);
  border-color: rgba(0,0,0,0.08);
}

[data-theme="light"] .promo-code-text {
  color: var(--brand);
}

[data-theme="light"] .promo-code-display {
  border-color: var(--accent);
}

[data-theme="light"] .disclosure-bar {
  background: rgba(24,70,199,0.06);
  color: var(--muted);
}

[data-theme="light"] .trust-strip {
  background: rgba(24,70,199,0.04);
  border-color: rgba(24,70,199,0.10);
}

[data-theme="light"] .trust-item svg {
  color: var(--brand);
}

[data-theme="light"] .last-updated {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.08);
  color: var(--muted);
}

[data-theme="light"] footer {
  background: #1a1d27;
  color: #e7ecf8;
  border-top-color: transparent;
}

[data-theme="light"] footer .muted {
  color: #a8b4cf;
}

[data-theme="light"] footer a {
  color: #a8b4cf;
}

[data-theme="light"] footer a:hover {
  color: #fff;
}

[data-theme="light"] footer strong {
  color: #fff;
}

[data-theme="light"] .pros-cons-list.pros li::before {
  color: var(--success);
}

[data-theme="light"] .pros-cons-list.cons li::before {
  color: #dc2626;
}

[data-theme="light"] table {
  border-color: rgba(0,0,0,0.06);
}

[data-theme="light"] th {
  background: rgba(0,0,0,0.03);
  color: var(--muted);
}

[data-theme="light"] td {
  border-color: rgba(0,0,0,0.06);
}

[data-theme="light"] .faq-item {
  border-color: rgba(0,0,0,0.08);
}

/* Theme toggle button */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-panel);
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  flex-shrink: 0;
  margin-left: 0.4rem;
}

.theme-toggle:hover {
  color: var(--text);
  background: var(--bg-panel-strong);
}

/* Dark mode (default): show sun icon (click to go light) */
.theme-toggle .icon-moon { display: none; }
.theme-toggle .icon-sun { display: block; }

/* Light mode: show moon icon (click to go dark) */
[data-theme="light"] .theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: block; }

/* Mobile nav light mode */
@media (max-width: 840px) {
  [data-theme="light"] .site-nav {
    background: #fff;
    border-bottom-color: rgba(0,0,0,0.08);
  }

  [data-theme="light"] .site-nav > a {
    border-bottom-color: rgba(0,0,0,0.06);
  }

  [data-theme="light"] .nav-dropdown {
    border-bottom-color: rgba(0,0,0,0.06);
  }

  .theme-toggle {
    margin: 0.6rem 0.2rem 0.2rem;
    width: 42px;
    height: 42px;
  }
}
