:root {
  --bg: #0b1020;
  --bg-soft: #121933;
  --card: rgba(18, 25, 51, 0.85);
  --text: #eef2ff;
  --muted: #b8c1e0;
  --accent: #7c9cff;
  --accent-strong: #9f7cff;
  --border: rgba(255, 255, 255, 0.09);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(
      circle at top left,
      rgba(124, 156, 255, 0.2),
      transparent 0,
      transparent 35%
    ),
    linear-gradient(135deg, #0b1020, #111933 55%, #0d1328);
  color: var(--text);
}

.page-shell {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 48px;
}

.hero {
  padding: 56px 0 32px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  max-width: 760px;
  margin-bottom: 16px;
}

.hero-text {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition:
    transform 0.18s ease,
    opacity 0.18s ease,
    background 0.18s ease;
}

.button:hover,
.card:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: white;
}

.button.secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.section {
  margin-top: 42px;
}

.section-heading {
  margin-bottom: 18px;
}

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

.card,
.info-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.card {
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease;
}

.card:hover {
  border-color: rgba(124, 156, 255, 0.45);
}

.icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(124, 156, 255, 0.14);
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.card p,
.info-box p,
.info-box li,
.contact-card p {
  color: var(--muted);
  line-height: 1.6;
}

.card-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 700;
}

.info-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 18px;
}

.info-box ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.info-box.accent {
  background: linear-gradient(
    135deg,
    rgba(124, 156, 255, 0.16),
    rgba(159, 124, 255, 0.14)
  );
}

.small-note {
  margin-top: 10px;
  font-size: 0.95rem;
}

.contact-card,
.legal-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 12px;
}

.footer-links a,
.back-link {
  color: var(--text);
  text-decoration: none;
}

.footer-links a:hover,
.back-link:hover {
  color: var(--accent);
}

.legal-page {
  width: min(800px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 56px;
}

.footer {
  padding-top: 28px;
  color: var(--muted);
  text-align: center;
  font-size: 0.95rem;
}

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

  .hero {
    padding-top: 28px;
  }
}
