/* Link-in-bio — Hablar Español con Jenny */

.lt {
  --lt-max: 26rem;
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(2.5rem, 8vh, 4.5rem) 1.25rem 2.5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(242, 168, 184, 0.38), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 80%, rgba(232, 184, 74, 0.16), transparent 50%),
    radial-gradient(ellipse 50% 35% at 0% 70%, rgba(125, 143, 106, 0.12), transparent 45%),
    linear-gradient(180deg, #fdf6f8 0%, var(--paper) 45%, #f7f1ea 100%);
  color: var(--ink);
}

.lt__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
  opacity: 0.55;
  animation: lt-float 12s ease-in-out infinite;
}

.lt__glow--a {
  width: 18rem;
  height: 18rem;
  top: 8%;
  left: -6%;
  background: rgba(242, 168, 184, 0.45);
}

.lt__glow--b {
  width: 14rem;
  height: 14rem;
  bottom: 12%;
  right: -4%;
  background: rgba(232, 184, 74, 0.28);
  animation-delay: -4s;
}

.lt__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px;
  mix-blend-mode: multiply;
}

.lt__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--lt-max);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.lt__profile {
  text-align: center;
  animation: lt-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lt__avatar-wrap {
  width: 7rem;
  height: 7rem;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(145deg, var(--pink), var(--gold) 55%, var(--sage));
  box-shadow:
    0 12px 28px rgba(46, 43, 41, 0.12),
    0 0 0 6px rgba(255, 255, 255, 0.55);
}

.lt__avatar {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  background: var(--pink-soft);
}

.lt__brand {
  margin: 0;
  font-size: clamp(1.45rem, 4.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.lt__bio {
  margin: 0.45rem 0 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ink2);
}

.lt__links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lt__link {
  --i: 0;
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  min-height: 4.15rem;
  padding: 0.85rem 1.05rem;
  border-radius: 1.1rem;
  text-decoration: none;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(46, 43, 41, 0.08);
  box-shadow: 0 8px 22px rgba(46, 43, 41, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
  animation: lt-rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(0.12s + var(--i) * 0.07s);
}

.lt__link:hover,
.lt__link:focus-visible {
  transform: translateY(-2px) scale(1.012);
  background: #fff;
  border-color: rgba(217, 122, 146, 0.35);
  box-shadow: 0 14px 28px rgba(46, 43, 41, 0.1);
  outline: none;
}

.lt__link:active {
  transform: translateY(0) scale(0.995);
}

.lt__link--ebook {
  background: linear-gradient(135deg, rgba(253, 232, 238, 0.95), rgba(255, 255, 255, 0.88) 55%);
  border-color: rgba(242, 168, 184, 0.45);
}

.lt__link--ebook:hover,
.lt__link--ebook:focus-visible {
  border-color: rgba(217, 122, 146, 0.55);
}

.lt__link-icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.85rem;
  background: var(--pink-soft);
  color: var(--pink-deep);
}

.lt__link--youtube .lt__link-icon,
.lt__link--subscribe .lt__link-icon {
  background: #fee8ea;
  color: #c4302b;
}

.lt__link--ebook .lt__link-icon {
  background: var(--gold-soft);
  color: #9a6f12;
}

.lt__link-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.lt__link-copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.lt__link-title {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.lt__link-sub {
  font-size: 0.82rem;
  line-height: 1.3;
  color: var(--ink3);
}

.lt__link-arrow {
  font-size: 1.05rem;
  color: var(--ink3);
  transition: transform 0.22s ease, color 0.22s ease;
}

.lt__link:hover .lt__link-arrow,
.lt__link:focus-visible .lt__link-arrow {
  transform: translateX(3px);
  color: var(--pink-deep);
}

.lt__foot {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: var(--ink3);
  animation: lt-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.45s;
}

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

@keyframes lt-float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(12px, -18px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lt__glow,
  .lt__profile,
  .lt__link,
  .lt__foot {
    animation: none;
  }

  .lt__link,
  .lt__link-arrow {
    transition: none;
  }
}
