:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-elev: #0c0c0c;
  --bg-soft: #151515;
  --fg: #f2f2f2;
  --muted: #b0b0b0;
  --accent: #f0f0f0;
  --accent-2: #9a9a9a;
  --stroke: rgba(255, 255, 255, 0.14);
  --glow: rgba(255, 255, 255, 0.28);
  --mx: 0.5;
  --my: 0.5;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--fg);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px
    );
  background-size: 120px 120px;
  opacity: 0.15;
  z-index: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 5, 5, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 24px;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--fg);
}

.brand {
  font-family: "Bebas Neue", "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.hero {
  position: relative;
  padding: 140px 0 80px;
  z-index: 1;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.26), transparent 70%);
  filter: blur(10px);
  transform: translate(
      calc((var(--mx) - 0.5) * 80px),
      calc((var(--my) - 0.5) * 80px)
    )
    scale(1.1);
  opacity: 0.7;
}

.hero::before {
  top: -100px;
  left: -120px;
}

.hero::after {
  bottom: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(180, 180, 180, 0.28), transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.hero-title {
  font-family: "Bebas Neue", "Space Grotesk", sans-serif;
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: 0.95;
  margin-bottom: 16px;
}

.hero-title span {
  display: block;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 540px;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
  border: 1px solid transparent;
  letter-spacing: 0.02em;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #050505;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.25);
}

.btn.primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 36px rgba(255, 255, 255, 0.35);
}

.btn.ghost {
  border: 1px solid var(--stroke);
  color: var(--fg);
  background: rgba(255, 255, 255, 0.02);
}

.btn.ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.stat-number {
  font-size: 1.4rem;
  font-weight: 600;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
}

.hero-panel {
  background: linear-gradient(160deg, rgba(18, 19, 26, 0.9), rgba(8, 9, 14, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 20px;
  width: min(420px, 92vw);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 55%);
  opacity: 0.8;
  pointer-events: none;
}

.panel-header {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  justify-content: center;
}

.panel-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.panel-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.panel-body {
  text-align: center;
  display: grid;
  gap: 12px;
}

.chart-embed {
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.chart-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.chart-caption {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.panel-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.metric-label {
  font-size: 0.8rem;
  color: var(--muted);
}

.metric-value {
  font-weight: 600;
  font-size: 1rem;
}

.orbit {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  animation: orbit 18s linear infinite;
}

.orb {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 200, 200, 0.4), transparent 70%);
  filter: blur(2px);
  opacity: 0.6;
}

.orb-a {
  top: 40px;
  right: 20px;
}

.orb-b {
  bottom: 20px;
  left: 10px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 70%);
}

.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(18, 19, 26, 0.7), transparent 60%);
  opacity: 0.6;
  z-index: -1;
}

.section-head {
  margin-bottom: 40px;
  max-width: 640px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 12px;
}

.section-copy {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.glass-card {
  background: linear-gradient(160deg, rgba(20, 22, 32, 0.9), rgba(10, 11, 16, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.glass-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--bg-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px;
  border-radius: 20px;
  transition: transform 0.25s ease, border 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-card p {
  color: var(--muted);
  margin-top: 10px;
}

.marquee {
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 11, 16, 0.8);
}

.marquee-track {
  display: flex;
  gap: 40px;
  font-family: "Bebas Neue", "Space Grotesk", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}

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

.interview-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.team-card {
  background: var(--bg-elev);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 24px;
  text-align: center;
  transition: transform 0.25s ease, border 0.25s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
}

.avatar {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(160, 160, 160, 0.35));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.cta {
  padding-bottom: 140px;
}

.cta-card {
  background: linear-gradient(140deg, rgba(20, 23, 34, 0.95), rgba(8, 9, 14, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
}

.cta-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.cta-card p {
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 0 60px;
  background: rgba(5, 5, 5, 0.9);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  flex-wrap: wrap;
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

@keyframes orbit {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    order: 3;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-stats {
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .nav {
    align-items: flex-start;
  }

  .nav-links {
    font-size: 0.85rem;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn {
    width: 100%;
  }

  .cta-card {
    padding: 32px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .orbit {
    animation: none;
  }
}
