@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --background: #0a0a0a;
  --foreground: #fafafa;
  --card: #141414;
  --card-foreground: #fafafa;
  --primary: #BFF747;
  --primary-foreground: #0a0a0a;
  --secondary: #262626;
  --secondary-foreground: #a3a3a3;
  --muted: #1a1a1a;
  --muted-foreground: #a3a3a3;
  --border: #262626;
  --input: #262626;
  --ring: #BFF747;
  --radius: 6px;
  --font-sans: 'Space Grotesk', system-ui, -apple-system, sans-serif;
}

/* ============================================
   CSS RESET
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.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; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-8xl { font-size: 6rem; line-height: 1; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.1em; }
.tracking-widest { letter-spacing: 0.2em; }

.leading-none { line-height: 1; }
.leading-tight { line-height: 1.1; }
.leading-snug { line-height: 1.375; }
.leading-relaxed { line-height: 1.7; }

.uppercase { text-transform: uppercase; }
.capitalize { text-transform: capitalize; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-foreground { color: var(--foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-secondary-foreground { color: var(--secondary-foreground); }

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }

.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }

.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.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; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-20 { gap: 5rem; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-3 { grid-column: span 3 / span 3; }
.col-span-full { grid-column: 1 / -1; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }

.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

.overflow-hidden { overflow: hidden; }
.overflow-visible { overflow: visible; }
.overflow-auto { overflow: auto; }
.overflow-x-hidden { overflow-x: hidden; }

.w-full { width: 100%; }
.w-auto { width: auto; }
.w-fit { width: fit-content; }
.h-full { height: 100%; }
.h-auto { height: auto; }
.h-screen { height: 100vh; }
.min-h-screen { min-height: 100vh; }
.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-full { max-width: 100%; }

.mx-auto { margin-left: auto; margin-right: auto; }

/* Spacing utilities */
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.p-16 { padding: 4rem; }
.p-20 { padding: 5rem; }

.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.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-8 { padding-left: 2rem; padding-right: 2rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }

.pt-4 { padding-top: 1rem; }
.pt-8 { padding-top: 2rem; }
.pt-20 { padding-top: 5rem; }
.pt-32 { padding-top: 8rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-20 { padding-bottom: 5rem; }

.m-0 { margin: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }

.mb-1 { margin-bottom: 0.25rem; }
.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; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.ml-1 { margin-left: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* ============================================
   BACKGROUNDS & BORDERS
   ============================================ */
.bg-background { background-color: var(--background); }
.bg-card { background-color: var(--card); }
.bg-primary { background-color: var(--primary); }
.bg-primary-foreground { background-color: var(--primary-foreground); }
.bg-secondary { background-color: var(--secondary); }
.bg-muted { background-color: var(--muted); }
.bg-transparent { background-color: transparent; }

.bg-primary\/5 { background-color: rgba(191, 247, 71, 0.05); }
.bg-primary\/10 { background-color: rgba(191, 247, 71, 0.1); }
.bg-primary\/20 { background-color: rgba(191, 247, 71, 0.2); }
.bg-card\/50 { background-color: rgba(20, 20, 20, 0.5); }
.bg-card\/80 { background-color: rgba(20, 20, 20, 0.8); }
.bg-background\/60 { background-color: rgba(10, 10, 10, 0.6); }
.bg-background\/80 { background-color: rgba(10, 10, 10, 0.8); }
.bg-background\/90 { background-color: rgba(10, 10, 10, 0.9); }
.bg-background\/98 { background-color: rgba(10, 10, 10, 0.98); }
.bg-muted\/50 { background-color: rgba(26, 26, 26, 0.5); }

.border { border: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.border-l { border-left: 1px solid var(--border); }
.border-r { border-right: 1px solid var(--border); }
.border-none { border: none; }

.border-border { border-color: var(--border); }
.border-border\/30 { border-color: rgba(38, 38, 38, 0.3); }
.border-border\/50 { border-color: rgba(38, 38, 38, 0.5); }
.border-primary { border-color: var(--primary); }
.border-primary\/20 { border-color: rgba(191, 247, 71, 0.2); }
.border-primary\/30 { border-color: rgba(191, 247, 71, 0.3); }
.border-input { border-color: var(--input); }

.rounded { border-radius: var(--radius); }
.rounded-md { border-radius: var(--radius); }
.rounded-lg { border-radius: 8px; }
.rounded-xl { border-radius: 12px; }
.rounded-2xl { border-radius: 16px; }
.rounded-full { border-radius: 9999px; }
.rounded-none { border-radius: 0; }
.rounded-t-md { border-top-left-radius: var(--radius); border-top-right-radius: var(--radius); }
.rounded-l-md { border-top-left-radius: var(--radius); border-bottom-left-radius: var(--radius); }

.opacity-0 { opacity: 0; }
.opacity-5 { opacity: 0.05; }
.opacity-10 { opacity: 0.1; }
.opacity-15 { opacity: 0.15; }
.opacity-20 { opacity: 0.2; }
.opacity-50 { opacity: 0.5; }
.opacity-70 { opacity: 0.7; }
.opacity-100 { opacity: 1; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  outline: none;
}

.btn:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: #aee03d;
  border-color: #aee03d;
}

.btn-primary:active {
  background-color: #9dcc35;
}

.btn-outline {
  background-color: transparent;
  color: var(--foreground);
  border-color: var(--border);
}

.btn-outline:hover {
  background-color: var(--card);
  border-color: var(--muted-foreground);
}

.btn-ghost {
  background-color: transparent;
  color: var(--foreground);
  border-color: transparent;
}

.btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background-color: #333333;
}

.btn-sm {
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
  min-height: 2rem;
}

.btn-lg {
  font-size: 1rem;
  padding: 0.75rem 2rem;
  min-height: 2.75rem;
}

.btn-icon {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--card-foreground);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  border-color: rgba(38, 38, 38, 0.8);
}

.card-hover:hover {
  border-color: rgba(191, 247, 71, 0.15);
  box-shadow: 0 0 30px rgba(191, 247, 71, 0.03);
}

.card-header {
  padding: 1.5rem 1.5rem 0;
}

.card-content {
  padding: 1.5rem;
}

.card-footer {
  padding: 0 1.5rem 1.5rem;
}

/* ============================================
   BADGES
   ============================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.15s ease;
}

.badge-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.badge-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  border-color: var(--border);
}

.badge-outline {
  background-color: transparent;
  color: var(--foreground);
  border-color: var(--border);
}

.badge-primary-subtle {
  background-color: rgba(191, 247, 71, 0.1);
  color: var(--primary);
  border-color: rgba(191, 247, 71, 0.2);
}

/* ============================================
   FORM INPUTS
   ============================================ */
.input,
.form-input,
.textarea,
.form-textarea,
.select-trigger {
  width: 100%;
  background-color: var(--background);
  border: 1px solid var(--input);
  border-radius: var(--radius);
  color: var(--foreground);
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.625rem 0.75rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  font-family: var(--font-sans);
}

.input:focus,
.form-input:focus,
.textarea:focus,
.form-textarea:focus,
.select-trigger:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(191, 247, 71, 0.15);
}

.input::placeholder,
.form-input::placeholder,
.textarea::placeholder,
.form-textarea::placeholder {
  color: var(--muted-foreground);
  opacity: 0.6;
}

.input:disabled,
.form-input:disabled,
.textarea:disabled,
.form-textarea:disabled,
.select-trigger:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.textarea,
.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.label,
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.375rem;
}

.select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a3a3a3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

select.select-native {
  width: 100%;
  background-color: var(--background);
  border: 1px solid var(--input);
  border-radius: var(--radius);
  color: var(--foreground);
  font-size: 0.875rem;
  padding: 0.625rem 2.5rem 0.625rem 0.75rem;
  outline: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a3a3a3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
}

select.select-native:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(191, 247, 71, 0.15);
}

select.select-native option {
  background-color: var(--card);
  color: var(--foreground);
}

/* Checkbox */
.checkbox,
.form-checkbox {
  width: 1rem;
  height: 1rem;
  border: 1px solid var(--input);
  border-radius: 3px;
  background-color: var(--background);
  appearance: none;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: all 0.15s ease;
}

.checkbox:checked,
.form-checkbox:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.checkbox:checked::after,
.form-checkbox:checked::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 4px;
  width: 5px;
  height: 9px;
  border: solid var(--primary-foreground);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox:focus-visible,
.form-checkbox:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--foreground);
}

.checkbox-label span {
  line-height: 1.4;
}

/* Form group */
.form-group {
  margin-bottom: 1.25rem;
}

.form-message {
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 0.25rem;
  display: none;
}

.input-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.15) !important;
}

/* ============================================
   ICONS (Lucide SVG)
   ============================================ */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.icon svg {
  width: 100%;
  height: 100%;
}

.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 20px; height: 20px; }
.icon-lg { width: 24px; height: 24px; }
.icon-xl { width: 32px; height: 32px; }

/* Icon containers */
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background-color: rgba(191, 247, 71, 0.1);
  border: 1px solid rgba(191, 247, 71, 0.2);
  color: var(--primary);
  flex-shrink: 0;
}

.icon-box-sm {
  width: 2.25rem;
  height: 2.25rem;
}

/* ============================================
   NAVIGATION HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: all 0.3s ease;
  background-color: transparent;
  overflow: visible;
}

.site-header.scrolled {
  background-color: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(38, 38, 38, 0.5);
}

.header-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 768px) {
  .header-inner {
    height: 5rem;
  }
}

@media (min-width: 1024px) {
  .header-inner {
    padding: 0 2rem;
  }
}

.header-logo img {
  height: 100px;
  width: auto;
}

@media (min-width: 768px) {
  .header-logo img {
    height: 140px;
    width: auto;
  }
}

@media (min-width: 1024px) {
  .header-logo img {
    height: 200px;
    width: auto;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  border-radius: var(--radius);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--foreground);
}

.nav-link.active {
  color: var(--primary);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .header-actions {
    display: flex;
  }
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--foreground);
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.99);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.open {
  display: flex;
}

@media (min-width: 1024px) {
  .mobile-menu,
  .mobile-menu.open {
    display: none !important;
  }
}

.mobile-menu .nav-link {
  font-size: 1.75rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  color: var(--foreground);
}

.mobile-menu .nav-link.active {
  color: var(--primary);
}

/* Hamburger icon */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--foreground);
  transition: all 0.3s ease;
  border-radius: 1px;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 7s ease-out forwards;
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.8) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    var(--background) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 8rem 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(191, 247, 71, 0.2);
  background-color: rgba(191, 247, 71, 0.05);
  backdrop-filter: blur(8px);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-tagline .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.95;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 6rem;
  }
}

.hero-title .accent {
  color: var(--primary);
}

.hero-description {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.125rem;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-indicator-track {
  width: 1px;
  height: 40px;
  background-color: var(--border);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}

.scroll-indicator-dot {
  width: 3px;
  height: 10px;
  background-color: var(--primary);
  border-radius: 2px;
  position: absolute;
  left: -1px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% {
    top: 0;
  }
  50% {
    top: 30px;
  }
}

/* ============================================
   DOT GRID BACKGROUND PATTERN
   ============================================ */
.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    var(--border) 1px,
    transparent 0
  );
  background-size: 48px 48px;
  opacity: 0.15;
  pointer-events: none;
}

.dot-grid-sm {
  background-size: 32px 32px;
  opacity: 0.1;
}

/* ============================================
   TICKER / MARQUEE ANIMATION
   ============================================ */
.ticker {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
}

.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--background), transparent);
}

.ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--background), transparent);
}

.ticker-track {
  display: inline-flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  white-space: nowrap;
  padding: 0.5rem 0;
}

.ticker-item .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--primary);
  flex-shrink: 0;
}

/* ============================================
   SCROLL-TRIGGERED FADE-UP ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 5rem;
  text-align: center;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background-color: rgba(191, 247, 71, 0.05);
  filter: blur(120px);
  pointer-events: none;
}

.page-header .dot-grid {
  opacity: 0.08;
}

.page-header-content {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-header-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}

.page-header-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .page-header-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .page-header-title {
    font-size: 3.75rem;
  }
}

.page-header-title .accent {
  color: var(--primary);
}

.page-header-description {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 36rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .page-header-description {
    font-size: 1.125rem;
  }
}

/* ============================================
   MULTI-STEP FORM WIZARD
   ============================================ */
/* ============================================
   CONTACT PAGE — INTAKE FORM
   ============================================ */
.intake-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .intake-layout {
    grid-template-columns: 280px 1fr;
    gap: 3rem;
  }
}

.intake-sidebar {
  display: none;
}

@media (min-width: 1024px) {
  .intake-sidebar {
    display: block;
    position: sticky;
    top: 8rem;
    align-self: start;
  }
}

.intake-sidebar-inner {
  padding: 1.5rem;
  border-radius: var(--radius);
  background-color: var(--card);
  border: 1px solid var(--border);
}

.intake-sidebar-title {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.intake-step-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.intake-step-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.intake-step-item:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

.intake-step-item.active {
  background-color: rgba(191, 247, 71, 0.06);
  border-color: rgba(191, 247, 71, 0.15);
}

.intake-step-item.completed {
  opacity: 0.7;
}

.intake-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--muted-foreground);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.intake-step-item.active .intake-step-num {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.intake-step-item.completed .intake-step-num {
  border-color: var(--primary);
  background-color: transparent;
  color: var(--primary);
}

.intake-step-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}

.intake-step-name {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--foreground);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.intake-step-item.active .intake-step-name {
  color: var(--primary);
}

.intake-step-desc {
  font-size: 0.6875rem;
  color: var(--muted-foreground);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.intake-sidebar-help {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.intake-sidebar-help p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.intake-sidebar-help a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.intake-sidebar-help a:hover {
  text-decoration: underline;
}

.intake-main {
  min-width: 0;
}

.intake-progress-bar {
  width: 100%;
  height: 3px;
  background-color: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.intake-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #d4ff60);
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 20%;
}

.intake-progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.intake-progress-step {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.intake-progress-pct {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.intake-mobile-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .intake-mobile-steps {
    display: none;
  }
}

.intake-mobile-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--border);
  transition: all 0.3s ease;
}

.intake-mobile-dot.active {
  width: 1.5rem;
  border-radius: 1rem;
  background-color: var(--primary);
}

.intake-mobile-dot.completed {
  background-color: rgba(191, 247, 71, 0.4);
}

.intake-mobile-line {
  width: 1rem;
  height: 1.5px;
  background-color: var(--border);
  flex-shrink: 0;
}

.intake-mobile-line.completed {
  background-color: rgba(191, 247, 71, 0.3);
}

.intake-form-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .intake-form-card {
    padding: 2.5rem;
  }
}

.intake-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.3;
}

.intake-step-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.intake-step-header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background-color: rgba(191, 247, 71, 0.08);
  border: 1px solid rgba(191, 247, 71, 0.15);
  color: var(--primary);
  margin-bottom: 1rem;
}

.intake-step-header h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.375rem;
}

.intake-step-header p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.form-wizard {
  max-width: 56rem;
  margin: 0 auto;
}

.form-wizard-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
  padding: 0 1rem;
  overflow-x: auto;
}

.form-step-indicator {
  display: flex;
  align-items: center;
  gap: 0;
}

.form-step-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid var(--border);
  background-color: var(--background);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted-foreground);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.form-step-dot.active {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.form-step-dot.completed {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.form-step-line {
  width: 2.5rem;
  height: 2px;
  background-color: var(--border);
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .form-step-line {
    width: 4rem;
  }
}

.form-step-line.completed {
  background-color: var(--primary);
}

.form-step-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 0 0.5rem;
}

.form-step-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-align: center;
  max-width: 5rem;
  transition: color 0.3s ease;
}

.form-step-label.active {
  color: var(--primary);
}

/* Progress bar */
.form-progress {
  width: 100%;
  height: 3px;
  background-color: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.form-progress-bar {
  height: 100%;
  background-color: var(--primary);
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* Form step content */
.form-step-content {
  display: none;
}

.form-step-content.active {
  display: block;
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-step-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.intake-nav-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.intake-nav-buttons .btn {
  min-width: 7rem;
}

/* Form success state */
.form-success {
  text-align: center;
  padding: 3rem 1.5rem;
}

.form-success-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(191, 247, 71, 0.1);
  border: 1px solid rgba(191, 247, 71, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
}

.intake-success-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.intake-success-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  border-radius: 2px;
}

.intake-next-steps {
  text-align: left;
  max-width: 28rem;
  margin: 2rem auto 0;
}

.intake-next-step {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem 0;
}

.intake-next-step + .intake-next-step {
  border-top: 1px solid var(--border);
}

.intake-next-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background-color: rgba(191, 247, 71, 0.08);
  border: 1px solid rgba(191, 247, 71, 0.2);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}

.intake-next-step-text h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.125rem;
}

.intake-next-step-text p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 7rem 0;
  }
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-title .accent {
  color: var(--primary);
}

.section-description {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-top: 1rem;
}

/* Alternate section background */
.section-alt {
  background-color: rgba(20, 20, 20, 0.5);
  border-top: 1px solid rgba(38, 38, 38, 0.3);
  border-bottom: 1px solid rgba(38, 38, 38, 0.3);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background-color: var(--primary);
  color: var(--primary-foreground);
  position: relative;
  overflow: hidden;
}

.cta-section .dot-grid {
  opacity: 0.08;
  background-image: radial-gradient(
    circle at 1px 1px,
    var(--primary-foreground) 1px,
    transparent 0
  );
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--primary-foreground);
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-description {
  font-size: 1rem;
  color: var(--primary-foreground);
  opacity: 0.8;
  line-height: 1.7;
  margin-top: 1rem;
}

.cta-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
    justify-content: center;
  }
}

.btn-cta-dark {
  background-color: var(--primary-foreground);
  color: var(--primary);
  border-color: var(--primary-foreground);
}

.btn-cta-dark:hover {
  background-color: #1a1a1a;
}

.btn-cta-outline {
  background-color: transparent;
  color: var(--primary-foreground);
  border: 1px solid rgba(10, 10, 10, 0.3);
}

.btn-cta-outline:hover {
  background-color: rgba(10, 10, 10, 0.1);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  border-top: 1px solid rgba(38, 38, 38, 0.5);
  background-color: var(--background);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr repeat(3, auto);
    gap: 2rem;
  }
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  max-width: 20rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social-link {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius);
  background-color: var(--card);
  border: 1px solid rgba(38, 38, 38, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: all 0.2s ease;
}

.footer-social-link:hover {
  color: var(--primary);
  border-color: rgba(191, 247, 71, 0.3);
}

.footer-social-link svg {
  width: 14px;
  height: 14px;
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--foreground);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(38, 38, 38, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ============================================
   PROCESS / STEPS
   ============================================ */
.process-step {
  position: relative;
  padding-left: 3rem;
}

.process-step::before {
  content: '';
  position: absolute;
  left: 0.875rem;
  top: 2.5rem;
  bottom: -1.5rem;
  width: 1px;
  background-color: var(--border);
}

.process-step:last-child::before {
  display: none;
}

.process-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background-color: rgba(191, 247, 71, 0.1);
  border: 1px solid rgba(191, 247, 71, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--primary);
}

/* ============================================
   SERVICE CARDS & PROJECT CARDS
   ============================================ */
.service-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.service-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
  background-color: rgba(191, 247, 71, 0.05);
  border: 1px solid rgba(191, 247, 71, 0.1);
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.project-card {
  overflow: visible;
}

.project-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 3rem;
  min-height: 280px;
  border-radius: var(--radius) var(--radius) 0 0;
}

@media (min-width: 768px) {
  .project-image-container {
    border-radius: var(--radius) 0 0 var(--radius);
  }
}

.project-image-container img {
  max-height: 200px;
  max-width: 100%;
  object-fit: contain;
}

.confidential-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: var(--radius);
  background-color: var(--muted);
  border: 1px solid rgba(38, 38, 38, 0.3);
}

.confidential-note p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* ============================================
   RESPONSIVE GRID
   ============================================ */
@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:flex-row { flex-direction: row; }
}

@media (min-width: 768px) {
  .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\:text-4xl { font-size: 2.25rem; }
  .md\:text-5xl { font-size: 3rem; }
  .md\:text-6xl { font-size: 3.75rem; }
}

@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\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:flex-row { flex-direction: row; }
  .lg\:hidden { display: none; }
  .lg\:flex { display: flex; }
  .lg\:block { display: block; }
  .lg\:col-span-1 { grid-column: span 1; }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:gap-10 { gap: 2.5rem; }
  .lg\:gap-20 { gap: 5rem; }
  .lg\:p-8 { padding: 2rem; }
  .lg\:p-10 { padding: 2.5rem; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .lg\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .lg\:text-5xl { font-size: 3rem; }
  .lg\:text-7xl { font-size: 4.5rem; }
}

@media (min-width: 1280px) {
  .xl\:text-8xl { font-size: 6rem; }
}

/* ============================================
   TRANSITIONS & HOVER EFFECTS
   ============================================ */
.transition-all {
  transition: all 0.2s ease;
}

.transition-colors {
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.transition-transform {
  transition: transform 0.2s ease;
}

.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

.hover\:text-foreground:hover { color: var(--foreground); }
.hover\:text-primary:hover { color: var(--primary); }
.hover\:underline:hover { text-decoration: underline; }

.hover-lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ============================================
   BACKDROP BLUR
   ============================================ */
.backdrop-blur {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.backdrop-blur-sm {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.backdrop-blur-xl {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ============================================
   MISCELLANEOUS UTILITIES
   ============================================ */
.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;
}

.pointer-events-none { pointer-events: none; }
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.select-none { user-select: none; }

.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

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

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   GRADIENT UTILITIES
   ============================================ */
.gradient-to-b {
  background: linear-gradient(to bottom, var(--background), transparent);
}

.gradient-primary-blur {
  background: radial-gradient(
    circle at center,
    rgba(191, 247, 71, 0.05) 0%,
    transparent 70%
  );
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--primary), #d4ff7a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   DIVIDER / SEPARATOR
   ============================================ */
.separator {
  height: 1px;
  width: 100%;
  background-color: var(--border);
}

.separator-vertical {
  width: 1px;
  height: 100%;
  background-color: var(--border);
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--muted-foreground);
}

/* ============================================
   INTERSECTION OBSERVER HELPER SCRIPT CLASSES
   ============================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-left"] {
  transform: translateX(-30px);
}

[data-animate="fade-left"].animated {
  transform: translateX(0);
}

[data-animate="fade-right"] {
  transform: translateX(30px);
}

[data-animate="fade-right"].animated {
  transform: translateX(0);
}

[data-animate="scale"] {
  transform: scale(0.95);
}

[data-animate="scale"].animated {
  transform: scale(1);
}

/* Staggered children */
[data-animate-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-animate-stagger].animated > *:nth-child(1) { transition-delay: 0s; }
[data-animate-stagger].animated > *:nth-child(2) { transition-delay: 0.1s; }
[data-animate-stagger].animated > *:nth-child(3) { transition-delay: 0.2s; }
[data-animate-stagger].animated > *:nth-child(4) { transition-delay: 0.3s; }
[data-animate-stagger].animated > *:nth-child(5) { transition-delay: 0.4s; }
[data-animate-stagger].animated > *:nth-child(6) { transition-delay: 0.5s; }

[data-animate-stagger].animated > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(191, 247, 71, 0.3);
}

.team-card-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.team-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.team-card:hover .team-card-image {
  transform: scale(1.05);
}

.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, transparent 50%);
  pointer-events: none;
}

.team-card-info {
  padding: 1.25rem 1.5rem 1.5rem;
  text-align: center;
}

.team-card-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.team-card-role {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.125rem;
}

.team-card-title {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}

.team-preview-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .team-preview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-preview-card {
  text-align: center;
}

.team-preview-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--border);
  margin: 0 auto 1rem;
  transition: border-color 0.3s ease;
}

.team-preview-card:hover .team-preview-avatar {
  border-color: var(--primary);
}

.team-preview-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.team-preview-role {
  font-size: 0.8125rem;
  color: var(--primary);
}

/* ============================================
   CONTACT INFO SECTION
   ============================================ */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-info-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.3s ease;
}

.contact-info-card:hover {
  border-color: rgba(191, 247, 71, 0.3);
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(191, 247, 71, 0.1);
  border: 1px solid rgba(191, 247, 71, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
}

.contact-info-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.contact-info-value {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

a.contact-info-value {
  transition: color 0.2s ease;
}

a.contact-info-value:hover {
  color: var(--primary);
}

.contact-social-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.contact-social-link:hover {
  color: var(--primary);
}

.contact-social-link svg {
  flex-shrink: 0;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .site-header,
  .site-footer,
  .scroll-indicator,
  .mobile-menu-toggle,
  .mobile-menu {
    display: none !important;
  }

  body {
    background-color: white;
    color: black;
  }

  .card {
    border: 1px solid #ccc;
    background-color: white;
  }
}
