:root {
  --bg: #f2e0c9;
  --dark-teal: #3c5951;
  --text-muted: #4a4a48;
  --footer-muted: #6b6560;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  font-family: 'Poppins', sans-serif;
  color: var(--text-muted);
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

.card {
  width: 100%;
  max-width: 520px;
  padding: 24px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 66%;
  min-width: 0;
  margin: 0 auto 22px;
}

.brand-icon {
  flex: 0 0 23%;
  width: 23%;
  min-width: 0;
  height: auto;
}

.brand-text {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.wordmark {
  width: 100%;
  height: auto;
}

.tagline {
  width: 100%;
  height: auto;
  margin-top: -2px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  color: var(--dark-teal);
  font-size: clamp(24px, 6vw, 32px);
  line-height: 1.22;
  width: 76%;
  margin: 0 auto 12px;
}

.link-btn {
  display: block;
  width: 94%;
  margin: 0 auto;
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.link-btn:hover,
.link-btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.link-btn:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.link-btn img {
  display: block;
  width: 100%;
  height: auto;
}

.link-btn--paid {
  margin-top: -18px;
}

.mockup {
  width: 86%;
  height: auto;
  margin: 14px auto 0;
  display: block;
}

footer {
  margin: 6px auto 0;
  width: 86%;
}

footer a {
  color: var(--footer-muted);
  font-size: 12px;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

@media (max-width: 380px) {
  .card {
    padding: 18px 14px 18px;
  }
}
