:root {
  color-scheme: dark;
  --brand: #c0ff1e;
  --bg: #0f0f0f;
  --card: #1a1a1a;
  --muted: #9ca3af;
}

html {
  scroll-padding-top: 7rem;
}

body.menu-open {
  overflow: hidden;
}

body {
  background:
    radial-gradient(circle at top left, rgba(192, 255, 30, 0.14), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(192, 255, 30, 0.08), transparent 22%),
    linear-gradient(180deg, #0b0b0b 0%, #0f0f0f 40%, #090909 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 88%);
  opacity: 0.18;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(192, 255, 30, 0.04), transparent 42%),
    radial-gradient(circle at bottom, rgba(192, 255, 30, 0.05), transparent 28%);
  z-index: -1;
}

::selection {
  background: var(--brand);
  color: var(--bg);
}

.header-scrolled .header-shell {
  background: rgba(10, 10, 10, 0.82);
  border-color: rgba(192, 255, 30, 0.18);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
}

.brand-lockup {
  min-width: 0;
  flex: 1 1 auto;
}

.brand-logo-shell {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(192, 255, 30, 0.08);
}

.brand-logo {
  display: block;
  width: 1.9rem;
  height: 1.9rem;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(192, 255, 30, 0.12));
}

.brand-meta {
  min-width: 0;
}

.brand-title {
  line-height: 1;
}

.brand-subtitle {
  line-height: 1.15;
}

.nav-link {
  position: relative;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: #ffffff;
  background: rgba(192, 255, 30, 0.09);
  border-color: rgba(192, 255, 30, 0.18);
}

.glass-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(192, 255, 30, 0.14);
  backdrop-filter: blur(24px);
}

.card-hover {
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.card-hover:hover,
.card-hover:focus-within {
  transform: translateY(-8px);
  border-color: rgba(192, 255, 30, 0.32);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(192, 255, 30, 0.14);
}

.text-gradient {
  background-image: linear-gradient(135deg, #ffffff 12%, #c0ff1e 62%, #efffc3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-dim {
  color: #9ca3af;
}

.lime-ring {
  box-shadow:
    0 0 0 1px rgba(192, 255, 30, 0.2),
    0 24px 80px rgba(192, 255, 30, 0.08);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(48px);
  opacity: 0.55;
  pointer-events: none;
}

.hero-orb.orb-one {
  top: 7rem;
  right: -3rem;
  height: 18rem;
  width: 18rem;
  background: rgba(192, 255, 30, 0.12);
}

.hero-orb.orb-two {
  bottom: 2rem;
  left: -5rem;
  height: 14rem;
  width: 14rem;
  background: rgba(192, 255, 30, 0.08);
}

.hero-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.mobile-menu {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-8px);
  transition:
    max-height 0.32s ease,
    opacity 0.24s ease,
    transform 0.24s ease,
    margin-top 0.24s ease;
}

.mobile-menu.is-open {
  max-height: 24rem;
  opacity: 1;
  transform: translateY(0);
  margin-top: 1rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item[data-open="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--brand);
}

.faq-icon {
  transition:
    transform 0.24s ease,
    color 0.24s ease;
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.legal-prose h2 {
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
}

.legal-prose p,
.legal-prose li {
  color: #9ca3af;
}

.legal-prose ul {
  margin: 0;
  padding-left: 1.25rem;
}

.field-shell {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.field-shell:focus {
  border-color: rgba(192, 255, 30, 0.42);
  box-shadow: 0 0 0 4px rgba(192, 255, 30, 0.08);
  background: rgba(255, 255, 255, 0.05);
  outline: none;
}

.contact-info-card {
  min-width: 0;
}

.contact-break {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.pricing-popular {
  background:
    linear-gradient(180deg, rgba(192, 255, 30, 0.1), rgba(26, 26, 26, 0.96)),
    rgba(26, 26, 26, 0.92);
  border-color: rgba(192, 255, 30, 0.34);
}

.table-shell::-webkit-scrollbar {
  height: 10px;
}

.table-shell::-webkit-scrollbar-thumb {
  background: rgba(192, 255, 30, 0.24);
  border-radius: 999px;
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 6rem;
  }

  .header-shell {
    border-radius: 1.75rem;
    padding: 0.75rem 0.9rem;
  }

  .brand-lockup {
    gap: 0.75rem;
    padding-right: 0.25rem;
  }

  .brand-logo-shell {
    width: 3rem;
    height: 3rem;
    border-radius: 1.2rem;
  }

  .brand-logo {
    width: 1.7rem;
    height: 1.7rem;
  }

  .mobile-menu.is-open {
    margin-top: 0.75rem;
  }
}

@media (max-width: 520px) {
  .brand-title {
    font-size: 1rem;
  }

  .brand-subtitle {
    font-size: 0.68rem;
  }
}

@media (max-width: 430px) {
  .brand-subtitle {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
