:root {
  --bg: #03110e;
  --bg-deep: #010806;
  --surface: #0a1b17;
  --surface-2: #102720;
  --surface-3: #153229;
  --gold: #f6c84b;
  --gold-deep: #d99d1e;
  --green: #42d98b;
  --green-soft: #9ae9bb;
  --text: #f8f6ef;
  --muted: #a9b9b2;
  --line: rgba(129, 196, 165, 0.2);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius: 24px;
  --shell: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 85% -10%, rgba(35, 145, 95, 0.2), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--gold);
  color: #171003;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(1, 8, 6, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 68px;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-size: clamp(1.65rem, 6vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.brand span {
  color: var(--gold);
}

.menu-toggle {
  display: inline-grid;
  justify-self: end;
  width: 42px;
  height: 42px;
  place-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 10px;
  background: currentColor;
}

.desktop-nav {
  display: none;
}

.header-actions {
  display: flex;
  gap: 8px;
}

.header-actions .button-ghost {
  display: none;
}

.mobile-nav {
  display: grid;
  gap: 4px;
  padding: 10px 16px 18px;
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 700;
}

.mobile-nav a:hover {
  background: var(--surface);
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  background: linear-gradient(135deg, #ffe382 0%, var(--gold) 42%, var(--gold-deep) 100%);
  box-shadow: 0 10px 30px rgba(246, 200, 75, 0.2);
  color: #171003;
}

.button-ghost {
  border-color: rgba(66, 217, 139, 0.55);
  background: rgba(3, 17, 14, 0.7);
  color: var(--green-soft);
}

.button-large {
  min-height: 52px;
  padding: 13px 22px;
  border-radius: 15px;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(1, 8, 6, 0.3), rgba(1, 8, 6, 0.9)),
    radial-gradient(circle at 78% 45%, rgba(26, 158, 101, 0.22), transparent 44%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 86%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  padding-top: 48px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 22px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 10vw, 5.4rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 7vw, 3.2rem);
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.hero-lead {
  max-width: 650px;
  margin: 0 0 24px;
  color: #d2ddd7;
  font-size: clamp(1rem, 4vw, 1.2rem);
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 480px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-note span {
  color: var(--green);
}

.hero-media {
  position: relative;
  min-height: 340px;
  margin-inline: -16px;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, var(--bg) 0%, transparent 24%, transparent 75%, var(--bg) 100%),
    linear-gradient(to right, rgba(3, 17, 14, 0.78), transparent 38%);
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: 67% 73%;
}

.trust-strip {
  position: relative;
  z-index: 4;
  display: grid;
  gap: 1px;
  margin-top: -18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-strip > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 16px;
  background: rgba(10, 27, 23, 0.96);
}

.trust-strip strong,
.trust-strip small {
  display: block;
}

.trust-strip strong {
  font-size: 0.88rem;
}

.trust-strip small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.7rem;
}

.trust-icon {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(66, 217, 139, 0.45);
  border-radius: 50%;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
}

.section {
  padding-block: 72px;
}

.section-tint {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 12%, rgba(37, 147, 101, 0.15), transparent 24rem),
    rgba(10, 27, 23, 0.52);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 32px;
}

.section-heading > p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.category-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 186px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 80% 12%, rgba(246, 200, 75, 0.15), transparent 38%),
    linear-gradient(150deg, var(--surface-2), var(--surface));
  transition: transform 180ms ease, border-color 180ms ease;
}

.category-card::after {
  position: absolute;
  right: -30px;
  bottom: -45px;
  width: 120px;
  height: 120px;
  border: 22px solid rgba(66, 217, 139, 0.06);
  border-radius: 50%;
  content: "";
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 200, 75, 0.48);
}

.category-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: auto;
  place-items: center;
  border: 1px solid rgba(246, 200, 75, 0.4);
  border-radius: 16px;
  background: rgba(1, 8, 6, 0.5);
  color: var(--gold);
  font-weight: 900;
}

.category-card strong,
.category-card > span:last-child {
  position: relative;
  z-index: 1;
}

.category-card strong {
  margin-bottom: 5px;
  font-size: 1rem;
}

.category-card > span:last-child {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

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

.steps-grid article {
  position: relative;
  min-width: 0;
  padding: 18px 10px;
  text-align: center;
}

.steps-grid article > span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.step-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  place-items: center;
  border: 1px solid rgba(66, 217, 139, 0.4);
  border-radius: 50%;
  color: var(--green-soft);
}

.steps-grid h3 {
  font-size: 0.9rem;
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.safety-panel {
  display: grid;
  gap: 26px;
  padding: 28px;
  border: 1px solid rgba(66, 217, 139, 0.3);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 50%, rgba(66, 217, 139, 0.2), transparent 18rem),
    linear-gradient(140deg, var(--surface-2), var(--surface));
  box-shadow: var(--shadow);
}

.safety-mark {
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  border: 2px solid rgba(66, 217, 139, 0.6);
  border-radius: 40% 40% 48% 48%;
  background: rgba(1, 8, 6, 0.5);
  box-shadow: inset 0 0 40px rgba(66, 217, 139, 0.1);
  color: var(--green);
  font-size: 3rem;
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #d6e0db;
}

.check-list li::before {
  position: absolute;
  top: 0.15em;
  left: 0;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border: 1px solid rgba(66, 217, 139, 0.55);
  border-radius: 50%;
  color: var(--green);
  content: "✓";
  font-size: 0.65rem;
  font-weight: 900;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 800;
}

.guide-grid {
  display: grid;
  gap: 14px;
}

.guide-card {
  display: block;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, var(--surface-2), var(--surface));
}

.guide-card > span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 12px;
  background: rgba(246, 200, 75, 0.1);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
}

.guide-card h3 {
  font-size: 1.16rem;
}

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

.faq-wrap {
  max-width: 860px;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(10, 27, 23, 0.82);
}

.faq-item button {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-plus {
  color: var(--green);
  font-size: 1.4rem;
  transition: transform 180ms ease;
}

.faq-item button[aria-expanded="true"] .faq-plus {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 18px 18px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
}

.final-cta {
  display: grid;
  gap: 24px;
  margin-block: 50px 88px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(246, 200, 75, 0.36);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 95% 50%, rgba(246, 200, 75, 0.2), transparent 18rem),
    radial-gradient(circle at 0% 100%, rgba(66, 217, 139, 0.16), transparent 20rem),
    var(--surface);
}

.final-cta h2 {
  margin-bottom: 8px;
}

.final-cta p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
}

.footer-grid {
  display: grid;
  gap: 36px;
  padding-block: 56px;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-grid h2 {
  margin-bottom: 10px;
  color: var(--green-soft);
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a:not(.brand) {
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-grid p {
  max-width: 410px;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid var(--line);
}

.footer-bottom-inner {
  display: grid;
  gap: 8px;
  padding-block: 20px 100px;
  color: var(--muted);
  font-size: 0.75rem;
}

.age-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.age-note strong {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(66, 217, 139, 0.55);
  border-radius: 50%;
  color: var(--green);
}

.mobile-cta {
  position: fixed;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  left: 12px;
  z-index: 70;
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255, 232, 151, 0.6);
  border-radius: 15px;
  background: linear-gradient(135deg, #ffe382, var(--gold), var(--gold-deep));
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.5);
  color: #171003;
  font-size: 0.9rem;
  font-weight: 950;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  padding-block: 16px;
  color: var(--muted);
  font-size: 0.76rem;
}

.breadcrumbs a {
  color: var(--green);
}

.subhero {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 50%, rgba(34, 160, 99, 0.2), transparent 26rem),
    linear-gradient(145deg, var(--bg-deep), var(--surface));
}

.subhero::after {
  position: absolute;
  right: -14rem;
  bottom: -24rem;
  width: 38rem;
  height: 38rem;
  border: 5rem solid rgba(246, 200, 75, 0.04);
  border-radius: 50%;
  content: "";
}

.subhero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
  align-items: center;
  padding-block: 64px;
}

.subhero h1 {
  font-size: clamp(2.2rem, 9vw, 4.6rem);
}

.subhero-seal {
  display: grid;
  width: 190px;
  height: 190px;
  margin-inline: auto;
  place-content: center;
  border: 1px solid rgba(246, 200, 75, 0.4);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(66, 217, 139, 0.15), transparent 58%),
    rgba(1, 8, 6, 0.7);
  box-shadow:
    0 0 0 16px rgba(246, 200, 75, 0.025),
    0 0 0 32px rgba(66, 217, 139, 0.025);
  text-align: center;
}

.subhero-seal span,
.subhero-seal strong {
  display: inline;
  font-size: 2.7rem;
  line-height: 1;
}

.subhero-seal span {
  color: var(--gold);
  font-weight: 950;
}

.subhero-seal strong {
  font-weight: 950;
}

.subhero-seal small {
  display: block;
  margin-top: 12px;
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.compact-trust {
  margin-top: -18px;
}

.content-layout {
  display: grid;
  gap: 24px;
}

.content-stack {
  display: grid;
  gap: 18px;
}

.content-card,
.conversion-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, var(--surface-2), var(--surface));
}

.content-card p,
.conversion-card p {
  color: var(--muted);
}

.content-card h2,
.conversion-card h2 {
  font-size: clamp(1.45rem, 6vw, 2rem);
}

.conversion-card {
  align-self: start;
}

.conversion-card .button {
  width: 100%;
  margin-block: 8px 18px;
}

.conversion-card .text-link {
  font-size: 0.82rem;
}

.conversion-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid rgba(66, 217, 139, 0.5);
  border-radius: 16px;
  color: var(--green);
  font-size: 1.35rem;
  font-weight: 950;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.error-page main {
  width: min(560px, 100%);
  padding: 42px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.error-page .brand {
  margin-bottom: 40px;
}

.error-page p:not(.eyebrow, .age-note) {
  color: var(--muted);
}

.error-page .button {
  margin: 18px 0 32px;
}

.article-shell {
  width: min(calc(100% - 32px), 860px);
  margin-inline: auto;
}

.article-header {
  padding-block: 56px 28px;
}

.article-header h1 {
  font-size: clamp(2.1rem, 8vw, 4.3rem);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 0.78rem;
}

.article-card {
  margin-bottom: 32px;
  padding: clamp(22px, 6vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.article-content {
  color: #d8e3dd;
  font-size: 1rem;
  line-height: 1.85;
}

.article-content h2,
.article-content h3 {
  margin-top: 2em;
}

.article-content a {
  color: var(--green);
  text-decoration: underline;
}

.article-content table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
}

.article-content img {
  height: auto;
  margin-block: 24px;
  border-radius: 14px;
}

.article-cta {
  display: grid;
  gap: 16px;
  margin-block: 34px;
  padding: 22px;
  border: 1px solid rgba(246, 200, 75, 0.35);
  border-radius: 18px;
  background: rgba(246, 200, 75, 0.06);
}

.article-cta p {
  margin: 0;
}

.article-nav {
  display: grid;
  gap: 10px;
  margin-block: 24px 58px;
}

.article-nav > * {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
}

.pager {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
  padding: 0;
  list-style: none;
}

.pager li,
.pager a,
.pager span {
  display: inline-grid;
  min-width: 40px;
  min-height: 40px;
  place-items: center;
  border-radius: 10px;
}

.pager a,
.pager span {
  border: 1px solid var(--line);
  background: var(--surface);
}

@media (min-width: 560px) {
  .shell {
    width: min(calc(100% - 48px), var(--shell));
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-bottom-inner {
    grid-template-columns: repeat(3, auto);
    align-items: center;
    justify-content: space-between;
  }

  .safety-panel {
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 40px;
  }

  .final-cta {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 40px;
  }

  .final-cta .button {
    min-width: 210px;
  }
}

@media (min-width: 769px) {
  .mobile-cta {
    display: none;
  }

  .menu-toggle,
  .mobile-nav {
    display: none;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .desktop-nav a {
    padding: 9px 11px;
    border-radius: 10px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
  }

  .desktop-nav a:hover {
    background: var(--surface);
    color: var(--text);
  }

  .header-actions .button-ghost {
    display: inline-flex;
  }

  .hero-grid {
    min-height: 690px;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    padding-top: 0;
  }

  .hero-copy {
    padding: 80px 0;
  }

  .hero-media {
    align-self: stretch;
    min-height: 690px;
    margin-right: calc((100vw - min(100vw - 48px, var(--shell))) / -2);
    margin-left: -12%;
  }

  .hero-media img {
    min-height: 690px;
    object-position: 64% 66%;
  }

  .trust-strip {
    margin-top: -36px;
  }

  .section {
    padding-block: 96px;
  }

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

  .category-card {
    min-height: 238px;
    padding: 24px;
  }

  .steps-grid {
    gap: 24px;
  }

  .steps-grid article {
    padding: 32px;
  }

  .steps-grid article:not(:last-child)::after {
    position: absolute;
    top: 62px;
    right: -18px;
    color: var(--line);
    content: "→";
    font-size: 1.5rem;
  }

  .steps-grid h3 {
    font-size: 1.15rem;
  }

  .steps-grid p {
    font-size: 0.86rem;
  }

  .subhero-grid {
    grid-template-columns: minmax(0, 1fr) 280px;
    padding-block: 92px;
  }

  .compact-trust {
    margin-top: -30px;
  }

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

  .conversion-card {
    position: sticky;
    top: 96px;
  }

  .footer-bottom-inner {
    padding-bottom: 20px;
  }
}

@media (min-width: 1080px) {
  .header-inner {
    min-height: 76px;
  }

  .desktop-nav {
    gap: 18px;
  }

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

  .category-card {
    min-height: 230px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Approved imagegen mock fidelity layer */
.header-inner {
  grid-template-areas: "brand nav actions";
}

.brand {
  grid-area: brand;
}

.menu-toggle {
  grid-area: menu;
}

.desktop-nav {
  grid-area: nav;
}

.header-actions {
  grid-area: actions;
}

.mock-home {
  background:
    radial-gradient(circle at 18% 8%, rgba(11, 102, 64, 0.16), transparent 26rem),
    linear-gradient(180deg, #020c09 0%, #03130f 46%, #020b08 100%);
}

.mock-home .site-header {
  position: relative;
  top: auto;
  border-bottom-color: rgba(95, 199, 145, 0.2);
  background: rgba(1, 10, 7, 0.96);
}

.mock-home .mobile-cta {
  display: none;
}

.mock-hero {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-bottom: 0;
  background: #020b08;
  isolation: isolate;
}

.mock-hero::before,
.mock-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.mock-hero::before {
  background:
    linear-gradient(90deg, rgba(1, 8, 6, 0.98) 0%, rgba(1, 8, 6, 0.88) 34%, rgba(1, 8, 6, 0.2) 76%),
    linear-gradient(180deg, rgba(1, 8, 6, 0.05) 55%, rgba(1, 8, 6, 0.88) 100%);
}

.mock-hero::after {
  background:
    radial-gradient(circle at 72% 20%, rgba(19, 176, 103, 0.2), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}

.mock-hero-art {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 67% center;
}

.mock-hero-inner {
  display: flex;
  min-height: 460px;
  align-items: flex-start;
  padding-block: 38px 30px;
}

.mock-hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
}

.mock-hero h1 {
  display: grid;
  width: min(100%, 560px);
  gap: 2px;
  margin: 0 0 12px;
  font-size: clamp(2rem, 8.6vw, 4.8rem);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-transform: uppercase;
}

.hero-title-line {
  display: block;
}

.hero-title-gold {
  color: #f8cf4f;
  text-shadow: 0 5px 30px rgba(244, 188, 34, 0.2);
}

.hero-subtitle {
  margin: 0 0 8px;
  color: #fffdf6;
  font-size: clamp(1rem, 4.5vw, 1.35rem);
  font-weight: 900;
}

.mock-hero .hero-lead {
  width: min(100%, 390px);
  margin-bottom: 20px;
  color: #c7d1cc;
  font-size: clamp(0.86rem, 3.5vw, 1rem);
  line-height: 1.55;
}

.mock-hero .hero-actions {
  width: min(82vw, 300px);
  grid-template-columns: 1fr;
  gap: 9px;
}

.mock-hero .button-large {
  min-height: 54px;
  border-radius: 12px;
  font-size: 1rem;
}

.mock-trust-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: -12px;
  border-color: rgba(108, 191, 151, 0.35);
  border-radius: 18px;
  background: rgba(2, 15, 11, 0.97);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
}

.mock-trust-strip > div {
  justify-content: center;
  gap: 8px;
  padding: 12px 8px;
  background: transparent;
  text-align: left;
}

.mock-trust-strip > div + div {
  border-left: 1px solid rgba(112, 189, 152, 0.26);
}

.mock-trust-strip .trust-icon {
  flex-basis: 34px;
  width: 34px;
  height: 34px;
  border-color: rgba(116, 235, 166, 0.62);
  border-radius: 10px;
  box-shadow: inset 0 0 18px rgba(54, 213, 125, 0.14);
  font-size: 0.82rem;
}

.mock-trust-strip strong {
  font-size: clamp(0.58rem, 2.4vw, 0.82rem);
  line-height: 1.2;
}

.mock-categories {
  padding-block: 24px 16px;
}

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

.mock-category-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  border: 1px solid rgba(236, 180, 47, 0.6);
  border-radius: 13px;
  background-image: url("/assets/fo88-categories-mock-v2.png");
  background-repeat: no-repeat;
  background-size: 300% 200%;
  box-shadow: inset 0 -54px 38px rgba(0, 0, 0, 0.88);
  transition: transform 180ms ease, border-color 180ms ease;
}

.mock-category-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.92));
  content: "";
}

.mock-category-card:hover {
  z-index: 2;
  transform: translateY(-3px);
  border-color: #f7cc4e;
}

.mock-category-card strong {
  position: absolute;
  right: 3px;
  bottom: 7px;
  left: 3px;
  z-index: 1;
  color: #fff;
  font-size: clamp(0.62rem, 3.25vw, 1.05rem);
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: center;
  text-shadow: 0 2px 6px #000;
}

.mock-category-casino {
  background-position: 0% 0%;
}

.mock-category-sports {
  background-position: 50% 0%;
}

.mock-category-slots {
  background-position: 100% 0%;
}

.mock-category-fish {
  background-position: 0% 100%;
}

.mock-category-lottery {
  background-position: 50% 100%;
}

.mock-category-promo {
  background-position: 100% 100%;
}

.mock-section {
  padding-block: 20px;
}

.mock-section-title {
  display: grid;
  grid-template-columns: minmax(18px, 1fr) auto minmax(18px, 1fr);
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: clamp(1rem, 4.8vw, 1.55rem);
  letter-spacing: -0.03em;
  text-align: center;
}

.mock-section-title::before,
.mock-section-title::after {
  height: 1px;
  background: linear-gradient(90deg, transparent, #2dd481);
  content: "";
}

.mock-section-title::after {
  background: linear-gradient(90deg, #2dd481, transparent);
}

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

.mock-steps article {
  position: relative;
  min-width: 0;
  text-align: center;
}

.mock-steps article:not(:last-child)::after {
  position: absolute;
  top: 36px;
  right: -8px;
  color: rgba(235, 244, 239, 0.72);
  content: "→";
  font-size: 1.1rem;
}

.mock-steps .step-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 7px;
  border-color: rgba(179, 216, 194, 0.65);
  color: #c3efc9;
  font-size: 1.45rem;
}

.mock-steps strong {
  display: block;
  color: #7adf8f;
  font-size: 1rem;
}

.mock-steps p {
  margin: 3px 0 0;
  color: #e3e7e4;
  font-size: clamp(0.62rem, 2.7vw, 0.85rem);
  line-height: 1.25;
}

.mock-home .safety-panel {
  grid-template-columns: minmax(105px, 0.88fr) minmax(0, 1.2fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-color: rgba(96, 182, 140, 0.4);
  border-radius: 17px;
  background:
    radial-gradient(circle at 22% 50%, rgba(32, 202, 111, 0.2), transparent 42%),
    linear-gradient(145deg, rgba(7, 32, 24, 0.94), rgba(3, 16, 12, 0.97));
}

.mock-safety-art {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 14px;
  object-fit: cover;
}

.mock-safety-copy h2 {
  margin-bottom: 8px;
  font-size: clamp(1.02rem, 4.4vw, 1.55rem);
}

.mock-safety-copy .check-list {
  gap: 7px;
  margin: 0;
}

.mock-safety-copy .check-list li {
  padding-left: 24px;
  font-size: clamp(0.68rem, 2.7vw, 0.9rem);
  line-height: 1.35;
}

.mock-faq {
  padding-bottom: 10px;
}

.mock-faq .faq-wrap {
  max-width: none;
}

.mock-faq .faq-list {
  gap: 7px;
}

.mock-faq .faq-item {
  border-color: rgba(102, 174, 141, 0.4);
  border-radius: 11px;
  background: rgba(6, 26, 20, 0.88);
}

.mock-faq .faq-item button {
  min-height: 48px;
  padding: 10px 14px;
  font-size: clamp(0.72rem, 3vw, 0.92rem);
  font-weight: 600;
}

.mock-faq .faq-item button > span:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mock-faq .faq-item button > span:first-child::before {
  display: inline-grid;
  flex: 0 0 27px;
  width: 27px;
  height: 27px;
  place-items: center;
  color: #dce9e3;
  content: "♙";
  font-size: 0.95rem;
}

.mock-faq .faq-plus {
  color: #dbe8e2;
  font-size: 1.2rem;
}

.mock-faq .faq-answer {
  padding: 0 14px 12px 51px;
  font-size: 0.78rem;
}

.mock-more {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  margin: 10px auto 0;
  color: #73e291;
  font-size: 0.82rem;
  text-decoration: underline;
}

.mock-final-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-block: 12px 0;
  padding: 18px;
  border-color: rgba(247, 199, 63, 0.78);
  border-radius: 16px 16px 0 0;
  background:
    radial-gradient(circle at 10% 90%, rgba(233, 178, 40, 0.18), transparent 35%),
    radial-gradient(circle at 82% 5%, rgba(35, 185, 101, 0.28), transparent 40%),
    linear-gradient(120deg, #082b20, #063823 48%, #102510);
  text-align: center;
}

.mock-final-cta h2 {
  margin: 0;
  font-size: clamp(1.2rem, 5.3vw, 1.8rem);
}

.mock-final-cta .button {
  width: min(92%, 500px);
  min-height: 54px;
  margin-inline: auto;
  font-size: 1rem;
}

.mock-home .site-footer {
  border-top: 0;
}

.mock-home .footer-grid {
  display: none;
}

.mock-home .footer-bottom {
  border-top-color: rgba(94, 160, 126, 0.22);
}

.mock-home .footer-bottom-inner {
  display: flex;
  justify-content: center;
  padding-block: 13px 18px;
}

.mock-home .footer-bottom-inner > span:first-child,
.mock-home .footer-bottom-inner > span:last-child {
  display: none;
}

@media (max-width: 768px) {
  .header-inner {
    grid-template-areas: "menu brand actions";
    grid-template-columns: auto auto 1fr;
    gap: 9px;
    min-height: 66px;
  }

  .menu-toggle {
    justify-self: start;
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
  }

  .brand {
    justify-self: start;
    font-size: clamp(1.65rem, 7.2vw, 2rem);
  }

  .header-actions {
    justify-self: end;
    gap: 7px;
  }

  .header-actions .button-ghost {
    display: inline-flex;
  }

  .header-actions .button {
    min-height: 42px;
    padding: 8px 11px;
    border-radius: 10px;
    font-size: clamp(0.66rem, 2.8vw, 0.82rem);
  }

  .mock-home .shell {
    width: min(calc(100% - 28px), 720px);
  }
}

@media (min-width: 769px) {
  .mock-hero {
    min-height: 620px;
  }

  .mock-hero-inner {
    min-height: 620px;
    align-items: center;
  }

  .mock-hero-art {
    object-position: center;
  }

  .mock-hero .hero-actions {
    grid-template-columns: 1fr;
  }

  .mock-trust-strip {
    margin-top: -28px;
  }

  .mock-categories,
  .mock-section {
    width: min(calc(100% - 48px), 920px);
  }

  .mock-category-grid {
    gap: 16px;
  }

  .mock-category-card {
    border-radius: 20px;
  }

  .mock-steps .step-icon {
    width: 100px;
    height: 100px;
    font-size: 2rem;
  }

  .mock-steps article:not(:last-child)::after {
    top: 48px;
    right: -12px;
    font-size: 1.7rem;
  }

  .mock-home .safety-panel {
    padding: 26px;
  }

  .mock-safety-art {
    max-width: 260px;
    justify-self: center;
  }
}
