:root {
  color: #182026;
  background: #f6f4ee;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: #f6f4ee;
}

a {
  color: inherit;
}

.site-header {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: #182026;
  color: #f8f4e9;
}

.brand,
nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
}

.mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #e7b948;
  color: #182026;
}

nav {
  gap: 18px;
  color: #d9e1e4;
  font-size: 14px;
}

nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: grid;
  align-items: center;
  padding: 54px clamp(18px, 7vw, 96px);
  background: #f6f4ee;
}

.hero::after {
  content: "";
  position: absolute;
  top: 120px;
  right: clamp(-260px, -10vw, -80px);
  width: min(780px, 58vw);
  aspect-ratio: 14 / 9;
  border: 1px solid #d7d1c5;
  border-radius: 8px;
  background: url("/assets/alpha-glitch-app-preview.png") center / cover no-repeat;
  box-shadow: 0 24px 70px rgba(24, 32, 38, 0.16);
  opacity: 0.18;
  pointer-events: none;
}

.hero > div {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #55707b;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1.15;
}

.lede {
  color: #3a4a51;
  font-size: 20px;
  line-height: 1.55;
  max-width: 660px;
}

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

.button,
.download-card {
  min-height: 44px;
  border: 1px solid #b9b2a5;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 800;
  background: #ffffff;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 12px;
  margin: 28px 0 4px;
  max-width: 600px;
}

.download-card {
  min-height: 116px;
  align-items: flex-start;
  flex-direction: column;
}

.download-card span,
.download-card small {
  display: block;
}

.download-card span {
  color: #55707b;
  font-size: 13px;
  text-transform: uppercase;
}

.download-card strong {
  font-size: 18px;
}

.download-card small {
  color: #667982;
}

.download-card.available {
  border-color: #2266aa;
}

.download-card.pending {
  background: #f0ede5;
  color: #657078;
  cursor: not-allowed;
}

.button.primary {
  background: #2266aa;
  border-color: #2266aa;
  color: #ffffff;
}

.small {
  color: #667982;
  font-size: 14px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 32px clamp(18px, 7vw, 96px);
}

article,
.band,
.disclaimer {
  border: 1px solid #dfddd4;
  border-radius: 8px;
  background: #ffffff;
}

article {
  padding: 22px;
}

article p,
.band p,
.disclaimer p {
  color: #53666e;
  line-height: 1.5;
}

.band {
  margin: 20px clamp(18px, 7vw, 96px);
  padding: 28px;
}

.band.muted {
  background: #fff8e1;
  border-color: #ecd17c;
}

ul {
  margin: 0;
  padding-left: 20px;
  line-height: 1.8;
}

.disclaimer {
  margin: 20px clamp(18px, 7vw, 96px) 48px;
  padding: 18px;
}

.disclaimer p {
  margin-bottom: 0;
}

@media (max-width: 820px) {
  .site-header,
  .grid {
    grid-template-columns: 1fr;
  }

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

  nav {
    flex-wrap: wrap;
  }

  .hero {
    min-height: 560px;
    align-items: start;
  }

  .hero::after {
    top: auto;
    right: -22vw;
    bottom: 22px;
    width: 96vw;
    opacity: 0.08;
  }

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