:root {
  --bg: #071325;
  --bg-alt: #0c1b31;
  --panel: #10233d;
  --text: #f3f6fb;
  --muted: #b8c4d6;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #dbe8ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(79, 130, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #071325 0%, #09172b 100%);
  color: var(--text);
  line-height: 1.6;
}

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

.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(130, 178, 255, 0.06) 40%, transparent 75%);
  pointer-events: none;
}

.hero-inner {
  max-width: 860px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-logo {
  display: block;
  max-width: min(760px, 88vw);
  width: 100%;
  height: auto;
  margin: 0 auto 2rem;
  opacity: 0.98;
}

.hero h1 {
  margin-top: 0;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.02;
  margin: 0 0 1rem;
  font-weight: 800;
}

.subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--text);
  color: #071325;
}

.btn-primary:hover {
  opacity: 0.92;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}

.section {
  padding: 5rem 1.5rem;
  border-top: 1px solid var(--line);
}

.alt {
  background: rgba(255, 255, 255, 0.02);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-top: 0;
  margin-bottom: 1rem;
}

p {
  margin-top: 0;
  color: var(--muted);
}

.grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.4rem;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
  color: var(--text);
}

.status-list {
  padding-left: 1.2rem;
  color: var(--muted);
}

.status-list li {
  margin-bottom: 0.5rem;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 2rem 1.5rem 3rem;
}

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

.footer strong {
  display: block;
  margin-bottom: 0.4rem;
}

.footer p {
  margin: 0;
  color: var(--muted);
}

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

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

@media (max-width: 800px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 3rem;
  }

  .footer-inner {
    flex-direction: column;
  }

  .hero-note {
    margin: 0 0 1.25rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
  } 


  .section-kicker {
    margin: 0 0 0.6rem;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
  }
}

