:root {
  color-scheme: light;
  --ink: #1c1a17;
  --muted: #6c6256;
  --cream: #f6f1ea;
  --peach: #f4d6c0;
  --charcoal: #221f1a;
  --card: #ffffff;
  --shadow: 0 30px 80px rgba(27, 22, 17, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  font-family: "Baskerville", "Bodoni MT", "Didot", "Times New Roman", serif;
  background: radial-gradient(circle at top, #fff 0%, #f8efe5 30%, #f4e2d2 60%, #edd5c4 100%);
  color: var(--ink);
}

.hero {
  width: min(960px, 92vw);
  padding: 4rem 1rem;
}

.hero-card {
  position: relative;
  background: var(--card);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(0);
  opacity: 0.8;
  pointer-events: none;
}

.hero-card::before {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, #f4d6c0 0%, rgba(244, 214, 192, 0) 70%);
  top: -90px;
  right: -60px;
}

.hero-card::after {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #f0e7db 0%, rgba(240, 231, 219, 0) 70%);
  bottom: -80px;
  left: -40px;
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.7rem;
  margin: 0 0 1.2rem;
  color: var(--muted);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}

.sub {
  margin: 0 0 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}

.cta-note {
  margin: -1rem 0 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.value-list {
  margin: -0.5rem 0 1.5rem;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.value-list li {
  margin: 0.35rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.value-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #a38f7b;
}

.overlay-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  animation: rise 0.7s ease forwards;
  opacity: 0;
  position: relative;
  z-index: 2;
}

.overlay-buttons a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.overlay-buttons a:hover {
  transform: translateY(-2px);
}

.app-store-badge {
  width: 200px;
  height: 67px;
  padding-top: 3px;
}

.google-play-badge {
  width: 220px;
  margin-top: -8px;
  margin-bottom: -8px;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
}

.links a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.links a:hover {
  color: var(--ink);
  border-color: rgba(26, 22, 18, 0.3);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 2.5rem 0.5rem;
  }

  .overlay-buttons {
    flex-direction: column;
    width: 100%;
    justify-content: center;
  }

  .links {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (max-width: 700px) {
  .app-store-badge {
    width: 160px;
    height: 54px;
    padding-top: 2px;
  }

  .google-play-badge {
    width: 180px;
    margin-top: -6px;
    margin-bottom: -6px;
  }
}

@media (max-width: 600px) {
  .overlay-buttons {
    flex-direction: column;
    align-items: center;
  }

  .app-store-badge {
    width: 125px;
    height: 42px;
    padding-top: 1.5px;
  }

  .google-play-badge {
    width: 140px;
    margin-top: -5px;
    margin-bottom: -5px;
  }
}
