/* ===== LUMI AI — Bio Link (Lumi AI presencia digital) ===== */
:root {
  --bg-0: #08080C;
  --ink: #FFFFFF;
  --ink-soft: #C4BBDE;
  --muted: #7E7AA0;
  --muted-2: #6E6890;
  --row-bg: #0E0E16;
  --lilac: #B49CFF;
  --violet: #8B5CF6;
  --violet-deep: #6D28D9;
  --green: #41E0A6;
  --blue: #5AB2FF;
  --pink: #FF6EC7;
  --amber: #F5B544;
  --hairline: rgba(255, 255, 255, 0.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink-soft);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@keyframes lumiGlow { 0%, 100% { opacity: .32; } 50% { opacity: .5; } }
@keyframes lumiDot  { 0%, 100% { opacity: .4; }  50% { opacity: 1; } }
@keyframes fadeUp   { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* Page */
.page {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 22px 16px;
  background: radial-gradient(120% 65% at 50% -8%, #231142 0%, #0E0A1C 46%, #08080C 100%);
}

/* Card */
.card {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: 30px;
  overflow: hidden;
  background: radial-gradient(120% 42% at 50% 0%, #1A1030 0%, #0C0A18 52%, #08080C 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .07), 0 30px 80px -30px rgba(0, 0, 0, .9);
  padding: 24px 20px 28px;
  display: flex;
  flex-direction: column;
  min-height: 780px;
  animation: fadeUp .6s ease both;
}

.aura {
  position: absolute;
  z-index: 0;
  width: 340px; height: 300px;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  filter: blur(70px);
  background: radial-gradient(circle, #7C3AED, transparent 64%);
  animation: lumiGlow 8s ease-in-out infinite;
  pointer-events: none;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Top bar */
.topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.brand { display: flex; align-items: center; }
.brand svg { display: block; width: auto; height: 24px; }
.topbar-right { display: inline-flex; align-items: center; gap: 10px; }

.icon-btn {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
  color: var(--ink-soft);
  cursor: pointer;
  transition: color .18s ease, background .18s ease, box-shadow .18s ease;
}
.icon-btn:hover {
  color: #fff;
  background: rgba(139, 92, 246, .18);
  box-shadow: inset 0 0 0 1px rgba(180, 156, 255, .45);
}
.icon-btn svg { width: 17px; height: 17px; }

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(65, 224, 166, .08);
  box-shadow: inset 0 0 0 1px rgba(65, 224, 166, .24);
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: lumiDot 2.4s ease-in-out infinite;
}
.status-label {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
}

/* Hero card */
.hero {
  position: relative;
  z-index: 1;
  border-radius: 22px;
  overflow: hidden;
  padding: 26px 22px;
  margin-bottom: 22px;
  background: linear-gradient(125deg, #3A1D6E 0%, #241148 42%, #150C2E 100%);
  box-shadow: inset 0 0 0 1px rgba(180, 156, 255, .22);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 220px; height: 220px;
  top: -90px; right: -70px;
  border-radius: 50%;
  filter: blur(48px);
  background: radial-gradient(circle, var(--violet), transparent 66%);
  opacity: .5;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.eyebrow {
  display: block;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lilac);
}
.hero-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: #fff;
  margin: 12px 0 10px;
}
.hero-title .grad {
  background: linear-gradient(90deg, var(--lilac), var(--pink) 55%, var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-sub {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 22px;
  max-width: 34ch;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  color: #fff;
  padding: 13px 22px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--violet), var(--violet-deep));
  box-shadow: 0 12px 30px -12px rgba(139, 92, 246, 1);
  transition: filter .18s ease, transform .18s ease;
}
.cta:hover { filter: brightness(1.1); transform: translateY(-1px); }
.cta:focus-visible { outline: 2px solid var(--lilac); outline-offset: 3px; }
.cta svg { width: 16px; height: 16px; }

/* Section label */
.section-label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-left: 2px;
}
.section-label span:first-child {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.section-label .rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(180, 156, 255, .18), transparent);
}

/* Links */
.links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.link-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 15px 14px 15px 16px;
  border-radius: 16px;
  background: var(--row-bg);
  box-shadow: inset 0 0 0 1px var(--hairline);
  transition: transform .18s ease, box-shadow .18s ease;
}
.link {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.link-ic {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .18s ease;
}
.link-ic svg { width: 22px; height: 22px; }
.link-meta { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.link-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}
.link-sub {
  font-weight: 400;
  font-size: 12.5px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Per-row share (3 dots) */
.link-share {
  flex-shrink: 0;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #5A5676;
  cursor: pointer;
  transition: color .18s ease, background .18s ease;
}
.link-share:hover { color: #fff; background: rgba(255, 255, 255, .06); }
.link-share:focus-visible { outline: 2px solid var(--lilac); outline-offset: 2px; }
.link-share svg { width: 18px; height: 18px; }

/* Per-channel accents */
.link-ic--web { background: rgba(65, 224, 166, .12); box-shadow: inset 0 0 0 1px rgba(65, 224, 166, .26); color: var(--green); }
.link-ic--telegram { background: rgba(90, 178, 255, .12); box-shadow: inset 0 0 0 1px rgba(90, 178, 255, .26); color: var(--blue); }
.link-ic--instagram { background: rgba(255, 110, 199, .12); box-shadow: inset 0 0 0 1px rgba(255, 110, 199, .26); color: var(--pink); }
.link-ic--support { background: rgba(245, 181, 68, .12); box-shadow: inset 0 0 0 1px rgba(245, 181, 68, .26); color: var(--amber); }

.link-row--web:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1px rgba(65, 224, 166, .5), 0 12px 30px -16px rgba(65, 224, 166, .6); }
.link-row--telegram:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1px rgba(90, 178, 255, .5), 0 12px 30px -16px rgba(90, 178, 255, .6); }
.link-row--instagram:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1px rgba(255, 110, 199, .5), 0 12px 30px -16px rgba(255, 110, 199, .6); }
.link-row--support:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1px rgba(245, 181, 68, .5), 0 12px 30px -16px rgba(245, 181, 68, .6); }
.link-row:hover .link-ic { transform: scale(1.05); }

/* Toast */
.toast {
  position: fixed;
  left: 50%; bottom: 26px;
  transform: translateX(-50%) translateY(20px);
  background: rgba(20, 16, 30, .96);
  box-shadow: inset 0 0 0 1px rgba(180, 156, 255, .22);
  color: var(--ink);
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 50;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.verified { display: inline-flex; align-items: center; gap: 8px; }
.verified .vdot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 9px var(--green);
}
.verified span:last-child {
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.copy {
  font-weight: 400;
  font-size: 11px;
  letter-spacing: .04em;
  color: #444062;
}
.lang {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: .04em;
}
.lang a { color: var(--muted-2); text-decoration: none; transition: color .18s ease; }
.lang a:hover { color: var(--lilac); }
.lang a.is-active { color: var(--lilac); font-weight: 600; }
.lang .sep { color: #332f4a; margin: 0 7px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .card { animation: none; }
  .aura, .status-dot { animation: none; }
  .link-row, .link-ic, .cta, .icon-btn, .link-share { transition: none; }
}
