:root {
  color: #162019;
  background: #eef2ea;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(104, 173, 126, 0.2), transparent 34rem),
    #eef2ea;
}

main {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: white;
  background: #26734a;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}

.brand strong {
  font-size: 20px;
}

.download-card {
  margin-top: 72px;
  padding: clamp(32px, 7vw, 64px);
  border: 1px solid #d3ddd0;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 80px rgba(34, 62, 42, 0.1);
}

.eyebrow {
  margin: 0 0 18px;
  color: #26734a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 10vw, 76px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.lede {
  max-width: 610px;
  margin: 28px 0 0;
  color: #647068;
  font-size: clamp(18px, 3vw, 22px);
  line-height: 1.55;
}

.status-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 15px 18px;
  border-radius: 16px;
  color: #3d4a41;
  background: #f2f5ef;
  font-weight: 650;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #e3a43f;
  box-shadow: 0 0 0 5px rgba(227, 164, 63, 0.14);
}

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

.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 15px;
  font-weight: 750;
  text-decoration: none;
}

.primary-action {
  color: white;
  background: #26734a;
}

.secondary-action {
  border: 1px solid #d3ddd0;
  color: #344039;
  background: white;
}

.security-note {
  margin: 22px 0 0;
  color: #78827b;
  text-align: center;
}

@media (max-width: 520px) {
  main {
    width: min(100% - 24px, 760px);
    padding-top: 24px;
  }

  .download-card {
    margin-top: 40px;
    border-radius: 24px;
  }

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