:root {
  --bg: #06131f;
  --bg-soft: #0b1d2c;
  --panel: rgba(11, 29, 44, 0.82);
  --panel-border: rgba(122, 162, 247, 0.18);
  --text: #e8f1fb;
  --muted: #9fb4c9;
  --accent: #5aa9ff;
  --accent-strong: #2f7be5;
  --line: rgba(255,255,255,0.08);
  --shadow: 0 20px 50px rgba(0,0,0,0.28);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(90, 169, 255, 0.16), transparent 28%),
    radial-gradient(circle at left center, rgba(47, 123, 229, 0.12), transparent 22%),
    linear-gradient(180deg, #07111b 0%, #091827 100%);
  min-height: 100vh;
}
a { color: inherit; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(6, 19, 31, 0.72);
  border-bottom: 1px solid var(--line);
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand img { height: 58px; width: auto; display: block; }
.nav-links { display: flex; gap: 18px; flex-wrap: wrap; }
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
main { padding: 42px 0 72px; }
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
  padding: 34px 0 28px;
}
.hero-copy, .hero-panel, .card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.hero-copy {
  padding: 52px;
  position: relative;
  overflow: hidden;
}
.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90,169,255,0.26), transparent 68%);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(90, 169, 255, 0.10);
  color: #c7def8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.hero p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 700px;
}
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: white;
}
.button.secondary {
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
  background: rgba(255,255,255,0.02);
}
.hero-panel {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}
.hero-panel img { width: 88px; height: 88px; object-fit: contain; margin-bottom: 18px; }
.kicker { color: #cddcf0; font-size: 0.96rem; line-height: 1.7; }
.metric-grid, .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.metric {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.metric strong {
  display: block;
  color: white;
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.section { padding: 14px 0 8px; }
.section-head { margin: 12px 0 18px; }
.section-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 800;
}
.section h2 {
  margin: 10px 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.03em;
}
.section p.lead {
  max-width: 780px;
  color: var(--muted);
  line-height: 1.8;
}
.card { padding: 28px; }
.card h3 { margin-top: 0; font-size: 1.15rem; }
.card p, .card li { color: var(--muted); line-height: 1.75; }
.card ul { margin: 0; padding-left: 18px; }
.band {
  margin-top: 28px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(90,169,255,0.12), rgba(47,123,229,0.10));
  border: 1px solid rgba(90,169,255,0.2);
}
.band h3 { margin-top: 0; font-size: 1.5rem; }
footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 42px;
  color: var(--muted);
  font-size: 14px;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 34px; }
  nav { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  .hero-copy, .hero-panel, .card, .band { border-radius: 20px; }
  .hero h1 { font-size: 2.4rem; }
  .cta-row { flex-direction: column; }
  .button { width: 100%; }
}
