:root {
  --bg: #0A0A0A;
  --surface: #141414;
  --text: #FAFAFA;
  --muted: #A3A3A3;
  --primary: #F97316;
  --secondary: #FB923C;
  --accent: #22C55E;
  --border: rgba(250, 250, 250, 0.12);
  --nature: rgba(34, 197, 94, 0.28);
  --future: rgba(249, 115, 22, 0.22);
  --lab: rgba(20, 20, 20, 0.78);
  --hybrid: rgba(251, 146, 60, 0.18);
  --glowing-plants: rgba(34, 197, 94, 0.55);
  --font-display: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  --font-mono: "SF Mono", "Cascadia Code", "Consolas", "Courier New", monospace;
  --max-w: 1200px;
}

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

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

body {
  font-family: var(--font-display);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 70% 45% at 12% -10%, var(--future) 0%, transparent 55%),
    radial-gradient(ellipse 55% 40% at 90% 100%, var(--nature) 0%, transparent 50%),
    linear-gradient(180deg, #0A0A0A 0%, #12100e 48%, #0A0A0A 100%);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      115deg,
      transparent,
      transparent 18px,
      rgba(34, 197, 94, 0.028) 18px,
      rgba(34, 197, 94, 0.028) 19px
    );
  pointer-events: none;
  z-index: 0;
}

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

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}

a:hover {
  opacity: 0.7;
}

.disclosure-bar {
  display: flex;
  width: 100%;
  align-items: stretch;
  height: auto;
}

.disclosure-icon-zone {
  flex: 0 0 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--bg);
  font-size: 16px;
  font-weight: 700;
}

.disclosure-text-zone {
  flex: 1;
  background: rgba(250, 250, 250, 0.08);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  padding: 10px 16px;
  text-align: left;
}

.site-nav {
  position: sticky;
  top: 16px;
  z-index: 200;
  margin: 0 16px;
  max-width: var(--max-w);
  width: calc(100% - 32px);
  margin-left: auto;
  margin-right: auto;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  min-height: 56px;
  gap: 16px;
}

.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  justify-content: flex-end;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.7;
}

.nav-links a:hover {
  opacity: 1;
}

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

.nav-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger.active span:nth-child(2) {
  opacity: 0;
}

.nav-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background:
    radial-gradient(ellipse at 30% 20%, var(--nature) 0%, transparent 45%),
    var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 48px 24px;
}

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

.mobile-nav a {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.85;
}

.mobile-nav a:hover {
  opacity: 1;
  color: var(--accent);
}

main {
  flex: 1;
}

.site-footer {
  margin-top: 64px;
  padding: 48px 24px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -60px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glowing-plants) 0%, transparent 70%);
  opacity: 0.25;
  pointer-events: none;
}

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

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.footer-logo img {
  height: 28px;
  width: auto;
}

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

.footer-badges img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 20px;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--primary);
  opacity: 1;
}

.footer-at-disclosure {
  font-size: 12px;
  color: rgba(250, 250, 250, 0.55);
  line-height: 1.55;
  margin-bottom: 16px;
  max-width: 920px;
}

.footer-company {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-copy {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.footer-cookie-link {
  font-size: 12px;
  color: var(--secondary);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

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

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

.age-gate-box {
  background: var(--lab);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 40px var(--nature), inset 0 0 30px var(--hybrid);
  backdrop-filter: blur(12px);
}

.age-gate-box h2 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.age-gate-box p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.age-gate-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-primary,
.btn-secondary {
  font-family: var(--font-display);
  font-size: 0.95rem;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--bg);
  font-weight: 600;
}

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

.btn-primary:hover,
.btn-secondary:hover {
  opacity: 0.85;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 16px;
  background: transparent;
}

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

.cookie-inner {
  max-width: 720px;
  margin: 0 auto;
  background: var(--lab);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 0 24px var(--future);
  backdrop-filter: blur(14px);
}

.cookie-inner p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 14px;
}

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

.cookie-panel {
  display: none;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.cookie-panel.visible {
  display: block;
}

.page-hero {
  padding: 48px 24px 36px;
  text-align: center;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.18), rgba(34, 197, 94, 0.1));
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 8px;
}

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

.page-content h2 {
  font-size: 1.2rem;
  margin: 28px 0 10px;
  color: var(--secondary);
}

.page-content h3 {
  font-size: 1.05rem;
  margin: 20px 0 8px;
  color: var(--accent);
}

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

.page-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.page-content a {
  color: var(--primary);
}

.lab-glass {
  background: var(--lab);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 24px var(--hybrid);
}

.contact-form {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--secondary);
  display: block;
  margin-bottom: 6px;
}

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

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

.form-error {
  display: none;
  color: var(--primary);
  font-size: 0.85rem;
  margin-top: 4px;
}

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

.contact-success {
  display: none;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--accent);
  border-radius: 12px;
  color: var(--accent);
  background: rgba(34, 197, 94, 0.08);
}

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

.contact-form.is-hidden {
  display: none;
}

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

.go-ad {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--secondary);
}

.go-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

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

.go-compliance {
  max-width: 480px;
  font-size: 0.85rem;
  color: var(--muted);
}

.go-compliance a {
  color: var(--accent);
}

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

.decor-wrap {
  max-width: 100%;
  overflow: hidden;
}

.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px;
  gap: 16px;
}

.error-page h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 900px) {
  .site-nav {
    margin: 0;
    width: 100%;
    max-width: none;
    border-radius: 0;
    top: 0;
  }

  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .nav-inner {
    padding: 12px 16px;
  }
}

@media (max-width: 480px) {
  .decor-wrap {
    max-width: 100%;
    overflow: hidden;
  }

  .decor-img {
    max-width: 100%;
    max-height: 200px;
    width: 100%;
    height: auto;
  }

  .disclosure-text-zone {
    font-size: 11px;
    padding: 8px 12px;
  }

  .site-footer {
    padding: 36px 16px 28px;
    overflow-x: hidden;
  }

  .footer-badges img {
    max-width: 100%;
  }
}
