* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: #08130f;
  color: #e6f6f0;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 20px 64px;
}

.hero {
  text-align: center;
  margin-bottom: 32px;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.logo img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 40px);
}

.subtitle {
  margin: 0;
  color: #b2d6c8;
}

.desktop-cta {
  margin-top: 18px;
}

.desktop-cta .button {
  width: fit-content;
}

.card {
  background: #0f1d17;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(2, 12, 8, 0.55);
  margin-bottom: 20px;
}

.card.secondary {
  background: #0b1812;
  border: 1px solid #1f3a2f;
}

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

.app-logos {
  justify-content: center;
  gap: 16px;
}

.logo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 16px;
  background: #0b1812;
  border: 1px solid #1f3a2f;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.logo-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 18px rgba(15, 29, 23, 0.45);
}

.logo-button img {
  width: 140px;
  height: auto;
  display: block;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: #1f8f5a;
  color: #effaf6;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 18px rgba(31, 143, 90, 0.35);
}

.button.ghost {
  background: transparent;
  border: 1px solid #2a4a3a;
  color: #cbeadd;
}

@media (max-width: 640px) {
  .actions {
    flex-direction: column;
    align-items: stretch;
  }
}
