:root {
  --bg: #0a0a0c;
  --bg-2: #111114;
  --bg-3: #17171c;
  --ink: #f4f4f6;
  --ink-soft: #b9b9c2;
  --ink-mute: #74747f;
  --line: #26262e;
  --red: #e11d2a;
  --red-deep: #8e0f17;
  --red-glow: rgba(225, 29, 42, 0.35);
  --amber: #f0b429;
  --maxw: 980px;
  --r: 14px;
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.8);
  --font: "Inter", "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --serif: "Georgia", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(1200px 600px at 50% -10%, #1a1118 0%, transparent 60%),
    var(--bg);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--red);
  color: #fff;
}

a {
  color: inherit;
}

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

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}

/* ---------- Top bar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(10, 10, 12, 0.72);
  border-bottom: 1px solid var(--line);
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.brand .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px var(--red-glow);
}
.topbar .tag {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    115deg,
    transparent 0 38px,
    rgba(255, 255, 255, 0.015) 38px 39px
  );
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  padding-block: clamp(64px, 12vw, 120px);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 28px;
}
.eyebrow .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 var(--red-glow);
  }
  50% {
    box-shadow: 0 0 0 7px transparent;
  }
}
@media (prefers-reduced-motion: reduce) {
  .eyebrow .pulse {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}

.claim-label {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 16px;
}
.claim-hero {
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 900;
  margin: 0 0 40px;
  max-width: 16ch;
  text-wrap: balance;
}
.claim-hero .hl {
  color: transparent;
  background: linear-gradient(180deg, var(--red) 0%, var(--red-deep) 130%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Rating row — the verdict */
.rating-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 5vw, 48px);
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.rating-note {
  max-width: 540px;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--ink-soft);
  margin: 0;
}

/* Rating stamp */
.stamp {
  display: grid;
  place-items: center;
  text-align: center;
  border: 3px solid var(--red);
  color: var(--red);
  border-radius: 12px;
  padding: 14px 22px;
  transform: rotate(-6deg);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    0 0 0 1px rgba(225, 29, 42, 0.2),
    0 0 30px -6px var(--red-glow);
  background: rgba(225, 29, 42, 0.06);
}
.stamp small {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--ink-mute);
  font-weight: 700;
}
.stamp .word {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1;
}
.stamp--lg {
  padding: 22px 36px;
  border-width: 4px;
}
.stamp--lg .word {
  font-size: clamp(2.6rem, 7vw, 4rem);
}
.stamp--lg small {
  font-size: 0.68rem;
  margin-bottom: 4px;
}

@media (max-width: 640px) {
  .rating-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .stamp--lg {
    justify-self: center;
  }
}

/* ---------- Section ---------- */
.section {
  padding-block: clamp(56px, 10vw, 96px);
}
.section--alt {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}
.kicker {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 900;
  margin: 0 0 16px;
  text-wrap: balance;
}
.section-head p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  margin: 0;
}

/* ---------- Money cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 640px) {
  .cards {
    grid-template-columns: 1fr;
  }
}
.card {
  position: relative;
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.card .icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  color: var(--red);
}
.card .amount {
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--ink);
}
.card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0 0 16px;
}
.cite {
  display: block;
  font-family: var(--serif);
  font-size: 0.8rem;
  font-style: italic;
  color: var(--ink-mute);
  border-top: 1px solid var(--line);
  padding-top: 14px;
  line-height: 1.45;
}
.cite a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cite a:hover {
  color: var(--red);
}
.card--flag {
  background:
    radial-gradient(
      600px 200px at 0% 0%,
      rgba(225, 29, 42, 0.1),
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg-3), var(--bg-2));
}

/* ---------- Pull quote ---------- */
.pull {
  border-left: 4px solid var(--red);
  padding: 8px 0 8px 28px;
  margin: 0;
}
.pull blockquote {
  margin: 0;
  font-size: clamp(1.4rem, 3.6vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.pull blockquote .em {
  color: var(--red);
}
.pull cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ---------- Bottom line ---------- */
.bottomline {
  text-align: center;
}
.bottomline h2 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0 auto 18px;
  max-width: 16ch;
  text-wrap: balance;
}
.bottomline p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding-block: 40px;
}
.footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  align-items: center;
  justify-content: space-between;
}
.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 0.85rem;
}
.footer .links a {
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.footer .links a:hover {
  color: var(--ink);
}
.paidfor {
  margin: 0 auto;
  border: 1px solid var(--line);
  padding: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  text-align: center;
}
.paidfor strong {
  color: var(--ink-soft);
  font-weight: 700;
}

/* ---------- Legal pages (privacy / terms) ---------- */
.page-head {
  border-bottom: 1px solid var(--line);
}
.page-head .wrap {
  padding-block: clamp(48px, 9vw, 88px);
}
.page-head h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 900;
  margin: 0;
  text-wrap: balance;
}
.page-head .effective {
  margin: 18px 0 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.legal {
  max-width: 760px;
}
.legal h2 {
  font-size: clamp(1.3rem, 3.4vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 48px 0 14px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.legal h2:first-of-type {
  margin-top: 8px;
}
.legal .lede-block {
  font-size: 1.1rem;
  color: var(--ink);
}
.legal p,
.legal li {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}
.legal p {
  margin: 0 0 18px;
}
.legal ul {
  margin: 0 0 18px;
  padding-left: 22px;
}
.legal li {
  margin-bottom: 10px;
}
.legal a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--red);
}
.legal a:hover {
  color: var(--red);
}
.legal .section-divider {
  margin: 64px 0 0;
}

/* ---------- Media figures (16:9) ---------- */
.media-band {
  padding-block: clamp(36px, 7vw, 64px);
}
.media {
  margin: 0;
}
.media__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--bg-3);
  box-shadow: var(--shadow);
}
.media__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.75) contrast(1.08);
}
.media__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 12, 0.1) 0%,
    transparent 35%,
    rgba(10, 10, 12, 0.9) 100%
  );
  pointer-events: none;
}
.media__tag {
  position: absolute;
  left: clamp(14px, 2.5vw, 22px);
  top: clamp(14px, 2.5vw, 22px);
  z-index: 1;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 6px 13px;
  border-radius: 999px;
}
.media__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: 0;
  padding: clamp(18px, 3.5vw, 32px);
  max-width: 60ch;
  font-size: clamp(0.92rem, 2vw, 1.1rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  text-wrap: balance;
}
.media__caption .src {
  display: block;
  margin-top: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
