:root {
  color-scheme: light;
  --bg: #f7f8fb;
  --card: #ffffff;
  --accent: #2f6bff;
  --accent-strong: #1f4cb3;
  --text: #0f1c38;
  --muted: #4c5870;
  --border: #e3e7ef;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "SF Pro Text", -apple-system, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.hero {
  padding: 80px 0 60px;
  background: radial-gradient(circle at 15% 20%, rgba(47, 107, 255, 0.1), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(31, 76, 179, 0.12), transparent 32%),
    var(--card);
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 12px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin: 0 0 12px;
}

.lede {
  margin: 0 0 24px;
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button,
.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease, border 120ms ease;
}

.button {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 30px rgba(47, 107, 255, 0.2);
}

.button:hover {
  transform: translateY(-1px);
  background: var(--accent-strong);
}

.ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.ghost.disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.section {
  padding: 64px 0;
}

.section.muted {
  background: #f2f4f8;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 26px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: start;
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-list li {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
  color: var(--muted);
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 12px 30px rgba(12, 27, 71, 0.07);
}

.card h3 {
  margin: 0 0 10px;
}

.card ul {
  padding-left: 20px;
  margin: 0 0 6px;
  color: var(--muted);
}

.link-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 6px;
}

.contact-link {
  font-size: 18px;
  font-weight: 700;
}

.footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  background: var(--card);
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 640px) {
  .hero {
    padding: 64px 0 52px;
  }

  .card,
  .section {
    padding: 16px;
  }
}
