:root {
  --bg: #0a0f1e;
  --bg-soft: #121a2d;
  --panel: rgba(17, 26, 46, 0.92);
  --panel-2: rgba(255, 255, 255, 0.04);
  --text: #f3f6fb;
  --muted: #b1bdd3;
  --accent: #00b140;
  --accent-2: #20d66a;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 20px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(0, 177, 64, 0.16), transparent 22%),
    radial-gradient(circle at left top, rgba(255, 255, 255, 0.06), transparent 18%),
    var(--bg);
  color: var(--text);
  line-height: 1.68;
}

body.no-scroll {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

p,
li {
  color: var(--muted);
}

h1,
h2,
h3,
h4,
strong,
summary {
  color: var(--text);
}

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

.narrow {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section.compact-top,
.compact-top {
  padding-top: 18px;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.04));
}

.section-head {
  margin-bottom: 28px;
}

.section-label,
.eyebrow {
  display: inline-block;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  margin: 16px 0;
}

h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.5rem);
  line-height: 1.15;
  margin: 12px 0 18px;
}

h3 {
  font-size: 1.2rem;
  margin-top: 0;
}

.top-ticker {
  overflow: hidden;
  background: #060b15;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.ticker-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: ticker 26s linear infinite;
  padding: 10px 0;
  color: #dce6f7;
  font-size: 0.9rem;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 15, 30, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #0a7d34);
  color: white;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.brand small {
  display: block;
  color: var(--muted);
}

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

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: #d8e2f4;
  font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 1.1rem;
}

.hero,
.page-hero {
  padding: 72px 0 36px;
}

.page-hero.compact {
  padding-bottom: 10px;
}

.hero-grid,
.two-col {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.2fr 1fr;
}

.hero-copy {
  font-size: 1.08rem;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 14px;
}

.hero-note {
  color: #9da9bf;
  font-size: 0.92rem;
}

.hero-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 22px;
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow);
}

.metric-card,
.trust-item,
.content-card,
.feature-card,
.step-card,
.numbered-card,
.table-card,
.legal-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.metric-card {
  padding: 18px;
}

.metric-card span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
}

.metric-card strong {
  display: block;
  font-size: 1.15rem;
  margin-top: 4px;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 12px;
}

.trust-item {
  padding: 18px;
  text-align: center;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, opacity .2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #041109;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border);
  color: white;
}

.btn-small {
  padding: 10px 16px;
  border-radius: 12px;
}

.dual-list,
.cards-grid,
.steps-grid,
.numbered-grid {
  display: grid;
  gap: 20px;
}

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

.steps-grid,
.numbered-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card,
.content-card,
.step-card,
.numbered-card,
.legal-card {
  padding: 26px;
}

.feature-card.alt {
  background: rgba(239, 85, 85, 0.08);
}

.check-list,
.cross-list,
.content-card ul,
.legal-copy ul {
  padding-left: 18px;
}

.check-list li::marker {
  color: var(--accent-2);
}

.cross-list li::marker {
  color: #ff8c8c;
}

.note-box {
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(0, 177, 64, 0.18);
  color: var(--accent-2);
  font-weight: 800;
  margin-bottom: 16px;
}

.numbered-card .num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #087530);
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
}

.pill {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 177, 64, 0.14);
  color: var(--accent-2);
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 16px;
}

.text-link {
  color: var(--accent-2);
  font-weight: 700;
}

.text-link:hover {
  text-decoration: underline;
}

.home-faq {
  gap: 12px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 0 22px;
  box-shadow: var(--shadow);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-weight: 700;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 20px;
  font-size: 1.25rem;
  color: var(--accent-2);
}

.faq-item[open] summary::after {
  content: '–';
}

.faq-item p {
  padding-bottom: 18px;
  margin-top: 0;
}

.table-card {
  overflow: auto;
}

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

th,
td {
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

th {
  color: #fff;
  font-size: 0.94rem;
  background: rgba(255, 255, 255, 0.03);
}

.status {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
}

.status.success {
  background: rgba(0, 177, 64, 0.16);
  color: #5eff98;
}

.status.pending {
  background: rgba(255, 206, 86, 0.14);
  color: #ffd76d;
}

.long-read {
  display: grid;
  gap: 22px;
}

.long-read h2 {
  margin-top: 24px;
}

.legal-copy p,
.legal-copy li,
.long-read p,
.long-read li {
  font-size: 1rem;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: white;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: white;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
}

.form-message {
  min-height: 24px;
  color: var(--accent-2);
}

.single-gap {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 20px;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(4, 9, 18, 0.92);
  margin-top: 24px;
  text-align: center;
}

.site-footer strong {
  color: red;
}

.footer-grid {
  display: grid;
  gap: 28px;
  padding: 42px 0 24px;
}

.footer-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-badges span,
.footer-links a {
  display: inline-flex;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom {
  padding: 18px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 12, 0.82);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 60;
}

.age-gate.visible {
  display: flex;
}

.age-gate-card {
  width: min(680px, 100%);
  background: linear-gradient(180deg, #10172a, #0c1221);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.age-gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: rgba(10, 15, 30, 0.97);
  border: 1px solid var(--border);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  z-index: 50;
  box-shadow: var(--shadow);
}

.cookie-banner p {
  margin: 6px 0 0;
}

.cookie-actions {
  flex-shrink: 0;
}

@media (max-width: 1100px) {

  .hero-grid,
  .two-col,
  .cards-grid.three,
  .trust-bar,
  .steps-grid,
  .numbered-grid,
  .single-gap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    background: rgba(10, 15, 30, 0.97);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 12px;
  }

  .main-nav.open {
    display: flex;
  }

  .header-inner {
    position: relative;
  }

  .hero,
  .page-hero,
  .section {
    padding: 64px 0;
  }
}

@media (max-width: 700px) {

  .hero-grid,
  .two-col,
  .footer-grid,
  .trust-bar,
  .cards-grid.three,
  .steps-grid,
  .numbered-grid,
  .single-gap {
    grid-template-columns: 1fr;
  }

  .cookie-banner,
  .age-gate-actions,
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  h1 {
    font-size: 2.2rem;
  }

  table {
    min-width: 640px;
  }
}

.badge-box {
  background-color: #FFFFFF;
  color: #111827;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 68px;
  transition: opacity 0.2s;
}

.badge-box:hover {
  opacity: 0.8;
}

.badge-box img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.badge-18 {
  background-color: #E31837;
  color: #FFFFFF;
  font-size: 1.25rem;
  border-radius: 50%;
  width: 68px;
  height: 68px;
  min-width: unset;
  padding: 0;
}