:root {
  --bg: #0b1220;
  --bg-soft: #131c31;
  --card: rgba(18, 27, 46, 0.9);
  --border: rgba(138, 162, 201, 0.2);
  --text: #e8eefb;
  --muted: #b7c3db;
  --accent: #7aa2ff;
  --accent-2: #34d399;
  --accent-3: #fbbf24;
  --maxw: 1040px;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  background:
    radial-gradient(circle at 85% 8%, rgba(79, 157, 255, 0.16), transparent 38%),
    radial-gradient(circle at 15% 92%, rgba(251, 191, 36, 0.12), transparent 32%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a {
  color: #a8c6ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page-shell {
  width: min(var(--maxw), calc(100vw - 32px));
  margin: 0 auto;
  padding: 20px 0 56px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 4px;
}

.nav-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(22, 31, 50, 0.78);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.pill.primary {
  background: rgba(78, 131, 221, 0.92);
  border-color: rgba(122, 162, 255, 0.4);
}

.hero {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(19, 28, 49, 0.92), rgba(16, 24, 41, 0.9));
  padding: 24px;
  box-shadow: 0 22px 40px rgba(2, 6, 23, 0.3);
}

.eyebrow {
  margin: 0 0 8px;
  color: #9ab4e7;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1 {
  margin: 0;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  max-width: 820px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.card {
  grid-column: span 6;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  padding: 16px;
}

.card h2,
.card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.15;
}

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

.card ul {
  margin: 8px 0 0 18px;
  padding: 0;
  color: var(--muted);
}

.card li + li {
  margin-top: 5px;
}

.card.full {
  grid-column: 1 / -1;
}

.accent-blue {
  border-color: rgba(122, 162, 255, 0.28);
}

.accent-green {
  border-color: rgba(52, 211, 153, 0.28);
}

.accent-amber {
  border-color: rgba(251, 191, 36, 0.26);
}

.faq-item {
  border-top: 1px solid rgba(138, 162, 201, 0.12);
  padding-top: 12px;
  margin-top: 12px;
}

.faq-item:first-child {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}

.faq-item h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

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

.breadcrumbs {
  margin-top: 12px;
  color: #95a7c6;
  font-size: 13px;
}

.breadcrumbs a {
  color: #b6cbf7;
}

.footer-note {
  margin-top: 22px;
  color: #9cb0d4;
  font-size: 13px;
}

@media (max-width: 820px) {
  .card {
    grid-column: 1 / -1;
  }

  .top-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links {
    justify-content: flex-start;
  }
}

