:root {
  --bg: #070b14;
  --bg-alt: #0d1424;
  --surface: #121c31;
  --surface-2: #172440;
  --text: #e9eefc;
  --muted: #aab7d6;
  --accent: #5ca6ff;
  --accent-2: #79f2c0;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(92, 166, 255, 0.2), transparent 35%),
    radial-gradient(circle at 85% 20%, rgba(121, 242, 192, 0.16), transparent 35%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  line-height: 1.6;
}

.container {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
}

.hero {
  padding: 7rem 0 5rem;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--accent-2);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

h1 {
  margin: 0 auto 1rem;
  max-width: 800px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.subheadline {
  margin: 0 auto 2rem;
  max-width: 740px;
  color: var(--muted);
  font-size: 1.05rem;
}

.cta {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  border-radius: 0.7rem;
  background: linear-gradient(130deg, var(--accent), #6f8bff);
  color: white;
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.section {
  padding: 1rem 0 4rem;
}

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

.card {
  background: linear-gradient(170deg, var(--surface), #0f182d);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card h2 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.2rem;
}

.card h3 {
  margin: 0.1rem 0 0.8rem;
  font-size: 1.05rem;
  color: var(--accent-2);
}

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

.card.highlight {
  background: linear-gradient(160deg, var(--surface-2), #111b31);
}

.contact {
  padding-top: 0;
}

.contact h2 {
  margin-bottom: 0.5rem;
}

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

.contact-link a {
  display: inline-block;
  margin-top: 0.35rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.contact-link a:hover {
  text-decoration: underline;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 1.1rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer a {
  color: var(--text);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.legal-links {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

@media (max-width: 860px) {
  .hero {
    padding-top: 5rem;
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-links {
    white-space: normal;
  }
}
