:root {
  --brand: #2857dc;
  --brand-dark: #17327f;
  --ink: #111827;
  --muted: #667085;
  --line: #e7eaf2;
  --paper: #ffffff;
  --soft: #f5f7fb;
  --accent: #b31924;
  --radius: 28px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--soft);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: linear-gradient(135deg, var(--brand) 0%, #2453d4 46%, #1f49c2 100%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 48px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.brand-wordmark {
  display: block;
  width: 104px;
  height: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
  align-items: center;
  padding: 88px 0 72px;
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 44px auto auto -92px;
  width: 420px;
  height: 420px;
  border-radius: 110px;
  background: rgba(31, 72, 195, 0.24);
  content: "";
  transform: rotate(34deg);
}

.hero-copy,
.phone-card {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: 76px;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 16px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: #fff;
  color: var(--brand);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
}

.phone-card {
  overflow: hidden;
  padding: 22px;
  border: 9px solid #0a0d14;
  border-radius: 46px;
  background: #f8f9fc;
  box-shadow: 0 34px 80px rgba(4, 14, 44, 0.35);
}

.phone-notch {
  width: 112px;
  height: 28px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: #05070b;
}

.phone-screen {
  color: var(--ink);
}

.screen-label {
  margin: 0 0 8px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.screen-title {
  margin: 0 0 20px;
  font-size: 30px;
  line-height: 1.1;
}

.mission-card,
.mini-card {
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.1);
}

.mission-card {
  padding: 22px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef3ff;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.mission-card h2 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.25;
}

.mission-card p {
  margin: 0;
  color: var(--muted);
}

.mini-stack {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
}

.mini-mark {
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 14px;
  background: #eef3ff;
  color: var(--brand);
  font-weight: 900;
}

.content-panel {
  display: grid;
  gap: 22px;
  padding: 36px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(4, 14, 44, 0.2);
}

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

.info-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.info-card h2,
.policy-section h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.info-card p,
.policy-section p,
.policy-section li {
  color: var(--muted);
}

.info-card p,
.policy-section p {
  margin: 0;
}

.email-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  background: #f1f5ff;
}

.email-box strong {
  display: block;
  color: var(--brand-dark);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.email-box a {
  color: var(--brand);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.policy-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.policy-sidebar {
  position: sticky;
  top: 24px;
  padding: 20px;
  border-radius: 22px;
  background: #f7f8fb;
}

.policy-sidebar img {
  display: block;
  width: 118px;
  height: auto;
  margin-bottom: 22px;
}

.policy-sidebar p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.policy-content {
  display: grid;
  gap: 22px;
}

.policy-section {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.policy-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

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

.footer {
  padding: 32px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  text-align: center;
}

.footer a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 860px) {
  .hero,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 56px;
  }

  h1 {
    font-size: 58px;
  }

  .phone-card {
    width: min(100%, 360px);
    margin: 0 auto;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .policy-sidebar {
    position: static;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 24px, 1120px);
    padding-top: 18px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
  }

  .nav-links a {
    flex: 1;
    text-align: center;
  }

  h1 {
    font-size: 44px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .content-panel {
    padding: 22px;
  }

  .email-box a {
    font-size: 24px;
  }

  .phone-card {
    border-width: 7px;
    border-radius: 38px;
  }
}
