:root {
  color-scheme: light;
  --navy: #071b3a;
  --blue: #0b5fc6;
  --red: #c81e2b;
  --ink: #122033;
  --muted: #5d6878;
  --line: #d9e0eb;
  --paper: #ffffff;
  --wash: #f4f7fb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, var(--wash) 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--blue);
}

.shell {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 48px;
}

.hero {
  padding: 56px;
  color: white;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.2), transparent 30%),
    linear-gradient(135deg, var(--navy), #0e4e9c 68%, #114d8f);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(7, 27, 58, .18);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffccd0;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.02;
}

h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.35rem;
}

.lead {
  max-width: 760px;
  margin: 0 0 24px;
  color: #dfeaff;
  font-size: 1.25rem;
}

.legal .lead {
  color: var(--muted);
}

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

.store-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 0 0 26px;
}

.store-cta p {
  margin: 0;
  color: #dfeaff;
  font-weight: 700;
}

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

.button.primary {
  color: white;
  background: var(--red);
}

.button.app-store {
  min-height: 56px;
  color: white;
  background: var(--red);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .2);
}

.button.secondary {
  color: var(--navy);
  background: white;
}

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

article,
.legal section {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.legal section {
  margin: 18px 0;
}

p,
li {
  color: var(--muted);
  font-size: 1rem;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 28px 20px 40px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

footer a {
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, 1080px);
    padding-top: 28px;
  }

  .hero {
    padding: 32px 24px;
    border-radius: 18px;
  }

  .store-cta {
    align-items: stretch;
  }

  .store-cta .button {
    width: 100%;
  }

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