@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  --bg: #f3f7fb;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --text: #0b1d3a;
  --muted: #5f708a;
  --line: rgba(13, 34, 66, 0.08);
  --blue: #003580;
  --blue-bright: #2f69d9;
  --cyan: #2fd2df;
  --cyan-soft: rgba(47, 210, 223, 0.12);
  --shadow: 0 26px 70px rgba(7, 24, 49, 0.08);
  --max: 1180px;
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", "Segoe UI Variable", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(47, 210, 223, 0.18), transparent 24%),
    radial-gradient(circle at 80% 0%, rgba(0, 53, 128, 0.12), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #eef4fb 58%, #f8fbff 100%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(243, 247, 251, 0.82);
  border-bottom: 1px solid rgba(13, 34, 66, 0.06);
}

.site-header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand__mark {
  width: 142px;
  height: 58px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  font-weight: 800;
  color: var(--muted);
}

.nav a:hover { color: var(--text); }

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

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: 0.2s ease;
}

.cta--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 65%, var(--cyan) 100%);
  box-shadow: 0 16px 36px rgba(0, 53, 128, 0.18);
}

.cta--secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(13, 34, 66, 0.12);
}

.cta:hover { transform: translateY(-1px); }

.hero {
  padding: 56px 0 34px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.panel,
.card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero__content,
.hero__side {
  padding: 36px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--cyan-soft);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1, h2, h3 { margin: 0; line-height: 1.05; }
h1 {
  margin-top: 18px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(40px, 7vw, 72px);
  letter-spacing: -0.05em;
  max-width: 11ch;
}

h2 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.04em;
}

h3 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 23px;
  letter-spacing: -0.03em;
}

.lead,
.section__heading p,
.card p,
.list li,
.fine {
  color: var(--muted);
  line-height: 1.75;
}

.lead { margin: 22px 0 0; font-size: 19px; max-width: 760px; }

.hero__stats,
.grid-2,
.grid-3 {
  display: grid;
  gap: 16px;
}

.hero__stats,
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat,
.card {
  padding: 22px;
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat span {
  margin-top: 8px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.badge-stack {
  display: grid;
  gap: 14px;
}

.badge {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,249,255,0.96));
  border: 1px solid var(--line);
}

.badge strong {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
}

.section {
  padding: 28px 0;
}

.section__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section__heading p {
  max-width: 760px;
  margin: 0;
}

.list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 12px;
}

.list li {
  display: flex;
  gap: 12px;
  align-items: start;
}

.list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 10px;
  border-radius: 999px;
  flex: 0 0 10px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 0 5px rgba(50, 198, 222, 0.12);
}

.band {
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, #022860 0%, #003580 55%, #2f6fd0 100%);
  color: #fff;
  box-shadow: 0 30px 60px rgba(2, 40, 96, 0.22);
}

.band p { color: rgba(255,255,255,0.82); }

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

.detail {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.detail strong {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer {
  padding: 36px 0 56px;
  font-size: 14px;
  color: var(--muted);
}

.compact-list {
  display: grid;
  gap: 10px;
}

.compact-list div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(13, 34, 66, 0.08);
}

.compact-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue);
}

.footer__box {
  padding-top: 22px;
  border-top: 1px solid rgba(13, 34, 66, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.footer a { color: var(--blue); font-weight: 700; }

@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: 1fr; }
  .grid-2,
  .grid-3,
  .hero__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .site-header__inner,
  .section__heading,
  .footer__box {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__content,
  .hero__side,
  .card,
  .band {
    padding: 22px;
    border-radius: 24px;
  }

  .grid-2,
  .grid-3,
  .hero__stats,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .brand__mark {
    width: 124px;
    height: 50px;
  }
}
