/* AGS Growth — Link / Bio */
:root {
  --navy: #0f172a;
  --navy-deep: #020817;
  --blue: #3b82f6;
  --cyan: #06b6d4;
  --gray: #e5e7eb;
  --muted: #94a3b8;
  --white: #ffffff;
  --font-display: "Poppins", sans-serif;
  --font-body: "Manrope", sans-serif;
}

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

body {
  min-height: 100svh;
  font-family: var(--font-body);
  color: var(--gray);
  background:
    radial-gradient(ellipse at top, rgba(59, 130, 246, 0.18), transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(6, 182, 212, 0.1), transparent 40%),
    linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 55%, #020817 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.bio-page {
  width: min(100% - 2rem, 420px);
  margin: 0 auto;
  padding: 2.75rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bio-avatar {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(59, 130, 246, 0.55);
  box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.12), 0 16px 40px rgba(0, 0, 0, 0.35);
  margin-bottom: 1.25rem;
  animation: fadeUp 0.7s ease both;
}

.bio-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  animation: fadeUp 0.7s ease 0.08s both;
}

.bio-handle {
  margin-top: 0.25rem;
  font-size: 0.92rem;
  color: var(--cyan);
  font-weight: 600;
  animation: fadeUp 0.7s ease 0.12s both;
}

.bio-tagline {
  margin-top: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--muted);
  max-width: 28ch;
  animation: fadeUp 0.7s ease 0.16s both;
}

.bio-services {
  margin-top: 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--gray);
  animation: fadeUp 0.7s ease 0.18s both;
}

@media (min-width: 400px) {
  .bio-tagline {
    max-width: none;
    white-space: nowrap;
    font-size: 0.92rem;
  }

  .bio-tagline br {
    display: none;
  }
}

.bio-links {
  width: 100%;
  margin-top: 2rem;
  display: grid;
  gap: 0.85rem;
}

.bio-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  padding: 1rem 1.15rem;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(229, 231, 235, 0.12);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  animation: fadeUp 0.7s ease both;
}

.bio-link:nth-child(1) {
  animation-delay: 0.22s;
}
.bio-link:nth-child(2) {
  animation-delay: 0.3s;
}
.bio-link:nth-child(3) {
  animation-delay: 0.38s;
}

.bio-link:hover {
  transform: translateY(-2px);
  border-color: rgba(59, 130, 246, 0.55);
  background: rgba(30, 41, 59, 0.9);
}

.bio-link.is-whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.55);
}

.bio-link-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(59, 130, 246, 0.15);
  color: var(--blue);
}

.bio-link.is-whatsapp .bio-link-icon {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
}

.bio-link.is-instagram .bio-link-icon {
  background: rgba(225, 48, 108, 0.15);
  color: #e1306c;
}

.bio-link-icon svg {
  width: 22px;
  height: 22px;
}

.bio-link-text {
  text-align: left;
  flex: 1;
}

.bio-link-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--white);
  font-weight: 600;
}

.bio-link-text span {
  font-size: 0.8rem;
  color: var(--muted);
}

.bio-link-arrow {
  color: var(--muted);
  font-size: 1.1rem;
}

.bio-footer {
  margin-top: 2.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  animation: fadeUp 0.7s ease 0.45s both;
}

.bio-footer a {
  color: var(--cyan);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bio-avatar,
  .bio-name,
  .bio-handle,
  .bio-tagline,
  .bio-link,
  .bio-footer {
    animation: none;
  }
}
