:root {
  --accent: #c5f820;
  --graphite: #111113;
  --graphite-light: #1c1c20;
  --graphite-card: #232328;
  --yellow: #facc15;
  --red: #f87171;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #0a0a0c;
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background: #0a0a0c;
}

*::-webkit-scrollbar-thumb {
  background: #2f2f35;
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

.hero-grid {
  background-image:
    linear-gradient(rgba(197, 248, 32, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 248, 32, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.glow {
  box-shadow: 0 0 80px -20px rgba(197, 248, 32, 0.45);
}

.card {
  background: var(--graphite-light);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 248, 32, 0.28);
}

.btn-primary {
  background: var(--accent);
  color: var(--graphite);
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #d9ff57;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(197, 248, 32, 0.55);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  color: var(--accent);
  border-color: rgba(197, 248, 32, 0.5);
  transform: translateY(-2px);
}

.tag {
  background: rgba(197, 248, 32, 0.08);
  color: var(--accent);
  border: 1px solid rgba(197, 248, 32, 0.18);
}

.input-field {
  background: var(--graphite-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.input-field:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--graphite-card);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
}

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

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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

.nav-blur {
  backdrop-filter: blur(20px);
  background: rgba(10, 10, 12, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pulse-dot {
  animation: pulseDot 2s infinite;
}

.panel-dark {
  background:
    radial-gradient(circle at top right, rgba(197, 248, 32, 0.18), transparent 28%),
    linear-gradient(180deg, #17171b 0%, #101013 100%);
}

.gradient-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 248, 32, 0.32), transparent);
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(197, 248, 32, 0.65); }
  70% { box-shadow: 0 0 0 10px rgba(197, 248, 32, 0); }
}

.active { }
.absolute { position: absolute; }
.aspect-\[4\/5\] { aspect-ratio: 4 / 5; }
.backdrop-blur { backdrop-filter: blur(12px); }
.bg-\[radial-gradient\(circle_at_20\%_20\%\,rgba\(197\,248\,32\,0\.22\)\,transparent_22\%\)\,radial-gradient\(circle_at_80\%_25\%\,rgba\(255\,255\,255\,0\.08\)\,transparent_18\%\)\,linear-gradient\(135deg\,\#202127_0\%\,\#0e0f12_55\%\,\#14161a_100\%\)\] { background: radial-gradient(circle at 20% 20%, rgba(197, 248, 32, 0.22), transparent 22%), radial-gradient(circle at 80% 25%, rgba(255, 255, 255, 0.08), transparent 18%), linear-gradient(135deg, #202127 0%, #0e0f12 55%, #14161a 100%); }
.bg-accent { background: var(--accent); }
.bg-accent\/10 { background: rgba(197, 248, 32, 0.1); }
.bg-accent\/15 { background: rgba(197, 248, 32, 0.15); }
.bg-accent\/5 { background: rgba(197, 248, 32, 0.05); }
.bg-black\/25 { background: rgba(0, 0, 0, 0.25); }
.bg-black\/35 { background: rgba(0, 0, 0, 0.35); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-graphite { background: var(--graphite); }
.bg-graphite-light { background: var(--graphite-light); }
.bg-sky-500\/5 { background: rgba(14, 165, 233, 0.05); }
.bg-white\/5 { background: rgba(255, 255, 255, 0.05); }
.bg-yellow-500\/10 { background: rgba(234, 179, 8, 0.1); }
.bg-yellow-500\/5 { background: rgba(234, 179, 8, 0.05); }
.block { display: block; }
.blur-\[120px\] { filter: blur(120px); }
.border { border-width: 1px; border-style: solid; border-color: rgba(255, 255, 255, 0.12); }
.border-accent\/20 { border-color: rgba(197, 248, 32, 0.2); }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }
.border-yellow-500\/20 { border-color: rgba(234, 179, 8, 0.2); }
.border-yellow-500\/30 { border-color: rgba(234, 179, 8, 0.3); }
.bottom-20 { bottom: 5rem; }
.bottom-24 { bottom: 6rem; }
.bottom-8 { bottom: 2rem; }
.col-span-2 { grid-column: span 2 / span 2; }
.cursor-pointer { cursor: pointer; }
.fixed { position: fixed; }
.flex { display: flex; }
.flex-1 { flex: 1 1 0%; }
.flex-col { flex-direction: column; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-wrap { flex-wrap: wrap; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-semibold { font-weight: 600; }
.from-accent\/5 { --tw-gradient-from: rgba(197, 248, 32, 0.05); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(197, 248, 32, 0)); }
.from-graphite-light { --tw-gradient-from: var(--graphite-light); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 28, 32, 0)); }
.from-yellow-500\/5 { --tw-gradient-from: rgba(234, 179, 8, 0.05); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 179, 8, 0)); }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-2 { height: 0.5rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.hidden { display: none; }
.hover\:text-accent:hover { color: var(--accent); }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.inset-0 { inset: 0; }
.inset-x-10 { left: 2.5rem; right: 2.5rem; }
.inset-x-12 { left: 3rem; right: 3rem; }
.inset-x-14 { left: 3.5rem; right: 3.5rem; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.leading-\[1\.02\] { line-height: 1.02; }
.leading-relaxed { line-height: 1.625; }
.left-0 { left: 0; }
.left-10 { left: 2.5rem; }
.left-8 { left: 2rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-xl { max-width: 36rem; }
.max-w-xs { max-width: 20rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.min-h-screen { min-height: 100vh; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-4 { padding-bottom: 1rem; }
.pr-4 { padding-right: 1rem; }
.pt-24 { padding-top: 6rem; }
.pt-8 { padding-top: 2rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.relative { position: relative; }
.resize-none { resize: none; }
.right-0 { right: 0; }
.right-10 { right: 2.5rem; }
.right-8 { right: 2rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-\[2rem\] { border-radius: 2rem; }
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.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-accent { color: var(--accent); }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-black { color: #000; }
.text-center { text-align: center; }
.text-graphite { color: var(--graphite); }
.text-gray-300 { color: rgb(209 213 219); }
.text-gray-400 { color: rgb(156 163 175); }
.text-gray-500 { color: rgb(107 114 128); }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-red-400 { color: var(--red); }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-yellow-400 { color: var(--yellow); }
.to-black { --tw-gradient-to: #000; }
.to-transparent { --tw-gradient-to: transparent; }
.top-0 { top: 0; }
.top-12 { top: 3rem; }
.top-20 { top: 5rem; }
.tracking-\[0\.18em\] { letter-spacing: 0.18em; }
.tracking-tight { letter-spacing: -0.025em; }
.transition { transition: 0.3s ease; }
.uppercase { text-transform: uppercase; }
.via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, transparent); }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-2 { width: 0.5rem; }
.w-20 { width: 5rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-80 { width: 20rem; }
.w-96 { width: 24rem; }
.w-full { width: 100%; }
.z-50 { z-index: 50; }

.-bottom-6 { bottom: -1.5rem; }
.-left-6 { left: -1.5rem; }
.-right-4 { right: -1rem; }
.-top-4 { top: -1rem; }

@media (min-width: 640px) {
  .sm\:col-span-2 { grid-column: span 2 / span 2; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .md\:col-span-1 { grid-column: span 1 / span 1; }
  .md\:flex { display: flex; }
  .md\:flex-row { flex-direction: row; }
  .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-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .md\:hidden { display: none; }
  .md\:inline-block { display: inline-block; }
  .md\:p-10 { padding: 2.5rem; }
  .md\:p-12 { padding: 3rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
}
