:root {
  --bg: #0a0510;
  --panel: rgba(18, 10, 30, 0.55);
  --panel-hover: rgba(30, 16, 50, 0.7);
  --neon: #a855f7;
  --neon-bright: #c084fc;
  --neon-line: rgba(168, 85, 247, 0.45);
  --text: #f3ecff;
  --muted: #d8b4fe;
  --radius: 14px;
  --maxw: 760px;
}

* { box-sizing: border-box; }

html, body { margin: 0; height: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.landing {
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  background-image:
    linear-gradient(to bottom, rgba(10, 5, 16, 0.30) 0%, rgba(10, 5, 16, 0.15) 42%, rgba(10, 5, 16, 0.9) 100%),
    url("/assets/dubreal-bg.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.links {
  width: 100%;
  max-width: var(--maxw);
  text-align: center;
  padding-bottom: clamp(0.5rem, 3vh, 2rem);
}

.tagline {
  margin: clamp(1.5rem, 4vw, 2.25rem) 0 0;
  font-size: clamp(0.85rem, 2.6vw, 1.05rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.socials {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(0.6rem, 1.6vw, 1rem);
}

.social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: clamp(0.85rem, 2vw, 1.25rem) 0.5rem;
  border: 1px solid var(--neon-line);
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--text);
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.18s ease, border-color 0.18s ease,
    box-shadow 0.18s ease, background 0.18s ease;
}

.social svg {
  width: clamp(26px, 6vw, 34px);
  height: clamp(26px, 6vw, 34px);
  color: var(--neon-bright);
  transition: color 0.18s ease, filter 0.18s ease;
}

.social__name {
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.social__handle {
  font-size: clamp(0.7rem, 1.8vw, 0.82rem);
  color: var(--muted);
}

.social:hover,
.social:focus-visible {
  transform: translateY(-3px);
  border-color: var(--neon-bright);
  background: var(--panel-hover);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(192, 132, 252, 0.4),
    0 10px 30px rgba(124, 58, 237, 0.35);
  outline: none;
}

.social:hover svg,
.social:focus-visible svg {
  color: #fff;
  filter: drop-shadow(0 0 8px var(--neon));
}

.social:active { transform: translateY(-1px) scale(0.99); }

@media (max-width: 560px) {
  .socials { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  .social,
  .social svg { transition: none; }
  .social:hover,
  .social:focus-visible { transform: none; }
  .social:active { transform: none; }
}
