﻿:root {
  --bg: #080908;
  --surface: #111411;
  --surface-2: #191d18;
  --ink: #fff6dd;
  --muted: #c7bea5;
  --gold: #f3b83f;
  --gold-2: #ffe49b;
  --green: #16bd74;
  --red: #d91f2d;
  --line: rgba(255, 246, 221, 0.14);
  --shadow: rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding: 0 6vw;
  background: rgba(7, 8, 7, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  display: block;
  width: 132px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover,
.footer a:hover {
  color: var(--gold-2);
}

.top-cta,
.play-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 900;
}

.top-cta,
.button.primary {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #171006;
  box-shadow: 0 14px 30px rgba(243, 184, 63, 0.2);
}

.play-cta,
.button.play {
  background: linear-gradient(180deg, #ff4655, var(--red));
  color: #fff;
  box-shadow: 0 14px 30px rgba(217, 31, 45, 0.25);
}


.button.secondary {
  border: 1px solid rgba(255, 246, 221, 0.34);
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background: url("assets/hero.png") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-shade {
  background:
    radial-gradient(circle at 78% 24%, rgba(243, 184, 63, 0.28), transparent 32%),
    linear-gradient(90deg, rgba(8, 9, 8, 0.96), rgba(8, 9, 8, 0.78) 44%, rgba(8, 9, 8, 0.22)),
    linear-gradient(0deg, var(--bg), transparent 26%);
}

.hero-inner {
  position: relative;
  width: min(820px, 88vw);
  margin-left: 6vw;
  padding: 76px 0 122px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 5.8vw, 78px);
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.22;
}

.hero p:not(.eyebrow),
.band p,
.timeline span,
.variant-grid span,
.promo-list span,
.footer p {
  color: var(--muted);
}

.hero-inner > p:not(.eyebrow) {
  width: min(680px, 100%);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-strip span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 246, 221, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
}

.band {
  padding: 88px 6vw;
  border-top: 1px solid var(--line);
}

.intro-band,
.product-band,
.license-band {
  background: #0e100e;
}

.section-head {
  width: min(780px, 100%);
  margin-bottom: 34px;
}

.toc-band {
  background: #0d100e;
}

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

.toc-grid a {
  display: block;
  min-height: 132px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  box-shadow: 0 18px 42px var(--shadow);
  color: var(--ink);
  font-weight: 900;
  line-height: 1.35;
}

.toc-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.content-figure {
  margin: 34px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 18px 42px var(--shadow);
}

.content-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.content-figure figcaption {
  padding: 14px 18px;
  color: var(--muted);
  font-size: 13px;
}

.long-section:nth-of-type(odd) {
  background: #0e100e;
}

.content-wrap {
  width: min(1040px, 100%);
}

.content-wrap h2 {
  width: min(880px, 100%);
}

.content-wrap p {
  width: min(980px, 100%);
  margin-bottom: 18px;
  color: var(--muted);
}

.intro-grid,
.product-grid,
.license-grid,
.variant-grid,
.promo-list {
  display: grid;
  gap: 16px;
}

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

.intro-grid article,
.product-card,
.mock-panel,
.promo-list div,
.license-badge,
.variant-grid article {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px var(--shadow);
}

.intro-grid article {
  padding: 24px;
}

.intro-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-size: 19px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr);
  gap: 44px;
  align-items: center;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.stat-row div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.stat-row strong {
  display: block;
  color: var(--gold);
  font-size: 31px;
  line-height: 1;
}

.stat-row span {
  color: var(--muted);
  font-size: 13px;
}

.mock-panel {
  padding: 22px;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.panel-head b {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(22, 189, 116, 0.16);
  color: #8ff0c6;
  font-size: 12px;
}

.match-row {
  display: grid;
  grid-template-columns: 1fr repeat(3, 64px);
  gap: 10px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.match-row b {
  display: grid;
  place-items: center;
  min-height: 40px;
  border-radius: 6px;
  background: rgba(243, 184, 63, 0.13);
  color: var(--gold-2);
}

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

.product-card {
  min-height: 250px;
  padding: 28px;
}

.icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  border-radius: 6px;
  background: rgba(217, 31, 45, 0.2);
  color: #ff6873;
  font-weight: 900;
}

.promo-band {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.7fr);
  gap: 44px;
  align-items: center;
}

.promo-list {
  grid-template-columns: 1fr;
}

.promo-list div {
  padding: 22px;
}

.promo-list strong,
.promo-list span {
  display: block;
}

.promo-list strong {
  color: var(--gold-2);
  font-size: 19px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  min-height: 170px;
  padding: 24px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.05);
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline strong {
  margin-bottom: 8px;
}

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

.license-badge {
  padding: 18px;
}

.license-badge img {
  display: block;
  width: 100%;
  height: auto;
}

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

.variant-grid article {
  min-height: 150px;
  padding: 20px;
}

.variant-grid strong,
.variant-grid span {
  display: block;
}

.variant-grid strong {
  margin-bottom: 10px;
  color: var(--gold-2);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 42px 6vw;
  border-top: 1px solid var(--line);
}

.footer img {
  display: block;
  width: 118px;
  margin-bottom: 14px;
}

.footer p {
  max-width: 690px;
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 1060px) {
  .nav {
    display: none;
  }

  .intro-grid,
  .product-grid,
  .license-grid,
  .variant-grid,
  .toc-grid,
  .timeline,
  .split,
  .promo-band {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .topbar {
    min-height: 66px;
    padding: 0 18px;
  }

  .brand img {
    width: 108px;
  }

  .top-cta {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .hero-inner,
  .band,
  .footer {
    margin-left: 0;
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 39px;
  }

  .intro-grid,
  .product-grid,
  .license-grid,
  .variant-grid,
  .toc-grid,
  .timeline,
  .split,
  .promo-band,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .match-row {
    grid-template-columns: 1fr;
  }

  .footer {
    display: block;
  }

  .footer-links {
    margin-top: 22px;
    flex-wrap: wrap;
  }
}


.section-figure {
  margin: 0 0 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 18px 42px var(--shadow);
}

.section-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.testimonial-band {
  background: #0d100e;
}

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

.testimonial-card {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  box-shadow: 0 18px 42px var(--shadow);
}

.testimonial-card img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card .rating {
  margin: 4px 0 10px;
  color: var(--gold-2);
  font-weight: 900;
}

.testimonial-card p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 1060px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .testimonial-card {
    grid-template-columns: 1fr;
  }

  .testimonial-card img {
    width: 74px;
    height: 74px;
  }
}


.source-list {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

.source-list a {
  color: var(--gold-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.disclaimer-band {
  background: #100d0d;
}

/* Final article layout */
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.article-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 246, 221, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
}

.content-wrap {
  width: min(980px, 100%);
}

.article-section:nth-child(odd) {
  background: #0b0e0c;
}

.article-section:nth-child(even) {
  background: #0f120f;
}

.article-section p,
.faq-card p,
.h3-card p,
.check-list,
.notice-list,
.takeaway-list {
  color: var(--muted);
}

.article-section .content-wrap > p:not(.eyebrow) {
  font-size: 17px;
}

.takeaway-list,
.check-list,
.notice-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.takeaway-list li,
.check-list li,
.notice-list li,
.faq-card,
.h3-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 42px var(--shadow);
}

.takeaway-list li,
.check-list li,
.notice-list li {
  padding: 16px 18px;
}

.h3-card,
.faq-card {
  margin-top: 16px;
  padding: 20px;
}

.h3-card h3,
.faq-card h3 {
  color: var(--gold-2);
}

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

.toc-grid a {
  min-height: 118px;
}

.source-band {
  background: #0d100e;
}

@media (max-width: 1060px) {
  .toc-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .article-meta {
    display: block;
  }

  .article-meta span {
    display: inline-flex;
    margin: 0 8px 8px 0;
  }

  .toc-grid {
    grid-template-columns: 1fr;
  }
}
/* End final article layout */

/* Production trust fixes */
.education-cta,
.button.primary {
  background: linear-gradient(180deg, #37d68a, var(--green));
  color: #06150d;
}

.affiliate-note {
  width: min(680px, 100%);
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 16px 6vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0b0e0c;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

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

.verification-note {
  width: min(980px, 88vw);
  margin: 22px 0 0;
  color: var(--muted);
}

.affiliate-disclosure {
  background: #11100c;
}

.footer-links {
  max-width: 720px;
  flex-wrap: wrap;
  align-content: flex-start;
}

.footer-links a,
.variant-grid a {
  overflow-wrap: anywhere;
}

@media (max-width: 680px) {
  .breadcrumb {
    padding-left: 18px;
    padding-right: 18px;
    flex-wrap: wrap;
  }
}
/* End production trust fixes */


.research-panel {
  margin-top: 24px;
}

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

.research-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.research-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
}

.research-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 860px) {
  .fact-grid {
    grid-template-columns: 1fr;
  }
}
