:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --ink: #102033;
  --muted: #637083;
  --line: #dfe6ef;
  --navy: #07111f;
  --blue: #1f6feb;
  --soft-blue: #eaf2ff;
  --shadow: 0 18px 48px rgba(16, 32, 51, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

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

.site {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(24px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid rgba(223, 230, 239, 0.86);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #07111f, #1f6feb);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  letter-spacing: 0.02em;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

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

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

.hero {
  padding: 88px max(24px, calc((100vw - 1120px) / 2)) 56px;
  background:
    radial-gradient(circle at 82% 18%, rgba(31, 111, 235, 0.18), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue);
  background: var(--soft-blue);
  padding: 0 12px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 820px;
  margin-top: 20px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.hero p {
  max-width: 720px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 26px;
}

.hero-card span,
.hero-card strong,
.hero-card small {
  display: block;
}

.hero-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-card strong {
  margin-top: 12px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.25;
}

.hero-card small {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.6;
}

.section {
  padding: 58px max(24px, calc((100vw - 1120px) / 2));
}

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

.section-title h2 {
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.01em;
}

.section-title p {
  max-width: 540px;
  color: var(--muted);
  line-height: 1.62;
}

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

.card {
  min-height: 174px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(16, 32, 51, 0.05);
  padding: 22px;
}

.card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.card h3 {
  margin-top: 16px;
  font-size: 20px;
}

.card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.58;
}

.statement {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 20%, rgba(31, 111, 235, 0.35), transparent 32%),
    var(--navy);
  padding: 34px;
}

.statement h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.statement p {
  max-width: 820px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.7;
}

.content {
  max-width: 880px;
  margin: 0 auto;
  padding: 70px 24px;
}

.content h1 {
  font-size: clamp(36px, 5vw, 58px);
}

.content .updated {
  margin-top: 14px;
  color: var(--muted);
}

.policy {
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 30px;
}

.policy h2 {
  margin-top: 30px;
  font-size: 24px;
}

.policy h2:first-child {
  margin-top: 0;
}

.policy p,
.policy li {
  color: var(--muted);
  line-height: 1.72;
}

.policy p {
  margin-top: 12px;
}

.policy ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.contact-box {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft-blue);
  padding: 18px;
}

.footer {
  padding: 30px max(24px, calc((100vw - 1120px) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #ffffff;
  font-size: 14px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 820px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

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

  .hero {
    padding-top: 58px;
  }

  .section-title {
    align-items: start;
    flex-direction: column;
  }

  .statement,
  .policy {
    padding: 24px;
  }
}
