*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1 0 auto;
}
footer {
  flex-shrink: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
a[class*="block"] {
  cursor: pointer;
}
svg {
  display: block;
}
:root {
  --brand: #04d361;
  --accent: #facc15;
  --neutral-400: #b3b3b3;
  --neutral-500: #8a8a8a;
  --neutral-600: #6b6b6b;
  --neutral-800: #262626;
  --neutral-900: #171717;
  --neutral-950: #0a0a0a;
}
::selection {
  background: var(--brand);
  color: #000;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #000;
}
::-webkit-scrollbar-thumb {
  background: #333;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand);
}
/* Global Focus Management */
*:focus,
*:focus-visible {
  outline: none;
}

/* Global Focus Management */
*:focus,
*:focus-within {
  outline: none;
}

/* Accessible Focus Indicators (No Rings) */
a:focus-visible,
button:focus-visible,
.js-open-modal:focus-visible {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 4px;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible {
  border-color: var(--brand) !important;
  box-shadow: 0 0 0 1px var(--brand);
}

/* Form Styles */
.form-input {
  width: 100%;
  background-color: var(--neutral-950);
  border: 1px solid var(--neutral-800);
  color: #fff;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  font-family: inherit;
  font-size: 16px; /* Prevent iOS zoom */
}

select.form-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.form-input:focus {
  border-color: var(--brand);
  background-color: #000;
}

.form-input::placeholder {
  color: var(--neutral-600);
}

/* Custom Select Arrow */
.select-wrapper {
  position: relative;
}

.select-arrow {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--neutral-400);
}

/* Interactive Targets */
button,
a,
input,
select {
  cursor: pointer;
  touch-action: manipulation;
  min-height: 44px; /* Mobile hit target */
  font-family: inherit;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
  cursor: text;
}

/* Tabular numbers for stats */
.stats-number {
  font-variant-numeric: tabular-nums;
}

/* Modal Behavior */
#lead-modal-content {
  overscroll-behavior: contain;
}

/* Loading Spinner */
.spinner {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
  margin-right: 0.5rem;
  vertical-align: text-bottom;
}

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

/* Skip Link */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
.reveal-on-scroll:focus-within {
  opacity: 1 !important;
  transform: none !important;
}
/* Skip Link */
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  clip: auto;
  z-index: 100;
  padding: 1rem 1.5rem;
  background-color: var(--brand);
  color: black;
  font-weight: bold;
  outline: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--neutral-900);
  border-top: 1px solid var(--neutral-800);
  padding: 1.5rem;
  padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.5, 0, 0, 1);
}

#cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

.cookie-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

#cookie-accept,
#cookie-decline {
  cursor: pointer;
  font-family: inherit;
}

#cookie-accept {
  background: var(--brand);
  color: #000;
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

#cookie-accept:hover,
#cookie-accept:focus-visible {
  background: #4ade80;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(4, 211, 97, 0.3);
  outline: none; /* Ensure no ring */
}

#cookie-decline {
  background: transparent;
  color: var(--neutral-500);
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

#cookie-decline:hover,
#cookie-decline:focus-visible {
  color: #fff;
  outline: none;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1),
    transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-on-scroll.delay-100 {
  transition-delay: 100ms;
}
.reveal-on-scroll.delay-200 {
  transition-delay: 200ms;
}
.reveal-on-scroll.delay-300 {
  transition-delay: 300ms;
}
.reveal-on-scroll.delay-400 {
  transition-delay: 400ms;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}
.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}
.font-mono {
  font-family: ui-monospace, monospace;
}
.font-medium {
  font-weight: 500;
}
.font-bold {
  font-weight: 700;
}
.font-black {
  font-weight: 900;
}
.tracking-tighter {
  letter-spacing: -0.05em;
}
.tracking-widest {
  letter-spacing: 0.1em;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.leading-snug {
  line-height: 1.375;
}
.leading-tight {
  line-height: 1.25;
}
.leading-relaxed {
  line-height: 1.625;
}
.leading-\[0\.9\] {
  line-height: 0.9;
}
.uppercase {
  text-transform: uppercase;
}
.italic {
  font-style: italic;
}
.not-italic {
  font-style: normal;
}
.text-center {
  text-align: center;
}
.text-white {
  color: #fff;
}
.text-black {
  color: #000;
}
.text-brand {
  color: var(--brand);
}
.text-accent {
  color: var(--accent);
}
.text-neutral-400 {
  color: var(--neutral-400);
}
.text-neutral-500 {
  color: var(--neutral-500);
}
.text-neutral-600 {
  color: var(--neutral-600);
}
.text-neutral-300 {
  color: #d4d4d4;
}
.bg-brand {
  background-color: var(--brand);
}
.bg-accent {
  background-color: var(--accent);
}
.bg-neutral-800 {
  background-color: var(--neutral-800);
}
.bg-neutral-900 {
  background-color: var(--neutral-900);
}
.bg-neutral-900\/50 {
  background-color: rgba(23, 23, 23, 0.5);
}
.bg-neutral-950 {
  background-color: var(--neutral-950);
}
.bg-neutral-950\/50 {
  background-color: rgba(10, 10, 10, 0.5);
}
.from-neutral-950\/80 {
  --tw-gradient-from: rgba(10, 10, 10, 0.8);
  --tw-gradient-stops: var(--tw-gradient-from),
    var(--tw-gradient-to, rgba(10, 10, 10, 0));
}
.via-neutral-950\/50 {
  --tw-gradient-stops: var(--tw-gradient-from), rgba(10, 10, 10, 0.5),
    var(--tw-gradient-to, rgba(10, 10, 10, 0));
}
.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.from-neutral-950 {
  --tw-gradient-from: var(--neutral-950);
  --tw-gradient-stops: var(--tw-gradient-from),
    var(--tw-gradient-to, rgba(10, 10, 10, 0));
}
.via-neutral-900 {
  --tw-gradient-stops: var(--tw-gradient-from), var(--neutral-900),
    var(--tw-gradient-to, rgba(23, 23, 23, 0));
}
.to-neutral-950 {
  --tw-gradient-to: var(--neutral-950);
}
.bg-green-950\/20 {
  background-color: rgba(5, 46, 22, 0.2);
}
.bg-green-400 {
  background-color: #4ade80;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.p-12 {
  padding: 3rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}
.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.pb-0\.5 {
  padding-bottom: 0.125rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.pt-8 {
  padding-top: 2rem;
}
.pt-12 {
  padding-top: 3rem;
}
.pb-24 {
  padding-bottom: 6rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.w-full {
  width: 100%;
}
.h-full {
  height: 100%;
}
.w-24 {
  width: 6rem;
}
.h-24 {
  height: 6rem;
}
.min-h-\[400px\] {
  min-height: 400px;
}
.min-h-\[600px\] {
  min-height: 600px;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-7xl {
  max-width: 80rem;
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-12 {
  gap: 3rem;
}
.grid {
  display: grid;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.top-0 {
  top: 0;
}
.right-0 {
  right: 0;
}
.z-10 {
  z-index: 10;
}
.z-40 {
  z-index: 40;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.border {
  border-width: 1px;
  border-style: solid;
}
.border-2 {
  border-width: 2px;
  border-style: solid;
}
.border-l-4 {
  border-left-width: 4px;
  border-left-style: solid;
}
.border-t {
  border-top-width: 1px;
  border-top-style: solid;
}
.border-b {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.border-y {
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-top-style: solid;
  border-bottom-style: solid;
}
.border-transparent {
  border-color: transparent !important;
}
.border-white {
  border-color: #fff !important;
}
.border-brand {
  border-color: var(--brand) !important;
}
.border-neutral-800 {
  border-color: var(--neutral-800) !important;
}
.border-neutral-600 {
  border-color: var(--neutral-600) !important;
}
.border-green-900\/50 {
  border-color: rgba(20, 83, 45, 0.5) !important;
}
.rounded-sm {
  border-radius: 0.125rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-none {
  border-radius: 0;
}
.overflow-hidden {
  overflow: hidden;
}
.object-cover {
  object-fit: cover;
}
.aspect-\[4\/3\] {
  aspect-ratio: 4/3;
}
.aspect-\[16\/9\] {
  aspect-ratio: 16/9;
}
.opacity-0 {
  opacity: 0;
}
.opacity-40 {
  opacity: 0.4;
}
.opacity-80 {
  opacity: 0.8;
}
.transform {
  transform: translateZ(0);
}
.translate-y-4 {
  transform: translateY(1rem);
}
.-translate-y-1 {
  transform: translateY(-0.25rem);
}
.translate-y-0 {
  transform: translateY(0);
}
.grayscale {
  filter: grayscale(100%);
}
.grayscale-0 {
  filter: grayscale(0);
}
.transition-colors {
  transition: color 150ms, background-color 150ms, border-color 150ms;
}
.transition-opacity {
  transition: opacity 300ms;
}
.transition-transform {
  transition: transform 150ms;
}
.transition-all {
  transition: color 500ms, background-color 500ms, border-color 500ms, filter 500ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.duration-500 {
  transition-duration: 500ms;
}
.hover\:bg-green-400:hover {
  background-color: #4ade80;
}
.hover\:bg-neutral-900:hover {
  background-color: var(--neutral-900);
}
.hover\:border-neutral-600:hover {
  border-color: var(--neutral-600);
}
.hover\:border-brand:hover {
  border-color: var(--brand);
}
.hover\:border-white:hover {
  border-color: #fff;
}
.hover\:-translate-y-1:hover {
  transform: translateY(-0.25rem);
}
.hover\:opacity-40:hover {
  opacity: 0.4;
}
.hover\:opacity-100:hover {
  opacity: 1;
}
.hover\:grayscale-0:hover {
  filter: grayscale(0);
}
.hover\:bg-white:hover {
  background-color: #fff;
}
.hover\:text-black:hover {
  color: #000;
}
.group:hover .group-hover\:text-accent {
  color: var(--accent);
}
.group:hover .group-hover\:opacity-40 {
  opacity: 0.4;
}
.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}
.group:hover .group-hover\:translate-y-0 {
  transform: translateY(0);
}
.shadow-\[4px_4px_0px_0px_rgba\(255\,255\,255\,0\.2\)\] {
  box-shadow: 4px 4px 0px 0px rgba(255, 255, 255, 0.2);
}
.shadow-\[4px_4px_0px_0px_rgba\(255\,255\,255\,0\.1\)\] {
  box-shadow: 4px 4px 0px 0px rgba(255, 255, 255, 0.1);
}
.shadow-\[0_0_20px_rgba\(4\,211\,97\,0\.1\)\] {
  box-shadow: 0 0 20px rgba(4, 211, 97, 0.1);
}
.focus\:outline-none:focus {
  outline: none;
}
.divide-y > * + * {
  border-top-width: 1px;
  border-top-style: solid;
}
.divide-x > * + * {
  border-left-width: 1px;
  border-left-style: solid;
}
.divide-neutral-800 > * + * {
  border-color: var(--neutral-800);
}
.space-y-3 > * + * {
  margin-top: 0.75rem;
}
.space-y-8 > * + * {
  margin-top: 2rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
@media (min-width: 768px) {
  .md\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .md\:pt-24 {
    padding-top: 6rem;
  }
  .md\:pb-32 {
    padding-bottom: 8rem;
  }
  .md\:min-h-\[800px\] {
    min-height: 800px;
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  .md\:text-8xl {
    font-size: 6rem;
    line-height: 1;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:divide-y-0 > * + * {
    border-top-width: 0;
  }
  .md\:divide-x > * + * {
    border-left-width: 1px;
    border-left-style: solid;
  }
}
@media (min-width: 1024px) {
  .lg\:text-9xl {
    font-size: 8rem;
    line-height: 1;
  }
}

/* Missing Utilities for Modal */
.fixed {
  position: fixed;
}
.z-\[9999\] {
  z-index: 9999;
}
.bg-black\/90 {
  background-color: rgba(0, 0, 0, 0.9);
}
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.pointer-events-none {
  pointer-events: none;
}
.pointer-events-auto {
  pointer-events: auto;
}
.scale-90 {
  transform: scale(0.9);
}
.scale-100 {
  transform: scale(1);
}
.opacity-100 {
  opacity: 1;
}
