:root {
  --bg: #050706;
  --bg-soft: #08110d;
  --text: #f6f2e7;
  --muted: rgba(246, 242, 231, 0.72);
  --line: rgba(138, 255, 188, 0.12);
  --green: #39e58d;
  --green-2: #1cc870;
  --gold: #f0ca63;
  --gold-2: #ffd977;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.42);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --max: 1240px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 8%, rgba(72, 255, 152, 0.14), transparent 18%),
    radial-gradient(circle at 12% 24%, rgba(62, 198, 123, 0.09), transparent 20%),
    radial-gradient(circle at 90% 72%, rgba(255, 210, 95, 0.06), transparent 20%),
    linear-gradient(180deg, #050706 0%, #040605 100%);
  overflow-x: hidden;
}
body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
  filter: blur(60px);
  opacity: 0.9;
}
body::before {
  width: 420px;
  height: 420px;
  top: -110px;
  right: -80px;
  background: rgba(53, 228, 132, 0.15);
  animation: drift 11s ease-in-out infinite alternate;
}
body::after {
  width: 360px;
  height: 360px;
  bottom: 8%;
  left: -100px;
  background: rgba(239, 202, 99, 0.08);
  animation: drift 14s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(30px, 25px, 0) scale(1.12); }
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.topbar { position: sticky; top: 14px; z-index: 60; padding-top: 14px; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  border: 1px solid rgba(73, 227, 137, 0.16);
  border-radius: 26px;
  background: linear-gradient(90deg, rgba(5, 8, 7, 0.92), rgba(9, 22, 15, 0.82), rgba(5, 8, 7, 0.92));
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-mark {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  flex: 0 0 auto;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
}
.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(73, 227, 137, 0.18);
  background: linear-gradient(180deg, rgba(11, 18, 14, 0.96), rgba(8, 14, 11, 0.96));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 0;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(240, 202, 99, 0.34);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  transition: transform .28s ease, opacity .2s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.mobile-menu {
  display: none;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(73, 227, 137, 0.16);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(8, 12, 11, 0.98), rgba(10, 22, 16, 0.96));
  box-shadow: var(--shadow);
}
.mobile-menu.open { display: block; }
.mobile-menu a,
.mobile-submenu-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  transition: background .2s ease, color .2s ease;
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
  text-align: left;
}
.mobile-menu a:hover,
.mobile-submenu-toggle:hover {
  background: rgba(255,255,255,0.05);
  color: var(--gold-2);
}
.mobile-nav-item { display: grid; gap: 6px; }
.mobile-submenu-toggle::after {
  content: "▾";
  font-size: 0.8rem;
  opacity: 0.8;
  transition: transform .2s ease;
}
.mobile-nav-item.open .mobile-submenu-toggle::after { transform: rotate(180deg); }
.mobile-submenu {
  display: none;
  padding-left: 10px;
}
.mobile-nav-item.open .mobile-submenu { display: block; }
.mobile-submenu a { font-weight: 600; color: rgba(255,255,255,0.82); }
@media (max-width: 1024px) {
  .wrap { width: min(var(--max), calc(100% - 24px)); }
  .nav { padding: 14px 16px; border-radius: 22px; }
  .nav-links { display: none !important; }
  .menu-toggle { display: inline-flex !important; }
}
@media (max-width: 680px) {
  .topbar { top: 8px; padding-top: 8px; }
  .wrap { width: min(var(--max), calc(100% - 18px)); }
  .brand-mark { width: 52px; height: 52px; }
}


.trust-bar {
  margin: 28px auto 20px;
  padding: 14px 18px;
  border: 1px solid rgba(73, 227, 137, 0.14);
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(8, 12, 11, 0.96), rgba(12, 28, 20, 0.92), rgba(8, 12, 11, 0.96));
  box-shadow: var(--shadow);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.trust-bar-label {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-size: 0.8rem;
}
.trust-points {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.trust-points > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(246, 242, 231, 0.82);
  font-size: 0.94rem;
  line-height: 1.1;
}
.trust-points > span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--green));
  box-shadow: 0 0 12px rgba(57, 229, 141, 0.45);
}
.sticky-mobile-cta {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%) translateY(120%);
  width: min(680px, calc(100% - 20px));
  z-index: 95;
  opacity: 0;
  pointer-events: none;
  transition: transform .28s ease, opacity .28s ease, bottom .22s ease;
}
.sticky-mobile-cta.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-mobile-cta.has-cookie { bottom: 104px; }
.sticky-mobile-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(73, 227, 137, 0.18);
  background: linear-gradient(90deg, rgba(8, 12, 11, 0.98), rgba(10, 24, 17, 0.97), rgba(8, 12, 11, 0.98));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
}
.sticky-mobile-copy {
  min-width: 0;
}
.sticky-mobile-copy strong {
  display: block;
  font-size: 0.98rem;
  color: var(--text);
}
.sticky-mobile-copy span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.85rem;
}
.sticky-mobile-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 16px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  color: #08110d;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(57, 229, 141, 0.2);
}
@media (min-width: 1025px) {
  .sticky-mobile-cta { display: none !important; }
}
@media (max-width: 1024px) {
  body.has-sticky-cta main { padding-bottom: 110px; }
}
@media (max-width: 680px) {
  .trust-bar {
    padding: 14px;
    border-radius: 18px;
  }
  .trust-bar-inner { gap: 12px; }
  .trust-points > span {
    width: 100%;
    justify-content: flex-start;
    border-radius: 14px;
  }
  .sticky-mobile-cta {
    width: calc(100% - 14px);
    bottom: 10px;
  }
  .sticky-mobile-cta.has-cookie { bottom: 126px; }
  .sticky-mobile-cta-inner {
    grid-template-columns: 1fr;
    padding: 12px;
  }
  .sticky-mobile-button {
    width: 100%;
    min-height: 52px;
  }
}
