:root {
  color-scheme: light;
  --ink: #142033;
  --muted: #536176;
  --line: #dce3ed;
  --paper: #ffffff;
  --mist: #f5f8fb;
  --blue: #0877e8;
  --blue-deep: #073c8f;
  --yellow: #ffd95a;
  --green: #2dbf7f;
  --red: #f15b4f;
  --shadow: 0 18px 44px rgba(20, 32, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  padding: 20px clamp(18px, 4vw, 56px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  color: #ffffff;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0, 40, 100, 0.22);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.5vw, 28px);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.brand:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero {
  position: relative;
  min-height: min(780px, 82svh);
  overflow: hidden;
  isolation: isolate;
  background: #0899eb;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, #073c8f 0%, #0877e8 54%, #25c2ef 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 38%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0));
}

.hero-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(106px, 18vh, 160px) 0 clamp(72px, 12vh, 112px);
}

.hero-copy {
  max-width: 680px;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(5, 28, 65, 0.26);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(3.4rem, 11vw, 8.2rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy .lede {
  max-width: 570px;
  margin-bottom: 28px;
  font-size: clamp(1.12rem, 2.5vw, 1.55rem);
  font-weight: 650;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  color: #0f233c;
  background: var(--yellow);
}

.button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
}

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

.app-strip {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 36px));
  margin: clamp(-52px, -5vw, -28px) auto 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 18px);
}

.flash-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.flash-card img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
}

main {
  background: #ffffff;
}

.section {
  padding: clamp(54px, 8vw, 92px) clamp(18px, 4vw, 56px);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.feature {
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.feature-mark {
  width: 34px;
  height: 8px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: var(--blue);
}

.feature:nth-child(2) .feature-mark {
  background: var(--green);
}

.feature:nth-child(3) .feature-mark {
  background: var(--red);
}

.feature h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.feature p,
.legal-card p,
.support-card p {
  color: var(--muted);
}

.site-footer {
  padding: 30px clamp(18px, 4vw, 56px);
  color: #dfe9f5;
  background: #142033;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1160px, 100%);
  margin: 0 auto;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-weight: 700;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
}

.page-shell {
  min-height: 100svh;
  background: var(--mist);
}

.page-shell .site-header {
  position: static;
  background: #0877e8;
}

.content-page {
  padding: clamp(42px, 7vw, 84px) clamp(18px, 4vw, 56px);
}

.content-inner {
  width: min(900px, 100%);
  margin: 0 auto;
}

.page-title {
  margin-bottom: 24px;
}

.page-title h1 {
  margin-bottom: 12px;
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  line-height: 0.96;
}

.page-title p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-card,
.support-card {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.legal-card + .legal-card,
.support-card + .support-card {
  margin-top: 16px;
}

.legal-card h2,
.support-card h2 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.legal-card ul,
.support-card ul {
  margin: 12px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.legal-card li + li,
.support-card li + li {
  margin-top: 8px;
}

.contact-line {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue-deep);
  font-weight: 850;
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  .header-inner {
    align-items: flex-start;
  }

  .site-nav {
    gap: 12px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-inner {
    width: min(100% - 36px, 640px);
    padding-top: 104px;
  }

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

  .strip-grid .flash-card:nth-child(n + 4) {
    display: none;
  }

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

  .feature {
    min-height: auto;
  }

  .footer-inner {
    display: block;
  }

  .footer-links {
    margin-top: 14px;
  }
}

@media (max-width: 440px) {
  .brand span {
    display: none;
  }

  .actions,
  .button {
    width: 100%;
  }

  .site-nav {
    gap: 10px;
  }
}
