html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: #172026;
  background: #f6f8f8;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

a {
  color: #137f75;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #2fb6a6;
  outline-offset: 3px;
}

.site-header {
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid #dfe7e5;
  backdrop-filter: blur(12px);
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.navbar {
  display: flex;
  align-items: center;
  min-height: 68px;
}

.static-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar-brand {
  color: #101820;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.nav-link {
  display: inline-flex;
  color: #3e4b52;
  font-weight: 600;
  text-decoration: none;
}

.nav-link:hover {
  color: #137f75;
}

.static-links {
  display: flex;
  gap: 22px;
}

.page-frame {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 36px;
  align-items: center;
  min-height: calc(100vh - 196px);
  padding: 56px 0 34px;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #137f75;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #101820;
  font-size: 72px;
  font-weight: 850;
  line-height: .96;
  letter-spacing: 0;
}

.lead {
  margin: 22px 0 0;
  color: #4d5b61;
  font-size: 20px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.primary-action {
  color: #fff;
  background: #137f75;
}

.secondary-action {
  color: #172026;
  background: #fff;
  border: 1px solid #cfdad7;
}

.disabled-link {
  cursor: default;
}

.hero-art {
  overflow: hidden;
  border: 1px solid #dfe7e5;
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(20, 38, 44, .16);
}

.hero-art img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

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

.download-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  min-height: 164px;
  padding: 20px;
  background: #fff;
  border: 1px solid #dfe7e5;
  border-radius: 8px;
}

.platform-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #0f5f57;
  background: #dff4ef;
  border-radius: 8px;
  font-weight: 850;
}

.download-card h2 {
  margin: 0;
  color: #101820;
  font-size: 20px;
  font-weight: 800;
}

.download-card p {
  margin: 8px 0 0;
  color: #5b686d;
  line-height: 1.5;
}

.status-pill {
  grid-column: 2;
  justify-self: start;
  align-self: end;
  padding: 5px 10px;
  color: #5d4a12;
  background: #fff1bd;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.status-pill.live {
  color: #0f5f57;
  background: #dff4ef;
}

.download-link {
  grid-column: 2;
  justify-self: start;
  align-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #fff;
  background: #137f75;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.download-link:hover {
  color: #fff;
  background: #0f665e;
}

.content-page {
  max-width: 720px;
  padding: 72px 0;
}

.content-page h1 {
  font-size: 44px;
}

.content-page p {
  margin-top: 20px;
  color: #4d5b61;
  font-size: 18px;
  line-height: 1.7;
}

.site-footer {
  border-top: 1px solid #dfe7e5;
  background: #fff;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  align-items: center;
  color: #607076;
}

@media (max-width: 900px) {
  .hero-shell {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 42px;
  }

  h1 {
    font-size: 52px;
  }

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

@media (max-width: 560px) {
  .page-frame {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }
}
