:root {
  --bg: #140f08;
  --bg-soft: #23170b;
  --surface: rgba(25, 18, 10, 0.88);
  --surface-strong: #1d140a;
  --card: rgba(40, 27, 13, 0.95);
  --line: rgba(255, 197, 80, 0.18);
  --text: #f8f1dd;
  --muted: #c7b896;
  --accent: #ffc54f;
  --accent-2: #ff7a1a;
  --accent-3: #fff0a5;
  --success: #7df5a6;
  --danger: #ff8f7b;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 181, 46, 0.22), transparent 32%),
    radial-gradient(circle at right 20%, rgba(255, 122, 26, 0.2), transparent 28%),
    linear-gradient(180deg, #2a1a0b 0%, #140f08 24%, #0d0905 100%);
  line-height: 1.65;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
}

.skip-link:focus {
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: #fff;
  color: #000;
  border-radius: 999px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(12, 8, 5, 0.84);
  border-bottom: 1px solid rgba(255, 197, 80, 0.12);
}

.header-inner,
.page-shell,
.footer-inner,
.notice-bar-inner {
  width: min(calc(100% - 1.25rem), var(--max));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  font-family: Baskerville, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent-3);
}

.header-nav,
.footer-nav,
.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.header-nav a,
.footer-nav a,
.mini-links a {
  color: var(--muted);
  font-size: 0.95rem;
}

.header-nav a:hover,
.footer-nav a:hover,
.mini-links a:hover {
  color: var(--accent-3);
}

.notice-bar {
  border-bottom: 1px solid rgba(255, 197, 80, 0.12);
  background: linear-gradient(90deg, rgba(255, 197, 80, 0.16), rgba(255, 122, 26, 0.16));
}

.notice-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  color: var(--accent-3);
  font-size: 0.92rem;
}

.notice-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 240, 165, 0.12);
  border: 1px solid rgba(255, 240, 165, 0.18);
}

.page-shell {
  padding: 1.1rem 0 4rem;
}

.hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(145deg, rgba(255, 197, 80, 0.08), rgba(255, 122, 26, 0.12)),
    rgba(19, 13, 8, 0.95);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -4rem -4rem auto;
  width: 11rem;
  height: 11rem;
  background: radial-gradient(circle, rgba(255, 197, 80, 0.3), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 1.25rem;
}

.kicker,
.money-heading,
.section-overline {
  font-family: Baskerville, "Times New Roman", serif;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 197, 80, 0.22);
  background: rgba(255, 197, 80, 0.08);
  color: var(--accent-3);
  font-size: 0.9rem;
}

.hero h1,
.money-heading,
.page-title,
.editorial-content h1,
.editorial-content h2,
.editorial-content h3,
.support-card h1,
.support-card h2 {
  font-family: Baskerville, "Times New Roman", serif;
  line-height: 1.1;
}

.hero h1,
.page-title {
  margin: 0.75rem 0 0.9rem;
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.hero p {
  margin: 0;
  max-width: 58ch;
  color: #f4e6c0;
}

.hero-stack {
  display: grid;
  gap: 1rem;
}

.hero-stats {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-stat {
  padding: 0.95rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 197, 80, 0.12);
}

.hero-stat strong {
  display: block;
  font-size: 1.25rem;
  color: var(--accent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button,
.button-secondary,
.sticky-offer-button,
.review-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button,
.review-card-cta,
.sticky-offer-button {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #241300;
  box-shadow: 0 16px 30px rgba(255, 122, 26, 0.22);
}

.button-secondary {
  border: 1px solid rgba(255, 197, 80, 0.3);
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-3);
}

.button:hover,
.button-secondary:hover,
.sticky-offer-button:hover,
.review-card-cta:hover {
  transform: translateY(-1px);
}

.offer-strip,
.conversion-banner,
.info-card,
.review-card,
.support-card,
.widget-frame,
.editorial-content,
.article-sidebar-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.offer-strip {
  margin-top: 1rem;
  padding: 1rem;
  display: grid;
  gap: 0.9rem;
}

.offer-strip strong {
  color: var(--accent);
}

.widget-frame {
  margin-top: 1.25rem;
  overflow: hidden;
}

.review-card {
  margin-top: 1rem;
  padding: 1rem;
  display: grid;
  gap: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 197, 80, 0.12), rgba(255, 122, 26, 0.08)),
    rgba(28, 18, 8, 0.96);
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.rank-pill,
.mini-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  min-height: 3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #241300;
  font-weight: 800;
}

.review-card-copy h2,
.review-card-copy h3,
.editorial-content h2,
.editorial-content h3,
.support-card h2,
.support-card h3 {
  margin: 0;
}

.review-card-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.review-card-copy p,
.support-card p,
.support-card li,
.editorial-content p,
.editorial-content li {
  color: var(--text);
}

.stars {
  letter-spacing: 0.16em;
  color: var(--accent);
  font-size: 1rem;
}

.review-card-points,
.support-list,
.footer-list,
.popular-five {
  display: grid;
  gap: 0.7rem;
}

.review-card-points {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.review-card-point {
  padding: 0.9rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 197, 80, 0.14);
}

.review-card-point span,
.info-card span,
.support-highlight span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.review-card-point strong,
.info-card strong,
.support-highlight strong {
  display: block;
  color: var(--accent-3);
  margin-top: 0.2rem;
}

.content-layout {
  display: grid;
  gap: 1.2rem;
  align-items: start;
  margin-top: 1.2rem;
}

.article-sidebar {
  display: grid;
  gap: 1rem;
}

.article-sidebar-card {
  padding: 1rem;
}

.article-sidebar-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-family: Baskerville, "Times New Roman", serif;
  font-size: 1.2rem;
}

.article-sidebar-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.money-heading {
  font-size: clamp(1.9rem, 3.5vw, 3.5rem);
  margin: 0;
}

.editorial-content {
  padding: 1rem;
}

.editorial-content > *:first-child {
  margin-top: 0;
}

.editorial-content h1,
.editorial-content h2,
.editorial-content h3 {
  overflow: visible;
  text-wrap: balance;
}

.editorial-content h1 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  margin: 1.2rem 0 0.9rem;
}

.editorial-content h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  margin: 1.8rem 0 0.8rem;
  color: var(--accent-3);
}

.editorial-content h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  margin: 1.35rem 0 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(255, 197, 80, 0.08);
  border: 1px solid rgba(255, 197, 80, 0.14);
}

.editorial-content table {
  width: 100%;
  display: block;
  overflow-x: auto;
  border-collapse: collapse;
  margin: 1rem 0 1.25rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.editorial-content thead {
  background: rgba(255, 197, 80, 0.12);
}

.editorial-content tr {
  border-bottom: 1px solid rgba(255, 197, 80, 0.12);
}

.editorial-content th,
.editorial-content td {
  min-width: 160px;
  padding: 0.9rem 1rem;
  text-align: left;
  vertical-align: top;
}

.editorial-content ul,
.editorial-content ol {
  padding-left: 1.2rem;
}

.editorial-content strong {
  color: var(--accent-3);
}

.popular-five {
  margin: 1rem 0 1.4rem;
  padding: 0;
  list-style: none;
}

.popular-five li {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 197, 80, 0.12);
}

.conversion-banner {
  margin: 1.2rem 0;
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
  background:
    linear-gradient(120deg, rgba(255, 197, 80, 0.12), rgba(255, 122, 26, 0.08)),
    rgba(30, 19, 9, 0.95);
}

.conversion-banner h2,
.conversion-banner p {
  margin: 0;
}

.support-grid {
  display: grid;
  gap: 1rem;
}

.support-card {
  padding: 1.1rem;
}

.support-card h1 {
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.support-highlight {
  padding: 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 197, 80, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.contact-methods {
  display: grid;
  gap: 0.8rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 197, 80, 0.12);
  background: rgba(8, 6, 4, 0.86);
}

.footer-inner {
  padding: 1.6rem 0 5rem;
  display: grid;
  gap: 1rem;
}

.footer-copy {
  color: var(--muted);
  font-size: 0.92rem;
}

.sticky-offer {
  position: fixed;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 40;
  width: min(calc(100vw - 1.7rem), 335px);
  padding: 0.95rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 197, 80, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 197, 80, 0.13), rgba(255, 122, 26, 0.08)),
    rgba(15, 10, 6, 0.96);
  box-shadow: var(--shadow);
}

.sticky-offer[data-hidden="true"] {
  display: none;
}

.sticky-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.sticky-offer h3 {
  margin: 0.15rem 0 0.2rem;
  font-family: Baskerville, "Times New Roman", serif;
  font-size: 1.3rem;
}

.sticky-offer p {
  margin: 0.25rem 0 0.8rem;
  color: var(--text);
}

.close-sticky {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.25rem;
  cursor: pointer;
}

.sticky-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.legal-note {
  font-size: 0.86rem;
  color: var(--muted);
}

@media (min-width: 760px) {
  .page-shell {
    padding-top: 1.4rem;
  }

  .hero {
    padding: 1.8rem;
  }

  .hero-grid {
    grid-template-columns: 1.3fr 0.7fr;
    align-items: end;
  }

  .offer-strip,
  .review-card,
  .conversion-banner,
  .editorial-content,
  .support-card {
    padding: 1.4rem;
  }

  .content-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

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

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

  .review-card {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }
}

@media (max-width: 759px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .notice-bar-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .sticky-offer {
    left: 0.85rem;
    width: auto;
  }
}
