:root {
  --blue: #464bd6;
  --blue-dark: #11143a;
  --white: #ffffff;
  --text: #17192f;
  --muted: #5a6078;
  --line: #e1e4f2;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background: var(--white);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
}

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

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

.page-shell,
.footer-inner,
.footer-bottom {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  padding: 30px 0 52px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-size: 22px;
  font-weight: 950;
}

.brand img {
  display: block;
  width: 34px;
  height: auto;
}

.hero {
  padding-bottom: 44px;
}

.eyebrow {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin-top: 18px;
  color: var(--blue-dark);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  font-weight: 950;
}

.summary {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.55;
}

.updated {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.content {
  display: grid;
  gap: 34px;
  padding-bottom: 70px;
}

.section {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.section h2 {
  max-width: 760px;
  color: var(--blue-dark);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.08;
}

.copy {
  display: grid;
  gap: 14px;
  max-width: 800px;
  margin-top: 16px;
}

.copy p,
.copy li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.copy ul {
  margin: 0;
  padding-left: 20px;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 8px;
  padding: 0 18px;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
}

.button-secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--blue);
}

.site-footer {
  background: var(--blue-dark);
  color: var(--white);
}

.footer-inner,
.footer-bottom {
  width: min(1180px, calc(100% - 40px));
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(150px, 0.42fr) minmax(130px, 0.32fr) minmax(120px, 0.32fr) minmax(170px, 0.42fr);
  gap: 34px;
  padding: 50px 0 36px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 950;
}

.footer-brand img {
  display: block;
  width: 34px;
  height: auto;
}

.footer-copy {
  max-width: 360px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.55;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-column h2 {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
}

.footer-column a {
  color: var(--white);
  font-weight: 900;
}

.footer-store-links {
  display: grid;
  gap: 8px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  font-size: 18px;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  padding: 22px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

@media (max-width: 760px) {
  .page-shell,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 28px, 1040px);
  }

  .site-header {
    padding-bottom: 52px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}
