:root {
  --s8z-bg-1: #0a2a12;
  --s8z-bg-2: #0f3518;
  --s8z-card: #143d1e;
  --s8z-gold: #ffd700;
  --s8z-green: #22c55e;
  --s8z-emerald: #059669;
  --s8z-text: #d4edda;
  --s8z-muted: #a4c8ad;
  --s8z-border: rgba(255, 215, 0, 0.45);
  --s8z-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  color-scheme: dark;
  scroll-behavior: smooth;
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Work Sans", sans-serif;
  background:
    radial-gradient(circle at top, rgba(255, 215, 0, 0.1), transparent 28%),
    linear-gradient(180deg, var(--s8z-bg-1), var(--s8z-bg-2));
  color: var(--s8z-text);
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

.s8z-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.s8z-kicker,
.s8z-agegate__eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--s8z-gold);
  font-size: 0.82rem;
}

.s8z-sectionhead h2,
.s8z-hero h1,
.s8z-footer h3,
.s8z-cardtile h3,
.s8z-spotlightcard h3,
.s8z-agegate h2 {
  font-family: "Bitter", serif;
}

.s8z-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(10, 42, 18, 0.82);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.s8z-nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.s8z-brand {
  width: 190px;
}

.s8z-nav__menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.s8z-nav__menu a {
  color: var(--s8z-gold);
  font-weight: 600;
}

.s8z-nav__menu a:hover,
.s8z-nav__menu a:focus-visible {
  color: #f8ffb4;
  text-shadow: 0 0 12px rgba(34, 197, 94, 0.7);
}

.s8z-nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
}

.s8z-nav__toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  border-radius: 99px;
  background: var(--s8z-gold);
}

.s8z-hero {
  position: relative;
  overflow: clip;
  padding: 112px 0 92px;
  min-height: 88vh;
  display: grid;
  place-items: center;
}

.s8z-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
}

.s8z-hero h1 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1.05;
  margin: 0 0 20px;
}

.s8z-hero__lead {
  font-size: 1.1rem;
  color: #e5f7e7;
  margin: 0 auto 30px;
  max-width: 700px;
}

.s8z-hero__bg,
.s8z-hero__orb,
.s8z-hero__spark {
  position: absolute;
}

.s8z-hero__bg {
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.16), transparent 22%),
    radial-gradient(circle at 78% 18%, rgba(255, 215, 0, 0.14), transparent 22%),
    radial-gradient(circle at 55% 70%, rgba(5, 150, 105, 0.22), transparent 30%);
  animation: s8z-gradientmove 14s ease-in-out infinite alternate;
}

.s8z-hero__orb {
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.42;
}

.s8z-hero__orb--one {
  width: 240px;
  height: 240px;
  background: rgba(34, 197, 94, 0.26);
  left: 10%;
  top: 18%;
  animation: s8z-float 10s ease-in-out infinite;
}

.s8z-hero__orb--two {
  width: 190px;
  height: 190px;
  background: rgba(255, 215, 0, 0.18);
  right: 14%;
  top: 12%;
  animation: s8z-float 12s ease-in-out infinite reverse;
}

.s8z-hero__orb--three {
  width: 280px;
  height: 280px;
  background: rgba(5, 150, 105, 0.24);
  right: 22%;
  bottom: 10%;
  animation: s8z-float 16s ease-in-out infinite;
}

.s8z-hero__spark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--s8z-gold);
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.7);
}

.s8z-hero__spark--one { top: 22%; left: 28%; animation: s8z-spark 8s linear infinite; }
.s8z-hero__spark--two { top: 64%; left: 72%; animation: s8z-spark 10s linear infinite 1.3s; }
.s8z-hero__spark--three { top: 52%; left: 48%; animation: s8z-spark 9s linear infinite 0.6s; }

.s8z-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid var(--s8z-border);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.s8z-button:hover,
.s8z-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 26px rgba(34, 197, 94, 0.3);
}

.s8z-button--gold {
  background: linear-gradient(135deg, #ffd700, #f7c948);
  color: #163110;
}

.s8z-button--gold:hover,
.s8z-button--gold:focus-visible {
  background: linear-gradient(135deg, #ffd700, #55d67b);
}

.s8z-button--ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--s8z-text);
}

.s8z-button--full {
  width: 100%;
}

.s8z-spotlight,
.s8z-cards,
.s8z-method,
.s8z-about,
.s8z-payments,
.s8z-rg {
  padding: 84px 0;
}

.s8z-sectionhead {
  margin-bottom: 28px;
}

.s8z-sectionhead h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.s8z-spotlight__grid,
.s8z-cardgrid,
.s8z-footer__grid,
.s8z-about__stats,
.s8z-method__grid {
  display: grid;
  gap: 24px;
}

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

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

.s8z-spotlightcard,
.s8z-cardtile,
.s8z-copycard,
.s8z-scorecard,
.s8z-statcard {
  background: linear-gradient(180deg, rgba(20, 61, 30, 0.96), rgba(12, 40, 18, 0.96));
  border: 1px solid var(--s8z-border);
  border-radius: 24px;
  box-shadow: var(--s8z-shadow), inset 0 0 0 1px rgba(255, 215, 0, 0.08);
}

.s8z-spotlightcard,
.s8z-cardtile {
  padding: 24px;
}

.s8z-spotlightcard {
  min-height: 100%;
  position: relative;
}

.s8z-cardtile {
  display: flex;
  flex-direction: column;
}

.s8z-logobox {
  width: 130px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  margin: 0 auto 18px;
}

.s8z-logobox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.s8z-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 215, 0, 0.16);
  color: var(--s8z-gold);
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.s8z-badge--plain {
  margin-bottom: 0;
}

.s8z-rating {
  color: #ffe88f;
  font-size: 1.02rem;
  margin: 0 0 10px;
}

.s8z-offer {
  color: #f7f3a5;
  font-weight: 700;
}

.s8z-featurelist {
  padding-left: 18px;
  margin: 0 0 22px;
  color: var(--s8z-muted);
}

.s8z-disclaimer {
  margin-top: 14px;
  font-size: 0.84rem;
  color: #bfdac4;
}

.s8z-method__grid {
  grid-template-columns: 320px minmax(0, 1fr);
}

.s8z-scorecard,
.s8z-copycard {
  padding: 28px;
}

.s8z-scorecard div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.s8z-scorecard div:last-child {
  border-bottom: 0;
}

.s8z-scorecard__total {
  color: var(--s8z-gold);
}

.s8z-about__stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 24px;
}

.s8z-statcard {
  padding: 28px;
  text-align: center;
}

.s8z-counter {
  display: block;
  font-family: "Bitter", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--s8z-gold);
}

.s8z-quote {
  margin: 0 0 22px;
  padding: 24px 28px;
  border-left: 4px solid var(--s8z-gold);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 20px 20px 0;
  font-family: "Bitter", serif;
  font-size: 1.2rem;
}

.s8z-rg__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.s8z-rg__links a {
  color: #ebf9c4;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.s8z-footer {
  border-top: 1px solid rgba(255, 215, 0, 0.18);
  background: rgba(7, 22, 10, 0.8);
  padding: 56px 0 26px;
}

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

.s8z-footer section {
  display: grid;
  gap: 10px;
}

.s8z-brand--footer {
  width: 210px;
}

.s8z-footer__bottom {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.s8z-cookiebar,
.s8z-agegate,
.s8z-scrolltop,
.s8z-floatingtop {
  z-index: 60;
}

.s8z-cookiebar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(9, 29, 14, 0.96);
  border: 1px solid var(--s8z-border);
  border-radius: 18px;
  box-shadow: var(--s8z-shadow);
}

.s8z-cookiebar.is-visible,
.s8z-agegate.is-visible,
.s8z-scrolltop.is-visible,
.s8z-floatingtop.is-visible,
.s8z-nav__menu.is-open {
  display: flex;
}

.s8z-cookiebar__actions {
  display: flex;
  gap: 10px;
}

.s8z-agegate {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 18, 8, 0.94);
}

.s8z-agegate__panel {
  max-width: 520px;
  padding: 36px;
  text-align: center;
  background: linear-gradient(180deg, rgba(20, 61, 30, 1), rgba(11, 34, 16, 1));
  border: 1px solid var(--s8z-border);
  border-radius: 28px;
  box-shadow: var(--s8z-shadow);
}

.s8z-scrolltop,
.s8z-floatingtop {
  display: none;
  position: fixed;
  border: 1px solid var(--s8z-border);
  background: rgba(255, 215, 0, 0.92);
  color: #173515;
  cursor: pointer;
  box-shadow: var(--s8z-shadow);
}

.s8z-scrolltop {
  right: 20px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.s8z-floatingtop {
  left: 20px;
  bottom: 24px;
  padding: 12px 16px;
  border-radius: 999px;
}

.s8z-pagehero {
  padding: 88px 0 36px;
}

.s8z-legal,
.s8z-pagecontent {
  padding: 18px 0 72px;
}

.s8z-legal article,
.s8z-pagecontent article {
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.s8z-legal article:last-child,
.s8z-pagecontent article:last-child {
  border-bottom: 0;
}

@keyframes s8z-gradientmove {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to { transform: scale(1.06) translate3d(0, -10px, 0); }
}

@keyframes s8z-float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-18px) translateX(12px); }
}

@keyframes s8z-spark {
  0% { transform: translateY(0) scale(0.8); opacity: 0; }
  15%, 85% { opacity: 1; }
  100% { transform: translateY(-80px) scale(1.2); opacity: 0; }
}

@media (max-width: 980px) {
  .s8z-spotlight__grid,
  .s8z-cardgrid,
  .s8z-footer__grid,
  .s8z-about__stats,
  .s8z-method__grid {
    grid-template-columns: 1fr 1fr;
  }

  .s8z-method__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .s8z-nav__toggle {
    display: block;
  }

  .s8z-nav__menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: rgba(11, 36, 17, 0.98);
    border: 1px solid var(--s8z-border);
    border-radius: 18px;
  }

  .s8z-hero {
    min-height: 72vh;
    padding-top: 90px;
  }

  .s8z-spotlight__grid,
  .s8z-cardgrid,
  .s8z-footer__grid,
  .s8z-about__stats {
    grid-template-columns: 1fr;
  }

  .s8z-cookiebar,
  .s8z-cookiebar__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
