
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --bg: #06090f;
  --bg2: #0a0f1a;
  --card: #0b111d;
  --border: #172033;
  --border2: #24324d;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --text: #d8deea;
  --text-muted: #7b8aa5;
  --text-soft: #53627a;
  --text-bright: #f4f7ff;
  --green: #22c55e;
  --font: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

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

img {
  max-width: 100%;
}

/* NAV */
nav {
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 64px;
  border-bottom: 1px solid var(--border);
  background: rgba(6, 9, 15, 0.96);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-bright);
  letter-spacing: -0.02em;
}

.logo-text span {
  color: var(--blue-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-bright);
}

.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 11px 22px;
  border-radius: 7px;
  font-size: 13px !important;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: var(--blue-light);
}

/* GENERAL SECTIONS */
section {
  padding: 72px 64px;
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  font-weight: 700;
  margin-bottom: 18px;
}

.section-title {
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 850;
  color: var(--text-bright);
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.75;
  max-width: 640px;
}

/* HERO */
.hero {
  min-height: calc(100vh - 72px);
  padding: 90px 64px 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 420px;
  align-items: center;
  gap: 80px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 900;
  color: var(--text-bright);
}

.hero h1 span {
  color: var(--blue-light);
}

.hero p {
  max-width: 560px;
  margin-top: 26px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
  color: var(--text-soft);
  font-size: 13px;
}

.hero-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* BUTTONS */
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  border: 1px solid var(--blue);
}

.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--text-muted);
  border: 1px solid var(--border2);
  background: transparent;
}

.btn-ghost:hover {
  color: var(--text-bright);
  border-color: var(--blue-light);
}

/* CARDS */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.card:hover {
  border-color: var(--border2);
}

/* SNAPSHOT / STATS CARD */
.snapshot,
.engagement-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  max-width: 420px;
}

.snapshot-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.snapshot-item,
.stat-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  background: #070b13;
}

.snapshot-item strong,
.stat-card strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  color: var(--text-bright);
  letter-spacing: -0.04em;
}

.snapshot-item span,
.stat-card span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-soft);
}

/* TAGS */
.tag {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--blue-light);
  background: #0d1630;
  border: 1px solid var(--border2);
  padding: 4px 10px;
  border-radius: 5px;
  display: inline-block;
}

/* FOOTER */
footer {
  padding: 32px 64px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-left,
.footer-right a {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-right {
  display: flex;
  gap: 24px;
}

/* MOBILE */
.hamburger {
  display: none;
}

@media (max-width: 1000px) {
  nav {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  section {
    padding: 56px 24px;
  }

  .hero {
    min-height: auto;
    padding: 64px 24px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .hero p {
    font-size: 16px;
  }

  .snapshot,
  .engagement-card {
    max-width: 100%;
  }

  footer {
    padding: 28px 24px;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
  }

  .snapshot-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
