.site-srOnly { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 60;
  background-color: #ffffff;
  color: #111827;
  border-bottom: 2px solid #050505;
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #050505;
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.site-brand svg {
  width: 32px;
  height: 32px;
  display: block;
}

.site-brand__highlight {
  color: #39ff14;
  text-shadow: 1px 1px 0 #050505, -1px -1px 0 #050505, 1px -1px 0 #050505, -1px 1px 0 #050505;
}

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

.site-nav__link {
  text-decoration: none;
  color: #111827;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  transition: color 0.2s ease;
}

.site-nav__link:hover {
  color: #39ff14;
  text-shadow: 1px 1px 0 #050505;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background-color: #a3ff12;
  color: #050505;
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid #050505;
  box-shadow: 4px 4px 0 #050505;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.site-header__cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #050505;
  background-color: #39ff14;
}

.site-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  background: #ffffff;
  border: 2px solid #050505;
  color: #050505;
  cursor: pointer;
}

.site-burger__line {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition: transform 0.2s ease;
}

.site-mobileNav {
  position: fixed;
  inset: 0;
  z-index: 70;
}

.site-mobileNav[hidden] {
  display: none;
}

.site-mobileNav__panel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
}

.site-mobileNav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 2px solid #050505;
}

.site-mobileNav__brand {
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  color: #050505;
}

.site-mobileNav__close {
  width: 48px;
  height: 48px;
  background: #ffffff;
  border: 2px solid #050505;
  color: #050505;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-mobileNav__close:hover {
  background: #a3ff12;
}

.site-mobileNav__links {
  display: flex;
  flex-direction: column;
  padding: 48px 24px;
  gap: 32px;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
}

.site-mobileNav__link {
  color: #111827;
  text-decoration: none;
  font-weight: 900;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.site-mobileNav__link:hover {
  color: #39ff14;
  text-shadow: 2px 2px 0 #050505;
}

.site-mobileNav__bottom {
  padding: 32px 24px;
  border-top: 2px solid #050505;
  background: #f8fff4;
  display: flex;
  justify-content: center;
}

.site-mobileNav__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background-color: #a3ff12;
  color: #050505;
  text-decoration: none;
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  border: 2px solid #050505;
  box-shadow: 6px 6px 0 #050505;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.site-mobileNav__cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0 #050505;
  background-color: #39ff14;
}

.site-footer {
  background-color: #050505;
  color: #f8fff4;
  padding: 64px 24px 32px;
  border-top: 4px solid #a3ff12;
  font-family: system-ui, sans-serif;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.site-footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

.site-footer__brandCol {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer__brand {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  color: #a3ff12;
  letter-spacing: 0.05em;
}

.site-footer__summary {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #e5e7eb;
  max-width: 400px;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.site-footer__contactLink {
  color: #a3ff12;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
}

.site-footer__contactLink:hover {
  color: #39ff14;
  text-decoration: underline;
}

.site-footer__navCol {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.site-footer__title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__link {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-footer__link:hover {
  color: #a3ff12;
}

.site-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(229, 231, 235, 0.2);
}

.site-footer__disclaimer {
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__bottomRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: #64748b;
}

.site-footer__legalLinks {
  display: flex;
  gap: 24px;
}

.site-footer__link--legal {
  color: #64748b;
  font-weight: 400;
}

.site-footer__link--legal:hover {
  color: #e5e7eb;
}

@media (max-width: 900px) {
  .site-header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .site-nav--desktop {
    display: none;
  }
  .site-header__cta {
    display: none;
  }
  .site-burger {
    display: flex;
  }
  .site-footer__main {
    grid-template-columns: 1fr;
  }
  .site-footer__bottomRow {
    flex-direction: column;
    align-items: flex-start;
  }
}
[data-mobile-nav][hidden],[data-mobile-nav].hidden{display:none}
[data-mobile-nav][data-mobile-open="1"]{display:block}
