:root {
  --pink: #ed4f8a;
  --pink-soft: #fab8d1;
  --blush: #f5e0e6;
  --blush-deep: #e8b8c7;
  --ivory: #fffdf9;
  --ink: #2e1a24;
  --ink-muted: rgba(46, 26, 36, 0.68);
  --ink-soft: rgba(46, 26, 36, 0.5);
  --white: #ffffff;
  --radius-pill: 999px;
  --shadow: 0 18px 48px rgba(237, 79, 138, 0.18);
  --font-display: "Nunito", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 90% 70% at 15% 10%, rgba(250, 184, 209, 0.55), transparent 55%),
    radial-gradient(ellipse 80% 60% at 90% 20%, rgba(232, 184, 199, 0.45), transparent 50%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(237, 79, 138, 0.12), transparent 55%),
    linear-gradient(165deg, #fff7f9 0%, var(--blush) 45%, #f3d5df 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--pink);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

a:hover {
  color: #d63d75;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px 40px;
}

.home {
  justify-content: center;
  text-align: center;
}

.brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 9vw, 4.2rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--pink);
  margin: 0;
  opacity: 0;
  transform: translateY(18px);
  animation: rise-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
}

.tagline {
  margin: 16px 0 0;
  max-width: 22rem;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink-muted);
  opacity: 0;
  transform: translateY(14px);
  animation: rise-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(320px, 100%);
  margin-top: 36px;
  opacity: 0;
  transform: translateY(18px);
  animation: rise-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: scale(1.02);
}

.btn:active {
  transform: scale(0.96);
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(237, 79, 138, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-primary:hover {
  color: var(--white);
  background: #e0437d;
}

.btn-secondary {
  background: rgba(255, 253, 249, 0.78);
  color: var(--pink);
  border: 1.5px solid rgba(237, 79, 138, 0.55);
}

.btn-secondary:hover {
  color: var(--pink);
  background: var(--ivory);
}

.nav {
  width: min(720px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  opacity: 0;
  animation: rise-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--pink);
  text-decoration: none;
}

.nav-brand:hover {
  color: #d63d75;
}

.back-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink-muted);
  text-decoration: none;
}

.back-link:hover {
  color: var(--pink);
}

.content {
  width: min(720px, 100%);
  flex: 1;
  opacity: 0;
  transform: translateY(12px);
  animation: rise-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}

.content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--ink);
}

.meta {
  margin: 0 0 28px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.content h2 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 28px 0 10px;
  color: var(--ink);
}

.content p,
.content li {
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--ink-muted);
}

.content p {
  margin: 0 0 14px;
}

.content ul {
  margin: 0 0 14px;
  padding-left: 1.2rem;
}

.content li {
  margin-bottom: 8px;
}

.support-block {
  margin-top: 8px;
}

.support-email {
  display: inline-flex;
  margin-top: 8px;
  font-size: 1.15rem;
  font-weight: 800;
}

.footer {
  margin-top: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  opacity: 0;
  animation: rise-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .brand,
  .tagline,
  .actions,
  .nav,
  .content,
  .footer {
    opacity: 1;
    transform: none;
  }
}
