:root {
  --bg-deep: #020e1b;
  --bg-top: #061527;
  --text-main: #f5f7fb;
  --text-muted: #b7c4d8;
  --accent: #ff6f3c;
  --accent-secondary: #5df2d6;
  --card: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);
}

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

body {
  font-family: "Space Grotesk", sans-serif;
  background: radial-gradient(circle at top right, #0b2743, var(--bg-deep));
  color: var(--text-main);
  min-height: 100vh;
}

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

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

.page-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

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

.logo {
  font-family: "Syne", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 8px;
}

.nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.link {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.btn {
  border: none;
  outline: none;
  cursor: pointer;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: var(--accent);
  color: #0b1324;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 111, 60, 0.35);
}

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

.btn.text {
  background: none;
  color: var(--accent-secondary);
  border: none;
  padding-left: 0;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
  padding-top: 40px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  font-family: "Syne", sans-serif;
  line-height: 1.15;
  margin-bottom: 20px;
}

.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.78rem;
  color: var(--accent-secondary);
  margin-bottom: 18px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stats span {
  font-size: 1.4rem;
}

.stats small {
  color: var(--text-muted);
}

.hero-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 20px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  max-width: 100%;
}

.media-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.badge {
  position: absolute;
  bottom: -20px;
  right: 16px;
  background: #051327;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.85rem;
}

.marquee {
  margin: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 32px;
  padding: 18px 0;
  animation: slide 18s linear infinite;
}

.marquee-track span {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.features {
  text-align: center;
  margin-bottom: 80px;
}

.features h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  padding: 32px;
  text-align: left;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.feature-card h3 {
  font-family: "Syne", sans-serif;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
}

.spotlight {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
  margin-bottom: 80px;
}

.spotlight ul {
  list-style: none;
  margin-top: 24px;
}

.spotlight li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  color: var(--text-muted);
}

.spotlight li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 6px;
}

.cta {
  margin-bottom: 80px;
}

.cta-card {
  border-radius: 32px;
  border: 1px solid var(--border);
  padding: 48px;
  background: linear-gradient(120deg, #041a2c, #062949 60%, #0c415f);
  text-align: center;
}

.cta-card h2 {
  font-size: 2.3rem;
  margin-bottom: 18px;
}

.cta-card p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.smallprint {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.footer-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

@media (max-width: 900px) {
  .nav-actions {
    justify-content: center;
    width: 100%;
  }

  .hero-content,
  .feature-grid,
  .spotlight {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .media-card {
    border-radius: 24px;
  }

  /* ── Center all content below 900px ── */
  .page-shell,
  .nav,
  .hero,
  .hero-content,
  .hero-media,
  .features,
  .spotlight,
  .cta,
  .cta-card,
  .footer {
    text-align: center;
  }

  .eyebrow,
  .lead,
  .hero h1,
  .features h2,
  .cta-card h2,
  .cta-card p,
  .smallprint,
  .spotlight h2,
  .spotlight p,
  .spotlight li,
  .feature-card,
  .feature-card h3,
  .feature-card p,
  .stats,
  .footer {
    text-align: center;
  }

  .cta-row,
  .stats,
  .nav-actions,
  .footer,
  .footer-links {
    justify-content: center;
  }

  img,
  .media-card,
  .badge {
    margin-left: auto;
    margin-right: auto;
  }

  .spotlight li {
    padding-left: 0;
  }

  .spotlight li::before {
    display: none;
  }

  .spotlight ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .logo {
    text-align: center;
  }

  .feature-card {
    text-align: center;
  }

  .hero-media {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .page-shell {
    padding: 32px 16px 60px;
  }

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