:root {
  --bg: #f3f7ff;
  --surface: #ffffff;
  --text: #101d30;
  --muted: #4f6178;
  --primary: #1459c6;
  --primary-dark: #0e469f;
  --line: #d6e1f5;
  --navy: #0f2f5f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Manrope, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1000px 360px at 5% -10%, #cfe1ff 0%, transparent 65%),
    radial-gradient(900px 320px at 98% 0%, #dfeaff 0%, transparent 64%),
    linear-gradient(180deg, #f9fbff 0%, var(--bg) 100%);
}

a {
  color: inherit;
}

.container {
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
}

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

.nav {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: inline-block;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(17, 70, 152, 0.28);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

nav {
  display: flex;
  gap: 1rem;
}

nav a {
  text-decoration: none;
  color: #213047;
}

.hero {
  padding: 4.6rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.6rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.8rem;
  color: #17458f;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 1.05;
}

.lead {
  margin-top: 1rem;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.quick-stats {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.quick-stats span {
  border: 1px solid #c6d7f3;
  color: #1f3a66;
  border-radius: 999px;
  font-size: 0.84rem;
  padding: 0.38rem 0.74rem;
  background: #edf4ff;
}

.hero-media img {
  width: 100%;
  display: block;
  border-radius: 18px;
  border: 1px solid #cbd9f3;
  background: #fff;
  box-shadow: 0 24px 56px rgba(15, 47, 95, 0.2);
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  padding: 0.7rem 1rem;
  text-decoration: none;
  font-weight: 700;
}

.btn:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: #e7f0ff;
  color: #17458f;
}

section {
  padding: 2rem 0;
}

.section-soft {
  padding-top: 1.6rem;
}

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

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem;
  box-shadow: 0 16px 28px rgba(23, 63, 121, 0.08);
}

.card img {
  width: 54px;
  height: 54px;
  margin-bottom: 0.35rem;
}

.card h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.card p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.03rem;
}

.card ul {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.card li {
  margin: 0.36rem 0;
}

.section-head {
  margin-bottom: 0.8rem;
}

.section-title {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.45rem, 3.6vw, 2rem);
}

.doc {
  padding: 2.5rem 0 3rem;
}

.doc-card {
  max-width: 900px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: 0 18px 36px rgba(17, 50, 101, 0.12);
}

.doc-card h1 {
  font-size: 2rem;
}

.doc-card h2 {
  margin: 1.2rem 0 0.5rem;
  font-size: 1.2rem;
}

.doc-card p,
.doc-card li {
  color: #334155;
  line-height: 1.65;
}

.doc-card a {
  color: #1459c6;
}

.doc-card input,
.doc-card textarea,
.doc-card select {
  width: 100%;
  border: 1px solid #c8d8f2;
  border-radius: 12px;
  padding: 0.7rem 0.75rem;
  font: inherit;
  color: #0f2036;
  background: #fcfdff;
}

.doc-card label {
  font-weight: 700;
  color: #1c3458;
}

.meta {
  color: #64748b;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid #e5edf9;
}

.footer {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #3c4b66;
  font-size: 0.95rem;
}

.footer a {
  color: #1459c6;
  text-decoration: none;
  font-weight: 700;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .hero {
    padding-top: 3.4rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  nav {
    gap: 0.7rem;
    font-size: 0.92rem;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .footer {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0.8rem 0;
  }
}
