:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --green: #08a034;
  --dark: #101217;
  --muted: #4b5563;
  --line: #d8ead8;
  --soft: #f2fbf1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #f6fff5 0%, #ffffff 42%);
  color: var(--dark);
}

.page {
  align-items: center;
  display: flex;
  min-height: 100vh;
  justify-content: center;
  padding: 28px 16px;
}

.hero,
.card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 55px rgba(16, 18, 23, 0.08);
  max-width: 520px;
  padding: 28px;
  text-align: center;
  width: 100%;
}

.logo-card {
  align-items: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: inline-flex;
  height: 92px;
  justify-content: center;
  padding: 12px;
  width: 132px;
}

.logo-card img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.eyebrow {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 24px 0 8px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(32px, 8vw, 48px);
  letter-spacing: 0;
  line-height: 1.03;
  margin: 0;
}

.copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  margin: 16px 0 0;
}

.download-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  margin-top: 26px;
}

.download-button {
  align-items: center;
  border-radius: 14px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 76px;
  padding: 14px 18px;
  text-decoration: none;
}

.download-button.android {
  background: var(--green);
}

.download-button.ios {
  background: #111827;
}

.download-button.full {
  margin-top: 22px;
}

.platform {
  font-size: 13px;
  font-weight: 800;
  opacity: 0.82;
}

.download-button strong {
  font-size: 20px;
  margin-top: 4px;
}

.note {
  color: #6b7280;
  font-size: 13px;
  line-height: 1.5;
  margin: 18px 0 0;
}

.legal-links {
  bottom: 24px;
  display: flex;
  gap: 18px;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
}

.legal-links a,
.back-link {
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.legal-card {
  max-width: 760px;
  text-align: left;
}

.legal-card h1 {
  margin-top: 20px;
}

.legal-card p {
  color: #374151;
  font-size: 16px;
  line-height: 1.7;
}

.contact {
  color: var(--dark) !important;
  font-weight: 900;
}

@media (min-width: 560px) {
  .download-grid {
    grid-template-columns: 1fr 1fr;
  }
}
