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

:root {
  --ink: #fff8e8;
  --text: #f6ead0;
  --muted: #cbbf9f;
  --soft: #9f9277;
  --gold: #f5c85c;
  --gold-2: #b78124;
  --pink: #f43f7f;
  --blue: #38bdf8;
  --purple: #a78bfa;
  --orange: #fb923c;
  --green: #31d6a3;
  --green-2: #0f8f6a;
  --red: #f06c7a;
  --violet: #482152;
  --felt: #071f18;
  --night: #090710;
  --panel: rgba(13, 11, 22, 0.86);
  --panel-strong: rgba(18, 13, 25, 0.96);
  --line: rgba(245, 200, 92, 0.24);
  --line-bright: rgba(245, 200, 92, 0.48);
  --shadow: rgba(0, 0, 0, 0.52);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 10%, rgba(49, 214, 163, 0.18), transparent 30%),
    radial-gradient(circle at 82% 4%, rgba(245, 200, 92, 0.16), transparent 26%),
    linear-gradient(90deg, rgba(9, 7, 16, 0.96), rgba(9, 7, 16, 0.7)),
    url("background.png") center top / cover fixed,
    var(--night);
}

a { color: inherit; }

.site-header {
  min-height: auto;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
}

.topbar {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo { width: 174px; height: auto; display: block; }

.main-nav,
.hero-actions,
.quick-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.main-nav { justify-content: flex-end; }

.main-nav a,
.footer-grid a,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.main-nav a:hover,
.footer-grid a:hover,
.button:hover {
  border-color: var(--gold);
  background: rgba(245, 200, 92, 0.13);
  box-shadow: 0 0 28px rgba(245, 200, 92, 0.18);
  transform: translateY(-2px);
}

.hero {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.8fr);
  gap: 30px;
  align-items: end;
}

.eyebrow {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: 0; color: var(--ink); }
h1, h2 { font-family: "Playfair Display", Georgia, serif; font-weight: 700; }
h1 { font-size: clamp(38px, 4.8vw, 68px); max-width: 880px; }
h2 { font-size: clamp(26px, 2.6vw, 40px); }
h3 { font-size: 22px; }
p { color: var(--muted); line-height: 1.68; }
li { margin: 5px 0; }

.hero-copy p { max-width: 710px; font-size: 18px; }
.hero-actions { margin-top: 24px; }
.button.primary { background: linear-gradient(180deg, #ffe58f, #c98b24); color: #201204; border-color: #ffe58f; }
.button.secondary { background: rgba(49, 214, 163, 0.1); border-color: rgba(49, 214, 163, 0.44); }
.button.ghost { background: rgba(255, 255, 255, 0.04); }

.review-card,
.content-panel,
.metric,
.step,
.policy-box,
.graph-card,
.timeline-card,
.warning-box,
.person-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(245, 200, 92, 0.08), transparent 34%),
    linear-gradient(315deg, rgba(56, 189, 248, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(25, 18, 33, 0.95), rgba(10, 8, 16, 0.91));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.38);
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease, background 190ms ease;
}

.review-card:hover,
.content-panel:hover,
.metric:hover,
.step:hover,
.policy-box:hover,
.graph-card:hover,
.timeline-card:hover,
.warning-box:hover,
.person-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 200, 92, 0.56);
  box-shadow: 0 20px 58px rgba(245, 200, 92, 0.13), 0 18px 48px rgba(0, 0, 0, 0.45);
}

.content-panel,
.policy-box,
.timeline-card,
.person-card {
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.content-panel:hover,
.policy-box:hover,
.timeline-card:hover,
.person-card:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.content-panel,
.policy-box {
  padding: 4px 0;
}

.content-panel h2,
.policy-box h2 {
  max-width: 760px;
  position: relative;
  padding-left: 18px;
}

.content-panel p,
.policy-box p,
.content-panel li,
.policy-box li {
  max-width: 72ch;
}

.content-panel h2::before,
.policy-box h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 4px;
  height: 0.95em;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--pink));
  box-shadow: 0 0 18px rgba(245, 200, 92, 0.35);
}

.content-panel p:first-of-type,
.policy-box p:first-of-type {
  color: #f3e7c8;
  font-size: 18px;
}

.content-panel p + p,
.policy-box p + p {
  margin-top: 10px;
}

.content-panel ul,
.content-panel ol,
.policy-box ul {
  max-width: 72ch;
  margin-top: 14px;
}

.split > aside.content-panel {
  padding: 18px 0 18px 22px;
  border-left: 1px solid rgba(245, 200, 92, 0.34);
}

.split > aside.content-panel h3,
.split > aside.content-panel h2 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--gold);
  padding-left: 0;
}

.split > aside.content-panel h3::before,
.split > aside.content-panel h2::before {
  display: none;
}

.split > aside.content-panel p {
  max-width: 46ch;
  margin: 10px 0 0;
  color: #dacdab;
}

.review-card { padding: 22px; }
.score { display: flex; align-items: baseline; gap: 8px; color: var(--gold); }
.score strong { font-size: 68px; line-height: 1; }
.score span { color: var(--muted); font-weight: 900; }

.verdict-chip,
.status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(49, 214, 163, 0.44);
  background: rgba(49, 214, 163, 0.12);
  color: #a8ffe3;
  font-weight: 900;
  font-size: 13px;
}

.status-chip.gold {
  border-color: rgba(245, 200, 92, 0.48);
  background: rgba(245, 200, 92, 0.13);
  color: #ffe8a5;
}

.status-chip.red {
  border-color: rgba(240, 108, 122, 0.44);
  background: rgba(240, 108, 122, 0.12);
  color: #ffd0d5;
}

.trust-stack,
.rating-list,
.graph-stack,
.timeline,
.method-grid {
  display: grid;
  gap: 14px;
}

.trust-row,
.bar-row,
.graph-line {
  display: grid;
  grid-template-columns: 150px 1fr 54px;
  gap: 12px;
  align-items: center;
  color: var(--muted);
}

.bar,
.graph-track {
  height: 14px;
  background: rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  overflow: hidden;
}

.bar i,
.graph-fill {
  display: block;
  height: 100%;
  width: var(--value);
  background: linear-gradient(90deg, var(--green), var(--blue), var(--gold));
  transition: width 240ms ease, filter 180ms ease;
}

.graph-line:nth-child(2) .graph-fill,
.trust-row:nth-child(2) .bar i { background: linear-gradient(90deg, var(--blue), var(--purple), var(--gold)); }

.graph-line:nth-child(3) .graph-fill,
.trust-row:nth-child(3) .bar i { background: linear-gradient(90deg, var(--green), var(--orange), var(--gold)); }

.graph-line:nth-child(4) .graph-fill,
.trust-row:nth-child(4) .bar i { background: linear-gradient(90deg, var(--pink), var(--purple), var(--blue)); }

.graph-line:hover .graph-fill,
.trust-row:hover .bar i {
  filter: saturate(1.35) brightness(1.12);
}

main { background: linear-gradient(180deg, rgba(9, 7, 16, 0.7), #090710 460px); }
.section { width: min(1200px, calc(100% - 32px)); margin: 0 auto; padding: 38px 0; }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr); gap: 34px; align-items: start; }
.three { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.content-panel,
.policy-box,
.graph-card,
.timeline-card,
.warning-box,
.person-card { padding: 22px; }
.content-panel,
.policy-box,
.timeline-card,
.person-card { padding: 8px 0; }
.content-panel + .content-panel { margin-top: 6px; }

.verdict-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.metric { padding: 18px; }
.metric b { display: block; color: var(--gold); font-size: 25px; margin-bottom: 7px; }
.metric span { color: var(--muted); line-height: 1.45; }

.score-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.graph-card h3,
.timeline-card h3,
.warning-box h3 { margin-bottom: 12px; }

.journey {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.journey-step {
  position: relative;
  min-height: 104px;
  padding: 14px;
  border: 1px solid rgba(49, 214, 163, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(49, 214, 163, 0.16), rgba(56, 189, 248, 0.08)),
    rgba(49, 214, 163, 0.08);
}

.journey-step:nth-child(2) { background: linear-gradient(145deg, rgba(245, 200, 92, 0.18), rgba(244, 63, 127, 0.08)); border-color: rgba(245, 200, 92, 0.28); }
.journey-step:nth-child(3) { background: linear-gradient(145deg, rgba(167, 139, 250, 0.18), rgba(56, 189, 248, 0.08)); border-color: rgba(167, 139, 250, 0.3); }
.journey-step:nth-child(4) { background: linear-gradient(145deg, rgba(244, 63, 127, 0.16), rgba(251, 146, 60, 0.08)); border-color: rgba(244, 63, 127, 0.3); }
.journey-step b { display: block; color: var(--green); font-size: 24px; margin-bottom: 7px; }
.journey-step:nth-child(2) b { color: var(--gold); }
.journey-step:nth-child(3) b { color: var(--purple); }
.journey-step:nth-child(4) b { color: var(--pink); }
.journey-step span { color: var(--muted); line-height: 1.45; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.policy-grid {
  display: block;
  max-width: 980px;
}

.policy-grid .policy-box + .policy-box {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(245, 200, 92, 0.18);
}

.step {
  display: block;
  padding: 20px;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.step:hover { border-color: var(--gold); background: rgba(245, 200, 92, 0.08); }
.step span,
.timeline-card span { color: var(--gold); font-weight: 900; }

.timeline { margin-top: 16px; }
.timeline-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  border-top: 1px solid rgba(245, 200, 92, 0.22);
  padding-top: 18px;
}

.timeline-card span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  background: rgba(245, 200, 92, 0.12);
}

.warning-box { border-color: rgba(240, 108, 122, 0.4); }
.warning-box h3 { color: #ffd0d5; }
.policy-box ul,
.content-panel ul,
.content-panel ol,
.timeline-card ol { color: var(--muted); line-height: 1.75; padding-left: 20px; }

.compact-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.mini-stat {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(244, 63, 127, 0.14), rgba(56, 189, 248, 0.08));
}

.mini-stat:nth-child(2) { background: linear-gradient(145deg, rgba(49, 214, 163, 0.15), rgba(245, 200, 92, 0.08)); }
.mini-stat:nth-child(3) { background: linear-gradient(145deg, rgba(167, 139, 250, 0.16), rgba(244, 63, 127, 0.08)); }
.mini-stat:nth-child(4) { background: linear-gradient(145deg, rgba(251, 146, 60, 0.15), rgba(245, 200, 92, 0.08)); }
.mini-stat b { display: block; color: var(--ink); font-size: 20px; margin-bottom: 6px; }
.mini-stat span { color: var(--muted); line-height: 1.45; }

.person-card { display: grid; grid-template-columns: 86px 1fr; gap: 18px; align-items: center; }
.avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d1204;
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(180deg, #ffe58f, #c98b24);
}

.site-footer { padding: 34px 0 44px; background: #07050c; border-top: 1px solid var(--line); }
.footer-inner { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; margin: 22px 0; }
.fine-print { font-size: 13px; color: var(--soft); }

.slot-section {
  padding-top: 22px;
}

.slot-intro {
  max-width: 760px;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.slot-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 190px;
  border: 1px solid rgba(245, 200, 92, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.slot-card img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  display: block;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.04);
}

.slot-card span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 6px;
  color: #170d04;
  font-weight: 900;
  background: linear-gradient(180deg, #ffe58f, #c98b24);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.slot-card:hover,
.slot-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(49, 214, 163, 0.72);
  box-shadow: 0 24px 70px rgba(49, 214, 163, 0.18), 0 18px 48px rgba(0, 0, 0, 0.48);
  filter: brightness(1.08);
}

.slot-card:hover span,
.slot-card:focus-visible span {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

@media (max-width: 900px) {
  .topbar,
  .hero,
  .split,
  .score-grid,
  .verdict-strip,
  .journey,
  .steps,
  .policy-grid,
  .three,
  .compact-band,
  .slot-grid,
  .footer-grid { grid-template-columns: 1fr; }

  .topbar { align-items: flex-start; flex-direction: column; }
  .main-nav { justify-content: flex-start; }
  .trust-row,
  .bar-row,
  .graph-line,
  .timeline-card,
  .person-card { grid-template-columns: 1fr; }
  .site-header { min-height: auto; }
}

@media (max-width: 640px) {
  body {
    background:
      linear-gradient(180deg, rgba(9, 7, 16, 0.58), rgba(9, 7, 16, 0.9) 42%, rgba(9, 7, 16, 0.98)),
      url("background.png") 64% 0 / auto 420px no-repeat,
      radial-gradient(circle at 20% 120px, rgba(49, 214, 163, 0.2), transparent 42%),
      var(--night);
    background-attachment: scroll;
  }

  .topbar,
  .hero,
  .section,
  .footer-inner {
    width: min(100% - 24px, 420px);
  }

  .topbar {
    padding: 12px 0 8px;
    gap: 12px;
  }

  .logo {
    width: 146px;
  }

  .main-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .main-nav a,
  .footer-grid a,
  .button {
    min-height: 38px;
    padding: 8px 9px;
    font-size: 13px;
    text-align: center;
    line-height: 1.2;
  }

  .main-nav a:first-child {
    grid-column: 1 / -1;
  }

  .hero {
    padding: 28px 0 24px;
    gap: 14px;
  }

  .eyebrow {
    font-size: 12px;
  }

  h1 {
    font-size: clamp(31px, 10vw, 42px);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(24px, 7.2vw, 31px);
  }

  h3 {
    font-size: 20px;
  }

  p,
  li {
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 16px;
  }

  .section {
    padding: 20px 0;
  }

  .content-panel h2,
  .policy-box h2 {
    padding-left: 14px;
  }

  .content-panel p:first-of-type,
  .policy-box p:first-of-type {
    font-size: 16px;
  }

  .split > aside.content-panel {
    padding: 14px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(245, 200, 92, 0.28);
  }

  .review-card,
  .content-panel,
  .metric,
  .step,
  .policy-box,
  .graph-card,
  .timeline-card,
  .warning-box,
  .person-card {
    padding: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38);
  }

  .content-panel,
  .policy-box,
  .timeline-card,
  .person-card {
    padding: 6px 0;
    box-shadow: none;
  }

  .review-card:hover,
  .content-panel:hover,
  .metric:hover,
  .step:hover,
  .policy-box:hover,
  .graph-card:hover,
  .timeline-card:hover,
  .warning-box:hover,
  .person-card:hover,
  .main-nav a:hover,
  .footer-grid a:hover,
  .button:hover {
    transform: none;
  }

  .score {
    display: block;
  }

  .score strong {
    font-size: 48px;
  }

  .verdict-strip,
  .score-grid,
  .journey,
  .steps,
  .policy-grid,
  .three,
  .compact-band,
  .timeline,
  .method-grid,
  .trust-stack,
  .graph-stack {
    gap: 10px;
  }

  .trust-row,
  .bar-row,
  .graph-line {
    grid-template-columns: 1fr auto;
    gap: 7px 10px;
  }

  .trust-row .bar,
  .bar-row .bar,
  .graph-line .graph-track {
    grid-column: 1 / -1;
    height: 16px;
  }

  .timeline-card span {
    width: 42px;
    height: 42px;
  }

  .journey-step {
    min-height: auto;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 18px 0;
  }

  .slot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .slot-card,
  .slot-card img {
    min-height: 150px;
  }

  .slot-card:hover {
    transform: none;
  }

  .slot-card span {
    opacity: 0;
    transform: translateY(12px);
  }

  .site-footer {
    padding: 24px 0 30px;
  }
}

@media (max-width: 380px) {
  .main-nav,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 30px;
  }
}
