:root {
  --bg: #0b1020;
  --surface: #121a30;
  --surface-2: #f6f8fb;
  --text: #152033;
  --muted: #617086;
  --white: #ffffff;
  --accent: #5b8cff;
  --border: #dfe5ee;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: white;
  line-height: 1.65;
}
a { color: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.narrow { max-width: 800px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11,16,32,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  color: white;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -.02em;
}
.brand span { color: #aebbd4; font-weight: 500; }
nav { display: flex; gap: 24px; }
nav a {
  color: #d5def0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.hero {
  background:
    radial-gradient(circle at 75% 20%, rgba(91,140,255,.26), transparent 35%),
    var(--bg);
  color: white;
  padding: 100px 0 90px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr .8fr;
  gap: 70px;
  align-items: center;
}
.eyebrow {
  color: #6f91df;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  margin: 0 0 16px;
}
.hero .eyebrow { color: #8eabf5; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -.035em; margin-top: 0; }
h1 { font-size: clamp(42px, 6vw, 72px); max-width: 820px; margin-bottom: 24px; }
h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 22px; }
h3 { font-size: 22px; }
.lead {
  color: #c2ccdf;
  font-size: 19px;
  max-width: 720px;
  margin-bottom: 34px;
}
.actions { display: flex; gap: 14px; flex-wrap: wrap; }
.button {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 600;
}
.primary { background: var(--accent); color: white; }
.secondary { border: 1px solid rgba(255,255,255,.2); color: white; }

.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 30px;
}
.card-label { color: #8eabf5; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }
.hero-card ul { list-style: none; padding: 0; margin: 18px 0 0; }
.hero-card li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.hero-card li:last-child { border-bottom: 0; }

.section { padding: 90px 0; }
.alt { background: var(--surface-2); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  background: white;
}
.card p, .muted { color: var(--muted); }

.contact-box {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 40px;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 18px;
}
.contact-details a { color: #2f63d8; }

footer {
  background: var(--bg);
  color: #d5def0;
  padding: 42px 0 30px;
}
footer p { color: #8f9db6; }
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: #d5def0; text-decoration: none; }
.legal-line { border-top: 1px solid rgba(255,255,255,.08); margin-top: 28px; padding-top: 18px; font-size: 13px; }

.legal-page { padding: 80px 0 100px; }
.legal-page h1 { font-size: clamp(40px, 6vw, 60px); color: var(--text); }
.legal-page h2 { font-size: 24px; margin-top: 38px; }
.legal-page li { margin-bottom: 8px; }
.legal-page a { color: #2f63d8; }

@media (max-width: 760px) {
  .hero { padding-top: 70px; }
  .hero-grid, .cards, .contact-box { grid-template-columns: 1fr; }
  .hero-grid { gap: 36px; }
  .cards { gap: 16px; }
  .nav nav { gap: 12px; }
  .nav nav a:nth-child(2) { display: none; }
  .footer-grid { flex-direction: column; }
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand-logo img {
  display: block;
  width: 210px;
  max-width: 48vw;
  height: auto;
}
@media (max-width: 520px) {
  .brand-logo img { width: 165px; }
}
