:root {
  --navy: #011C39;
  --navy-mid: #033B71;
  --red: #CA130F;
  --white: #DCE2EB;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, system-ui, "Helvetica Neue", sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
}
a { color: var(--white); }
.wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}
header.site {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
header.site img { height: 42px; width: auto; }
header.site .name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
header.site a { text-decoration: none; }
h1 { font-size: 32px; margin: 24px 0 4px; }
h2 { font-size: 20px; margin: 32px 0 8px; }
p.meta { color: #8fa3b8; margin-top: 0; font-size: 14px; }
.hero {
  text-align: center;
  padding: 48px 0 24px;
}
.hero img { width: 180px; max-width: 60%; height: auto; }
.hero h1 { font-size: 40px; margin: 24px 0 8px; }
.hero p.tag {
  font-size: 18px;
  color: var(--white);
  max-width: 460px;
  margin: 0 auto 36px;
}
.store-badge { height: 54px; width: auto; }
footer {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--navy-mid);
  font-size: 14px;
  color: #8fa3b8;
}
footer a { color: #b8c6d6; margin-right: 18px; }
