:root {
  --bg: #1E1B4B;
  --surface: #312E81;
  --text: #EEF2FF;
  --muted: #A5B4FC;
  --primary: #A855F7;
  --secondary: #4338CA;
  --accent: #D8B4FE;
  --border: rgba(255,255,255,0.1);
  --nature: nature;
  --future: future;
  --lab: lab;
  --hybrid: hybrid;
  --glowing-plants: glowing-plants;
  --bio: #4ADE80;
  --offer-bg: #1a1a2e;
  --offer-border: rgba(255, 255, 255, 0.12);
  --offer-bonus: #fbbf24;
  --offer-cta-bg: #22c55e;
  --offer-cta-text: #ffffff;
  --max: 1160px;
  --font-display: "Avenir Next", "Segoe UI", "Helvetica Neue", system-ui, sans-serif;
  --font-mono: "SF Mono", "Cascadia Code", Consolas, "Courier New", monospace;
}

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

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

body {
  font-family: var(--font-display);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 65% 45% at 12% -10%, rgba(168, 85, 247, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 8%, rgba(74, 222, 128, 0.12), transparent 50%),
    linear-gradient(165deg, var(--bg) 0%, #251F5C 42%, var(--bg) 100%);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body::before {
  content: var(--nature) " " var(--future);
  position: fixed;
  inset: 0;
  font-size: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 20% 70%, rgba(74, 222, 128, 0.08), transparent 36%),
    radial-gradient(circle at 78% 55%, rgba(216, 180, 254, 0.07), transparent 40%),
    repeating-linear-gradient(
      112deg,
      transparent,
      transparent 22px,
      rgba(255, 255, 255, 0.015) 22px,
      rgba(255, 255, 255, 0.015) 23px
    );
}

body::after {
  content: var(--lab) " " var(--hybrid) " " var(--glowing-plants);
  position: fixed;
  inset: 0;
  font-size: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}

body > * {
  position: relative;
  z-index: 1;
}

main {
  flex: 1 0 auto;
}

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

a {
  color: var(--accent);
}

.disclosure-banner {
  width: 100%;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  color: var(--text);
  text-align: center;
  font-size: 12px;
  line-height: 1.45;
  padding: 10px 16px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 200;
  flex-shrink: 0;
}

.nav-back {
  width: 100%;
  height: 64px;
  background: rgba(49, 46, 129, 0.95);
  backdrop-filter: blur(10px);
}

.nav-front {
  max-width: 1160px;
  margin: -8px auto 0;
  height: 48px;
  background: var(--bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border: 1px solid var(--border);
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(74, 222, 128, 0.08);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

.brand-lockup img {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px 12px;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--bio);
}

.nav-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 8px;
}

.nav-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--accent);
}

.nav-scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30, 27, 75, 0.72);
  z-index: 250;
}

.nav-scrim.open {
  display: block;
}

.nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 260;
  padding: 72px 24px 32px;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
}

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

.nav-drawer a {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid transparent;
}

.nav-drawer a:hover {
  border-color: rgba(74, 222, 128, 0.35);
  background: rgba(168, 85, 247, 0.15);
}

@media (min-width: 961px) {
  .nav-burger,
  .nav-drawer,
  .nav-drawer.open,
  .nav-scrim,
  .nav-scrim.open {
    display: none;
  }
}

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

  .nav-front {
    margin: 0;
    max-width: none;
    border-radius: 0;
    height: 56px;
    width: 100%;
  }

  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .offer-logo {
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    max-width: none;
    max-height: none;
  }
}

.hero {
  text-align: center;
  padding: 64px 24px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  left: -120px;
  top: -80px;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.18), transparent 68%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 42% 58% 55% 45%;
  right: -80px;
  bottom: -100px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.25), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  -webkit-text-stroke: 2px #ffffff;
  color: transparent;
  margin-bottom: 18px;
}

.hero-sub {
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  max-width: 640px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .hero {
    padding: 32px 20px;
  }

  .hero h1 {
    -webkit-text-stroke: 1px #ffffff;
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .offer-logo {
    width: 180px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    max-width: none;
    max-height: none;
  }
}

.lab-glass {
  background: rgba(49, 46, 129, 0.45);
  border: 1px solid rgba(216, 180, 254, 0.22);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 0 0 1px rgba(74, 222, 128, 0.08), 0 20px 50px rgba(0, 0, 0, 0.25);
}

.hybrid-vein {
  position: relative;
}

.hybrid-vein::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 35%, rgba(74, 222, 128, 0.18) 50%, transparent 65%),
    radial-gradient(circle at 10% 80%, rgba(168, 85, 247, 0.2), transparent 40%);
  opacity: 0.7;
}

.nature-orb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bio);
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.8), 0 0 28px rgba(74, 222, 128, 0.35);
  display: inline-block;
}

.glowing-plants {
  position: relative;
  min-height: 48px;
}

.glowing-plants .vine-stem {
  position: absolute;
  left: 12px;
  bottom: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--bio), rgba(74, 222, 128, 0.2));
  border-radius: 3px;
  transition: height 1.1s ease;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.55);
}

.glowing-plants .vine-leaf {
  position: absolute;
  left: 8px;
  bottom: 18px;
  width: 14px;
  height: 10px;
  border-radius: 0 70% 0 70%;
  background: rgba(74, 222, 128, 0.55);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.6s ease 0.35s, transform 0.6s ease 0.35s;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
}

.glowing-plants.is-grown .vine-stem {
  height: 42px;
}

.glowing-plants.is-grown .vine-leaf {
  opacity: 1;
  transform: scale(1);
}

.offers-section {
  padding: 56px 0 72px;
  background-image:
    linear-gradient(180deg, rgba(30, 27, 75, 0.92), rgba(30, 27, 75, 0.88)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  position: relative;
}

.offers-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.18), transparent 60%);
  pointer-events: none;
}

.offers-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.offers-head {
  text-align: center;
  margin-bottom: 28px;
}

.offers-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 10px;
}

.offers-head p {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.offer-card {
  background: var(--offer-bg);
  border: 1px solid var(--offer-border);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.offer-logo {
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 12px;
  background: #0d0d0d;
  flex-shrink: 0;
}

.offer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  max-width: none;
  max-height: none;
}

.offer-name {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
}

.offer-bonus-group {
  text-align: center;
}

.offer-bonus {
  margin: 0;
  color: var(--offer-bonus);
  font-weight: 700;
  font-size: clamp(0.82rem, 2.4vw, 1rem);
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.offer-terms {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  color: #9ca3af;
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.offer-desc {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.45;
}

.offer-cta {
  display: block;
  margin-top: auto;
  padding: 12px 16px;
  background: var(--offer-cta-bg);
  color: var(--offer-cta-text);
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  cursor: pointer;
}

.offer-cta:hover {
  filter: brightness(1.08);
  color: var(--offer-cta-text);
}

.info-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 24px;
  position: relative;
  overflow-x: hidden;
}

.info-section h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  margin-bottom: 16px;
  color: var(--accent);
}

.info-section p {
  color: var(--muted);
  margin-bottom: 14px;
}

.info-section ul,
.info-section ol {
  margin: 12px 0 18px 1.2rem;
  color: var(--muted);
}

.info-section li {
  margin-bottom: 8px;
}

.info-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bio);
  margin-bottom: 10px;
}

.info-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 12px 18px;
  background: linear-gradient(120deg, rgba(168, 85, 247, 0.35), rgba(74, 222, 128, 0.18));
  border: 1px solid rgba(216, 180, 254, 0.35);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.info-cta:hover {
  border-color: var(--bio);
  color: var(--text);
}

.decor-wrap {
  margin-top: 20px;
  max-width: 100%;
  overflow: hidden;
}

.decor-img {
  display: block;
  max-width: min(500px, 100%);
  max-height: 320px;
  width: auto;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.decor-bg {
  width: 100%;
  max-width: 100%;
  height: 180px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  margin-top: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.layout-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.layout-checklist {
  list-style: none;
  margin: 0;
  padding: 18px;
}

.layout-checklist li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
}

.layout-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bio);
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.7);
}

.layout-quote {
  margin: 18px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--bio);
  background: rgba(49, 46, 129, 0.55);
  color: var(--text);
  font-style: italic;
  border-radius: 0 12px 12px 0;
}

.layout-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin: 18px 0;
}

.layout-card {
  padding: 16px;
  border-radius: 14px;
  background: rgba(49, 46, 129, 0.5);
  border: 1px solid var(--border);
}

.layout-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--accent);
}

.layout-card p {
  margin: 0;
  font-size: 0.92rem;
}

.layout-steps {
  display: grid;
  gap: 12px;
  margin: 16px 0;
}

.layout-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 14px;
  background: rgba(30, 27, 75, 0.65);
  border: 1px solid var(--border);
}

.layout-step span {
  font-family: var(--font-mono);
  color: var(--bio);
  font-weight: 700;
}

.layout-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
}

.layout-band {
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(67, 56, 202, 0.45), rgba(168, 85, 247, 0.25));
  border: 1px solid rgba(74, 222, 128, 0.2);
  margin: 16px 0;
}

.layout-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 18px 0;
}

.layout-stat {
  text-align: center;
  padding: 16px 10px;
  border-radius: 14px;
  background: rgba(49, 46, 129, 0.55);
  border: 1px solid var(--border);
}

.layout-stat strong {
  display: block;
  font-family: var(--font-mono);
  color: var(--bio);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.layout-rail {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 24px;
  align-items: start;
}

.layout-aside {
  padding: 16px;
  border-radius: 16px;
  background: rgba(30, 27, 75, 0.7);
  border: 1px dashed rgba(74, 222, 128, 0.35);
}

.layout-aside p {
  margin: 0;
  font-size: 0.9rem;
}

.layout-zigzag {
  display: grid;
  gap: 18px;
}

.layout-zigzag .zig-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
}

.layout-zigzag .zig-row:nth-child(even) .zig-copy {
  order: 2;
}

.layout-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.92rem;
}

.layout-table th,
.layout-table td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
}

.layout-table th {
  background: rgba(49, 46, 129, 0.7);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

@media (max-width: 800px) {
  .layout-split,
  .layout-rail,
  .layout-mosaic,
  .layout-zigzag .zig-row {
    grid-template-columns: 1fr;
  }

  .layout-zigzag .zig-row:nth-child(even) .zig-copy {
    order: 0;
  }

  .layout-stats {
    grid-template-columns: 1fr;
  }

  .offer-logo {
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    max-width: none;
    max-height: none;
  }
}

.site-footer {
  margin-top: auto;
  background: rgba(20, 18, 55, 0.95);
  border-top: 1px solid var(--border);
  padding: 48px 20px 28px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 18px 0 24px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 18px 0 24px;
}

.footer-badges a,
.footer-badges span {
  display: inline-flex;
  align-items: center;
}

.footer-badges img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.footer-compliance,
.footer-risk,
.footer-updated,
.footer-company {
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 12px;
  max-width: 900px;
}

.footer-company {
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.page-hero {
  padding: 48px 24px 28px;
  text-align: center;
  background: linear-gradient(180deg, rgba(67, 56, 202, 0.35), transparent);
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 10px;
}

.page-hero p {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}

.page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 24px 24px 64px;
}

.page-content h2 {
  margin: 28px 0 12px;
  color: var(--accent);
  font-size: 1.35rem;
}

.page-content h3 {
  margin: 20px 0 10px;
  color: var(--text);
  font-size: 1.1rem;
}

.page-content p,
.page-content li {
  color: var(--muted);
  margin-bottom: 12px;
}

.page-content ul {
  margin: 0 0 16px 1.2rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  padding: 24px;
}

.contact-form label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bio);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(30, 27, 75, 0.8);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  justify-self: start;
  padding: 12px 22px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
}

.form-error {
  display: none;
  color: #fca5a5;
  font-size: 0.85rem;
  margin-top: 6px;
}

.form-error.visible {
  display: block;
}

.contact-success {
  display: none;
  padding: 24px;
  border-radius: 16px;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.35);
  color: var(--text);
}

.contact-success.visible {
  display: block;
}

.age-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 12, 40, 0.92);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-overlay.active {
  display: flex;
}

.age-dialog {
  max-width: 420px;
  width: 100%;
  padding: 28px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
}

.age-dialog h2 {
  margin-bottom: 12px;
}

.age-dialog p {
  color: var(--muted);
  margin-bottom: 20px;
}

.age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.btn-confirm,
.btn-decline {
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  cursor: pointer;
  font-weight: 700;
}

.btn-confirm {
  background: var(--primary);
  color: var(--text);
  border-color: transparent;
}

.btn-decline {
  background: transparent;
  color: var(--muted);
}

.age-blocked {
  display: none;
  color: var(--text);
  text-align: center;
  max-width: 360px;
}

.age-blocked.visible {
  display: block;
}

.cookie-banner {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 900;
  max-width: 720px;
  margin: 0 auto;
  padding: 18px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.cookie-banner.active {
  display: block;
}

.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.cookie-inner p {
  color: var(--muted);
  font-size: 0.9rem;
  flex: 1 1 260px;
}

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

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  cursor: pointer;
  font-weight: 700;
}

#cookie-accept {
  background: var(--primary);
  color: var(--text);
  border-color: transparent;
}

#cookie-reject {
  background: transparent;
  color: var(--muted);
}

.go-page {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}

.go-ad {
  font-family: var(--font-mono);
  color: var(--bio);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}

.go-page h1 {
  margin-bottom: 12px;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.go-page p {
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 18px;
}

.go-spinner {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid rgba(216, 180, 254, 0.25);
  border-top-color: var(--bio);
  animation: spin 0.9s linear infinite;
  margin: 10px 0 22px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.go-compliance {
  font-size: 0.88rem;
}

.error-page {
  text-align: center;
  padding: 80px 24px;
}

.error-page h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 12px;
  -webkit-text-stroke: 1.5px #ffffff;
  color: transparent;
}

.error-page p {
  color: var(--muted);
  margin-bottom: 22px;
}

.error-page a {
  display: inline-flex;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.sub-hero {
  padding: 48px 24px;
  position: relative;
  overflow: hidden;
}

.sub-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.sub-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

.sub-hero p {
  color: var(--muted);
  max-width: 640px;
}

.sub-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 24px 72px;
}

.sub-layout p {
  color: var(--muted);
  margin-bottom: 14px;
}

.sub-layout h2 {
  color: var(--accent);
  margin: 28px 0 12px;
  font-size: 1.4rem;
}

.sub-layout h3 {
  margin: 18px 0 10px;
  font-size: 1.1rem;
}

.pull-quote {
  margin: 24px 0;
  padding: 24px;
  border-radius: 18px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.25);
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1.5;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.stat-band article {
  padding: 16px;
  border-radius: 14px;
  background: rgba(49, 46, 129, 0.55);
  border: 1px solid var(--border);
  text-align: center;
}

.stat-band strong {
  display: block;
  font-family: var(--font-mono);
  color: var(--bio);
  margin-bottom: 6px;
}

.sidebar-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 28px;
  align-items: start;
}

.side-rail {
  position: sticky;
  top: 88px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(30, 27, 75, 0.75);
  border: 1px solid var(--border);
}

.side-rail h3 {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--accent);
}

.side-rail ul {
  margin: 0 0 0 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.split-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.image-rail {
  display: flex;
  gap: 12px;
  overflow: hidden;
  margin: 20px 0;
}

.image-rail .decor-wrap {
  margin: 0;
  flex: 1;
}

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

  .side-rail {
    position: static;
  }

  .image-rail {
    flex-direction: column;
    max-width: 100%;
    overflow: hidden;
  }

  .offer-logo {
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    max-width: none;
    max-height: none;
  }
}

@media (max-width: 480px) {
  .decor-wrap,
  .decor-bg,
  .image-rail,
  .info-section,
  .sub-layout,
  .sub-hero,
  .page-content,
  .hero,
  .offers-section {
    max-width: 100%;
    overflow-x: hidden;
  }

  .decor-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: cover;
    object-position: center;
  }

  .decor-bg {
    height: 140px;
    max-width: 100%;
  }

  .offer-logo {
    width: 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    max-width: none;
    max-height: none;
  }
}

body.nav-open {
  overflow: hidden;
}
