:root {
  --bg: #0a0f1b;
  --bg-elevated: #121a2b;
  --panel: #ffffff;
  --panel-soft: #f4f7fb;
  --text: #e8edf6;
  --text-dark: #152033;
  --muted: #a6b2c8;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(21, 32, 51, 0.12);
  --accent: #ff5a1f;
  --accent-2: #ffd54a;
  --success: #1cca76;
  --danger: #ff304f;
  --shadow: 0 18px 55px rgba(3, 10, 24, 0.32);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 90, 31, 0.24), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 213, 74, 0.18), transparent 24%),
    linear-gradient(180deg, #111a2d 0%, #08111f 45%, #060b14 100%);
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-shell {
  overflow: clip;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(8, 13, 24, 0.85);
  border-bottom: 1px solid var(--line);
}

.topline {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 90, 31, 0.14), rgba(255, 213, 74, 0.08));
}

.topline-inner,
.header-main,
.hero-grid,
.trust-strip,
.rating-grid,
.review-grid,
.site-footer-inner,
.legal-layout,
.contact-grid {
  display: grid;
  gap: 16px;
}

.topline-inner {
  grid-template-columns: 1fr;
  padding: 10px 0;
  font-size: 0.82rem;
  color: #ffe8c4;
}

.header-main {
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 14px 0;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: var(--shadow);
  color: #09111f;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.2rem;
}

.brand-text {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.08rem;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-nav a,
.site-nav span {
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.92rem;
  color: #dce5f4;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.site-nav .current {
  background: linear-gradient(135deg, rgba(255, 90, 31, 0.2), rgba(255, 213, 74, 0.2));
  color: #fff2d4;
}

.hero {
  padding: 28px 0 20px;
}

.hero-grid {
  align-items: stretch;
}

.hero-card,
.scoreboard,
.review-card,
.widget-section,
.popular-section,
.content-panel,
.legal-card,
.contact-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 24px;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffe6b3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.display-title {
  margin: 16px 0 10px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.6rem, 9vw, 5.2rem);
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.display-title strong {
  color: var(--accent-2);
}

.hero-copy {
  max-width: 58ch;
  color: #d6dfef;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.cta,
.cta-secondary,
.offer-button,
.sticky-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 14px;
  border: 0;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
}

.cta,
.offer-button,
.sticky-button {
  color: #09111f;
  background: linear-gradient(135deg, var(--accent-2), #ffb627);
  box-shadow: 0 14px 30px rgba(255, 181, 39, 0.3);
}

.cta-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.scoreboard {
  padding: 20px;
}

.score-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.score-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(28, 202, 118, 0.14);
  color: #baf0d0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.score-rating {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3rem, 15vw, 5rem);
  line-height: 1;
  color: #fff6da;
}

.score-note {
  margin: 10px 0 0;
  color: #d9e3f4;
}

.trust-strip {
  margin-top: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-item {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

.trust-label {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9eb0cb;
}

.trust-value {
  display: block;
  margin-top: 4px;
  font-weight: 700;
  font-size: 1rem;
}

.widget-wrap {
  padding: 8px 0 10px;
}

.widget-section,
.popular-section,
.content-panel,
.legal-card,
.contact-card {
  padding: 22px 18px;
}

.section-heading {
  margin: 0 0 14px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.section-subcopy {
  margin: 0 0 16px;
  color: #d0daea;
}

.review-grid,
.rating-grid {
  grid-template-columns: 1fr;
}

.review-card {
  overflow: hidden;
}

.review-card-top {
  padding: 18px 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 213, 74, 0.14);
  color: #ffe6a6;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.15rem;
}

.review-stars {
  color: #ffd86c;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.review-body {
  padding: 10px 18px 18px;
}

.review-title {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.review-offer {
  margin: 10px 0 12px;
  color: #fef3cf;
  font-weight: 700;
  font-size: 1rem;
}

.review-points {
  margin: 0 0 16px;
  padding-left: 20px;
  color: #d4deee;
}

.review-points li + li {
  margin-top: 6px;
}

.popular-list {
  margin: 0;
  padding-left: 20px;
}

.popular-list li + li {
  margin-top: 10px;
}

.content-panel {
  color: var(--text-dark);
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  border-color: rgba(21, 32, 51, 0.08);
}

.content-panel h1,
.content-panel h2,
.content-panel h3 {
  color: #0f1b30;
  line-height: 1.12;
}

.content-panel h1 {
  margin: 0 0 14px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.2rem, 8vw, 4rem);
  text-transform: uppercase;
}

.content-panel h2 {
  margin: 28px 0 14px;
  font-size: clamp(1.55rem, 4vw, 2.4rem);
}

.content-panel h3 {
  margin: 22px 0 10px;
  font-size: clamp(1.15rem, 3vw, 1.55rem);
}

.content-panel p,
.content-panel li {
  color: #243349;
  font-size: 1rem;
}

.content-panel ul,
.content-panel ol {
  padding-left: 22px;
}

.content-panel table {
  width: 100%;
  border-collapse: collapse;
  display: block;
  overflow-x: auto;
  white-space: nowrap;
  border-radius: 16px;
  border: 1px solid rgba(21, 32, 51, 0.1);
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(21, 32, 51, 0.04);
}

.content-panel thead {
  background: linear-gradient(135deg, rgba(255, 90, 31, 0.08), rgba(255, 213, 74, 0.16));
}

.content-panel th,
.content-panel td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(21, 32, 51, 0.08);
  text-align: left;
}

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

.content-panel strong {
  color: #0c1729;
}

.deep-dive {
  padding-top: 4px;
}

.deep-dive h3 {
  overflow-wrap: anywhere;
  word-break: normal;
  white-space: normal;
  padding-right: 4px;
}

.affiliate-note,
.faq-note,
.legal-note {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 90, 31, 0.08);
  border: 1px solid rgba(255, 90, 31, 0.14);
}

.site-footer {
  padding: 28px 0 80px;
}

.site-footer-inner {
  grid-template-columns: 1fr;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-nav a,
.footer-nav span {
  color: #d9e2f1;
  text-decoration: none;
}

.footer-nav span {
  opacity: 0.72;
}

.footer-copy {
  color: #a8b7cf;
  font-size: 0.92rem;
}

.sticky-offer {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 25;
  width: min(360px, calc(100vw - 24px));
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 213, 74, 0.34);
  background: linear-gradient(135deg, rgba(9, 14, 24, 0.96), rgba(23, 33, 54, 0.96));
  box-shadow: 0 22px 48px rgba(6, 10, 20, 0.42);
}

.sticky-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
}

.sticky-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-rank {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #ff8d39);
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.3rem;
}

.sticky-title {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.1;
}

.sticky-stars {
  color: #ffd76e;
  font-size: 0.95rem;
}

.sticky-offer p {
  margin: 12px 0 14px;
  color: #ffecc3;
  font-weight: 700;
}

.sticky-hidden {
  display: none;
}

.page-banner {
  padding: 34px 0 20px;
}

.page-banner-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.page-banner h1 {
  margin: 12px 0 8px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2rem, 8vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
}

.legal-layout,
.contact-grid {
  grid-template-columns: 1fr;
  padding-bottom: 24px;
}

.legal-card,
.contact-card {
  color: var(--text-dark);
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  border-color: rgba(21, 32, 51, 0.08);
}

.contact-list,
.legal-card ul {
  padding-left: 20px;
}

.contact-list li + li,
.legal-card li + li {
  margin-top: 8px;
}

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

.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;
}

@media (min-width: 720px) {
  .topline-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.85fr);
  }

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

  .rating-grid,
  .trust-strip,
  .site-footer-inner,
  .legal-layout,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .review-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .widget-section,
  .popular-section,
  .content-panel {
    padding: 28px;
  }
}

@media (max-width: 719px) {
  .site-nav {
    justify-content: flex-start;
  }

  .header-main {
    grid-template-columns: 1fr;
  }

  .sticky-offer {
    left: 12px;
    right: 12px;
    width: auto;
  }
}
