:root {
  color-scheme: dark;
  --bg: #070707;
  --panel: #101010;
  --panel-2: #151515;
  --line: #252525;
  --gold: #d9bd7a;
  --gold-2: #ead39e;
  --green: #08bf5b;
  --green-2: #25d06e;
  --text: #f8f8f8;
  --muted: #c4c4c4;
  --soft: #8f8f8f;
  --danger: #ff5b5b;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: rgba(228, 194, 127, 0.32);
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--green);
  color: #041007;
  padding: 0.65rem 0.9rem;
  border-radius: 6px;
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 7, 7, 0.92);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: calc(100% - 2rem);
  max-width: var(--max);
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(228, 194, 127, 0.55);
  border-radius: 8px;
  color: var(--gold);
  background: #121212;
  font-size: 0.82rem;
  font-weight: 900;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.main-nav a:hover,
.footer-links a:hover,
.toc a:hover,
.text-link:hover {
  color: var(--gold-2);
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0.76rem 1.05rem;
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn-primary {
  background: var(--green);
  color: #031006;
  box-shadow: 0 10px 22px rgba(8, 191, 91, 0.16);
}

.btn-primary:hover {
  background: var(--green-2);
}

.btn-secondary {
  color: var(--gold-2);
  border-color: rgba(217, 189, 122, 0.34);
  background: rgba(217, 189, 122, 0.06);
}

.btn-muted {
  color: var(--muted);
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.btn-block {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: grid;
  align-items: center;
  border-bottom: 1px solid rgba(228, 194, 127, 0.16);
  background: #080808;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  z-index: 0;
  background: linear-gradient(90deg, rgba(7, 7, 7, 0.98) 0%, rgba(7, 7, 7, 0.9) 42%, rgba(7, 7, 7, 0.6) 74%, rgba(7, 7, 7, 0.86) 100%);
}

.hero-picture {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  padding: 3.6rem 0 3rem;
  min-width: 0;
}

.eyebrow,
.kicker {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  margin-top: 0.65rem;
  font-size: clamp(2.15rem, 5.2vw, 4.25rem);
  max-width: 880px;
}

h2 {
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
}

h3 {
  font-size: 1.22rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 720px;
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.16rem);
}

.hero-actions,
.cta-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.45rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(248, 248, 248, 0.12);
  border-radius: 999px;
  padding: 0.28rem 0.68rem;
  color: var(--text);
  background: rgba(17, 17, 17, 0.72);
  font-size: 0.82rem;
  font-weight: 750;
}

.badge.gold {
  color: #17110a;
  border-color: var(--gold);
  background: var(--gold);
}

.notice {
  margin-top: 1rem;
  max-width: 760px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb {
  width: calc(100% - 2rem);
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.breadcrumb a {
  color: var(--gold-2);
}

.content-section {
  padding: 2.9rem 0;
  border-bottom: 1px solid rgba(248, 248, 248, 0.08);
}

.section-head {
  display: grid;
  gap: 0.75rem;
  max-width: 830px;
  margin-bottom: 1.35rem;
}

.compact-head {
  margin-top: 2rem;
}

.section-head p,
.prose p,
.prose li {
  color: var(--muted);
}

.toc {
  display: grid;
  gap: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: 1rem;
  background: #0b0b0b;
}

.toc strong {
  color: var(--gold-2);
}

.toc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.toc a {
  display: inline-flex;
  border: 1px solid rgba(248, 248, 248, 0.09);
  border-radius: 999px;
  padding: 0.42rem 0.66rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: var(--panel);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 0.92rem;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid rgba(248, 248, 248, 0.08);
}

th {
  color: var(--gold-2);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #0c0c0c;
}

td {
  color: var(--muted);
  font-size: 0.92rem;
}

td strong {
  color: var(--text);
}

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

.rating {
  color: var(--gold-2);
  font-weight: 900;
  white-space: nowrap;
}

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

.cards-2 {
  grid-template-columns: 1fr;
}

.cards-3 {
  grid-template-columns: 1fr;
}

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

.review-card,
.info-card,
.market-card,
.cta-band,
.legal-box {
  border: 1px solid rgba(248, 248, 248, 0.1);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--panel) 0%, #0d0d0d 100%);
}

.review-card {
  display: grid;
  gap: 0.95rem;
  padding: 1.2rem;
}

.rank-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.rank-number {
  display: inline-flex;
  align-items: center;
  color: var(--gold-2);
  font-size: 0.95rem;
  font-weight: 850;
}

.offer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.mini-tag {
  border: 1px solid rgba(228, 194, 127, 0.2);
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 750;
}

.info-card {
  padding: 1rem;
}

.market-strip {
  margin-top: 1.5rem;
}

.rotation-note {
  color: var(--soft);
  font-size: 0.86rem;
}

.market-card {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  background: #0d0d0d;
}

.market-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.info-card h3 {
  margin-bottom: 0.55rem;
}

.prose {
  display: grid;
  gap: 1.1rem;
}

.prose h2 {
  margin-top: 1.1rem;
}

.prose h3 {
  margin-top: 0.4rem;
}

.prose ul,
.prose ol {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.15rem;
}

.text-link {
  color: var(--gold-2);
  font-weight: 800;
}

.affiliate-note,
.responsible-note {
  border-left: 2px solid var(--gold);
  padding: 0.8rem 0.95rem;
  color: var(--muted);
  background: rgba(228, 194, 127, 0.08);
  font-size: 0.92rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  border: 1px solid rgba(248, 248, 248, 0.1);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  background: var(--panel);
}

summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 900;
}

details p {
  margin-top: 0.75rem;
  color: var(--muted);
}

.cta-band {
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem;
  border-color: rgba(8, 191, 91, 0.18);
  background:
    linear-gradient(135deg, rgba(8, 191, 91, 0.08), transparent 48%),
    #0d0d0d;
}

.ad-slot {
  min-height: 96px;
  margin-top: 1.35rem;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--soft);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ad-slot ins {
  width: 100%;
  min-height: 72px;
}

.page-hero {
  padding: 3.8rem 0 2.6rem;
  border-bottom: 1px solid rgba(248, 248, 248, 0.08);
  background:
    linear-gradient(90deg, rgba(228, 194, 127, 0.08), transparent 40%),
    #080808;
}

.page-hero .lead {
  max-width: 800px;
}

.site-footer {
  padding: 2.5rem 0 5.5rem;
  background: #050505;
}

.footer-inner {
  display: grid;
  gap: 1.4rem;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.fine-print {
  color: var(--muted);
  font-size: 0.86rem;
}

.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 11;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  padding: 0.62rem;
  background: rgba(7, 7, 7, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
}

.mobile-sticky-cta .btn {
  min-height: 42px;
  padding: 0.6rem 0.5rem;
  font-size: 0.82rem;
}

.legal-box {
  padding: 1rem;
}

.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: 740px) {
  .main-nav {
    display: flex;
  }

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

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

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

  .review-card,
  .info-card,
  .market-card,
  .cta-band,
  .legal-box {
    padding: 1.4rem;
  }

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

  .mobile-sticky-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 2.5rem;
  }
}

@media (min-width: 980px) {
  .article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 2rem;
    align-items: start;
  }

  .article-aside {
    position: sticky;
    top: 92px;
  }
}

@media (max-width: 520px) {
  .header-inner {
    min-height: 64px;
  }

  .header-inner > .btn {
    display: none;
  }

  .brand {
    font-size: 0.98rem;
  }

  .hero {
    min-height: 520px;
    background-position: 62% center;
  }

  .hero-inner,
  .section-inner,
  .footer-inner,
  .breadcrumb {
    width: calc(100% - 3rem);
  }

  .hero-copy {
    max-width: 340px;
    padding: 3.2rem 0 2.5rem;
  }

  h1,
  .lead,
  .notice,
  .badges,
  .hero-actions {
    width: 100%;
    max-width: 100%;
  }

  h1 {
    overflow-wrap: anywhere;
  }

  .lead,
  .notice {
    overflow-wrap: break-word;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }
}
