* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  background: var(--bg, #0a0a0f);
  color: var(--text, #f5f5f7);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.25rem 2rem;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

/* --- Hero: motion, not a static template photo. This is what has to land in the
   first 2 seconds — see link-page-florencia-domain-and-page-design.md §2. --- */
.hero-wrap {
  width: 100%;
  position: relative;
  margin-bottom: 1rem;
}

.hero {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0 0 28px 28px;
  display: block;
  background: linear-gradient(160deg, var(--accent2, #3b5bfd), var(--accent, #e63950));
}

.status {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(10, 10, 15, 0.72);
  backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  white-space: nowrap;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.name {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 0.75rem;
  letter-spacing: -0.02em;
}

.tagline {
  margin-top: 0.4rem;
  opacity: 0.85;
  font-size: 0.95rem;
  line-height: 1.4;
  max-width: 34ch;
}

/* --- One primary button. Not a list — a list is a decision, and decisions leak. --- */
.cta {
  display: block;
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent, #e63950), var(--accent2, #3b5bfd));
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 8px 24px -8px rgba(230, 57, 80, 0.55);
  transition: transform 0.15s ease;
}

.cta:active { transform: scale(0.98); }

/* --- Secondary: small icon row, deliberately not competing with the CTA. --- */
.socials {
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  margin-top: 1.75rem;
}

.social {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text, #f5f5f7);
}

.social svg { width: 18px; height: 18px; fill: currentColor; }

footer {
  margin-top: auto;
  padding-top: 2.5rem;
  font-size: 0.7rem;
  opacity: 0.4;
}

footer a { color: inherit; }
