:root {
  --bg: #020617;
  --surface: #020F2F;
  --text: #E5E7EB;
  --muted: #94A3B8;
  --primary: #38BDF8;
  --secondary: #A3E635;
  --accent: #F472B6;
  --border: rgba(229,231,235,0.12);
  --hi-tech: hi-tech;
  --corporate: corporate;
  --clean: clean;
  --digital: digital;
  --professional: professional;
  --trust: trust;
  --font: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 1200px;
  --nav-left-bg: #0a1628;
  --nav-right-bg: #01040f;
  --offer-card-bg: #ffffff;
  --offer-bonus-color: #0f172a;
  --offer-terms-color: #6b7280;
  --offer-cta-bg: #16a34a;
  --offer-cta-text: #ffffff;
}

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

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

body {
  font-family: var(--font);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 70% 45% at 10% -5%, rgba(56, 189, 248, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 95% 90%, rgba(163, 230, 53, 0.08), transparent 50%),
    linear-gradient(180deg, #020617 0%, #041028 45%, #020617 100%);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at 50% 15%, black 8%, transparent 72%);
}

.hi-tech.corporate.clean.digital.professional.trust {
  position: relative;
}

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

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

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

a:hover {
  color: var(--secondary);
}

ul {
  list-style: none;
}

h1,
h2,
h3 {
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

.disclosure-banner {
  width: 100%;
  margin: 0;
  padding: 10px 16px;
  background: linear-gradient(90deg, #01040f 0%, #0c4a6e 100%);
  color: #ffffff;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
  border: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100%;
}

.navbar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 60px;
  width: 100%;
}

.nav-left {
  background: var(--nav-left-bg);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-right {
  background: var(--nav-right-bg);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.nav-left-inner,
.nav-right-inner {
  width: 100%;
  max-width: 600px;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.nav-left-inner {
  justify-content: flex-start;
  margin-right: 0;
  margin-left: auto;
}

.nav-right-inner {
  justify-content: flex-end;
  margin-left: 0;
  margin-right: auto;
  gap: 8px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.03em;
}

.brand-lockup:hover {
  color: var(--primary);
}

.brand-lockup img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

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

.nav-links a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 4px 7px;
}

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

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

.burger span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--nav-right-bg);
  border-left: 1px solid var(--border);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  padding: 72px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-drawer.active {
  transform: translateX(0);
}

.nav-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.7);
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.nav-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer a {
  color: var(--text);
  font-size: 1rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.nav-drawer a:hover {
  color: var(--primary);
}

.drawer-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}

main {
  flex: 1 0 auto;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 20px 32px;
  margin-top: 48px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}

.footer-brand img {
  width: 32px;
  height: 32px;
}

.footer-compliance {
  display: grid;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
  max-width: 920px;
}

.footer-compliance a {
  color: var(--primary);
}

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

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

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

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

.footer-company {
  font-size: 12px;
  color: var(--muted);
}

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-gate.hidden {
  display: none;
}

.age-gate-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  max-width: 440px;
  width: 100%;
  padding: 32px 28px;
  text-align: center;
}

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

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

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

.age-gate-confirm,
.age-gate-deny,
.cookie-accept,
.cookie-reject {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  transition: background 0.2s ease, color 0.2s ease;
}

.age-gate-confirm,
.cookie-accept {
  background: var(--primary);
  color: var(--bg);
}

.age-gate-confirm:hover,
.cookie-accept:hover {
  background: var(--secondary);
  color: var(--bg);
}

.age-gate-deny,
.cookie-reject {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.age-gate-deny:hover,
.cookie-reject:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  font-size: 13px;
  color: var(--muted);
  flex: 1;
  min-width: 220px;
  max-width: 800px;
}

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

.legal-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 20px 64px;
}

.legal-page h1 {
  margin-bottom: 16px;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.legal-page h2 {
  margin: 28px 0 10px;
  font-size: 1.15rem;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 12px;
}

.legal-page ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 16px;
}

.page-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 36px 20px;
}

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

.page-hero h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.page-hero p {
  color: var(--muted);
  margin-top: 8px;
  font-size: 14px;
}

.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  max-width: 520px;
}

.contact-form label {
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
}

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

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

.contact-form button {
  justify-self: start;
  background: var(--primary);
  color: var(--bg);
  border: none;
  padding: 12px 22px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.contact-form button:hover {
  background: var(--secondary);
}

.field-error {
  color: var(--accent);
  font-size: 12px;
  display: none;
}

.contact-success {
  display: none;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--border);
  background: rgba(56, 189, 248, 0.08);
}

.contact-success p {
  color: var(--text);
  margin: 0;
}

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

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

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

@media (max-width: 900px) {
  .navbar {
    grid-template-columns: 1fr;
    background: var(--nav-right-bg);
  }

  .nav-left,
  .nav-right {
    background: var(--nav-right-bg);
    border-right: none;
  }

  .nav-left {
    display: flex;
  }

  .nav-right {
    display: none;
  }

  .nav-left-inner {
    max-width: none;
    width: 100%;
    justify-content: space-between;
    margin: 0;
  }

  .burger {
    display: flex;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 375px) {
  .decor-wrap,
  .bg-decor-panel {
    max-width: 100%;
    overflow: hidden;
  }

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

  .footer-badges {
    gap: 12px;
  }

  .footer-badges img {
    max-width: 96px;
    height: 36px;
  }
}
