:root {
  --bg: #0f172a;
  --bg-soft: #111827;
  --text: #111827;
  --muted: #64748b;
  --line: #e2e8f0;
  --panel: #ffffff;
  --panel-soft: #f8fafc;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

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

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

.narrow {
  max-width: 780px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.25rem;
}

nav {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
  color: #334155;
}

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

.hero {
  background:
    radial-gradient(circle at 80% 0%, rgba(37, 99, 235, 0.35), transparent 38%),
    linear-gradient(135deg, #0f172a 0%, #111827 58%, #172554 100%);
  color: white;
  padding: 96px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 380px;
  gap: 56px;
  align-items: center;
}

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

.hero .eyebrow {
  color: #93c5fd;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin: 0;
}

h1 {
  font-size: clamp(2.75rem, 7vw, 5.7rem);
  max-width: 900px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: 1.18rem;
  color: #cbd5e1;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 800;
  border: 1px solid var(--accent);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.25);
}

.button:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.secondary-link {
  color: #cbd5e1;
  font-weight: 700;
}

.summary-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.metric {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.metric:first-child {
  padding-top: 0;
}

.metric:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.metric span {
  display: block;
  color: #cbd5e1;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.metric strong {
  display: block;
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.metric p {
  color: #bfdbfe;
  margin: 6px 0 0;
}

.section {
  padding: 86px 0;
}

.muted {
  background: var(--panel-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.two-column {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
}

.content-block p {
  margin-top: 0;
  font-size: 1.08rem;
  color: #334155;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: #1f2937;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.1);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.card,
.contact-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.06);
}

.card p,
.contact-card p,
.legal-page p,
.legal-page li {
  color: #475569;
}

.contact-section {
  background: #ffffff;
}

.contact-card {
  max-width: 780px;
}

.contact-card .button {
  margin-top: 18px;
}

.legal-page {
  padding: 70px 0;
}

.legal-page h1 {
  color: #0f172a;
  font-size: clamp(2.3rem, 5vw, 4rem);
  margin-bottom: 24px;
}

.legal-page h2 {
  font-size: 1.45rem;
  margin-top: 34px;
  margin-bottom: 8px;
}

.legal-page a {
  color: var(--accent);
  font-weight: 700;
}

.site-footer {
  background: var(--bg);
  color: white;
  padding: 34px 0;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.site-footer p {
  color: #94a3b8;
  margin: 6px 0 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #cbd5e1;
}

@media (max-width: 860px) {
  .nav,
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .hero {
    padding: 70px 0;
  }

  .hero-grid,
  .two-column,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .two-column {
    gap: 34px;
  }

  .section {
    padding: 64px 0;
  }
}
