/* ─────────────────────────────────────────────
   TOKENS  (shadcn zinc palette, no accent)
───────────────────────────────────────────── */
:root {
  --bg:          #09090b;
  --bg-elevated: #111113;

  --glass-sm:    rgba(255,255,255,0.03);
  --glass-md:    rgba(255,255,255,0.05);
  --glass-lg:    rgba(255,255,255,0.08);

  --border:      rgba(255,255,255,0.07);
  --border-hi:   rgba(255,255,255,0.12);
  --border-hov:  rgba(255,255,255,0.2);

  --fg-1:   #fafafa;
  --fg-2:   #a1a1aa;
  --fg-3:   #52525b;

  --font:  "Inter", system-ui, sans-serif;
  --ease:  cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  background: var(--bg);
  color: var(--fg-1);
  font-family: var(--font);
  font-size: clamp(14px, 1vw, 16px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

/* ─────────────────────────────────────────────
   HEADER
───────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 0 1.5rem;
  background: rgba(9,9,11,0.6);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-image {
  display: block;
  width: auto;
  height: 62px;
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: 100dvh;
  padding: 7rem 1.5rem 4.75rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 640px;
  gap: 1.5rem;
}

.hero-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 0.9rem 1.5rem 1.1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-2);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  background: var(--glass-md);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-hi);
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--fg-2);
  animation: blink 2.5s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

.hero-title {
  font-size: clamp(1.85rem, 4.4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--fg-1);
}

.hero-body {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--fg-2);
  max-width: 460px;
}

.hero-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.25rem;
}

.cta-solid {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.6rem 1.4rem;
  border-radius: 7px;
  color: #09090b;
  background: #fafafa;
  border: 1px solid #fafafa;
  transition: background 0.15s, transform 0.2s var(--ease);
}
.cta-solid:hover {
  background: #e4e4e7;
  border-color: #e4e4e7;
  transform: translateY(-1px);
}

.cta-outline {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.6rem 1.4rem;
  border-radius: 7px;
  color: var(--fg-2);
  background: var(--glass-sm);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-hi);
  transition: color 0.15s, border-color 0.15s, background 0.15s, transform 0.2s var(--ease);
}
.cta-outline:hover {
  color: var(--fg-1);
  border-color: var(--border-hov);
  background: var(--glass-lg);
  transform: translateY(-1px);
}

.stat-strip {
  display: flex;
  margin-top: 1rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--glass-sm);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
}

.stat-item {
  flex: 1;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-n {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--fg-1);
}
.stat-l {
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--fg-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-copy,
.footer-legal a,
.social-link {
  font-size: 0.72rem;
  line-height: 1;
  color: rgba(250,250,250,0.78);
  letter-spacing: 0.01em;
  transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.footer-legal a:hover {
  color: var(--fg-1);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    0 10px 30px rgba(0,0,0,0.22);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
}

.social-link svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.social-link[aria-label="X"] svg {
  width: 1.1rem;
  height: 1.1rem;
}

.social-link:hover {
  color: var(--fg-1);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.24);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 12px 34px rgba(0,0,0,0.28);
  transform: translateY(-1px);
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero {
    padding: 7rem 1rem 2rem;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 1.75rem;
  }
  .hero-inner {
    align-items: center;
    text-align: center;
  }
  .hero-title {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }
  .hero-footer {
    position: relative;
    padding: 0;
    width: 100%;
  }
  .logo-image {
    height: 24px;
  }
  .footer-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.75rem;
  }
  .footer-links {
    order: -1;
    justify-content: center;
    gap: 0.9rem 1.1rem;
  }
  .footer-meta {
    order: 1;
    justify-content: center;
    gap: 0.9rem 1.1rem;
  }
  .footer-legal {
    justify-content: center;
    gap: 0.9rem 1.1rem;
  }
}
