:root {
  --bg: #020307;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.74);
  --line: rgba(255, 255, 255, 0.16);
  --card: rgba(11, 7, 19, 0.7);
  --green: #18d45f;
  --green-dark: #0a8f3b;
  --purple: #9f5cff;
  --purple-deep: #25103a;
  --pink: #ff3fa6;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body {
  overflow-x: hidden;
}

.page-shell {
  min-height: 100vh;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  padding: 28px;
  isolation: isolate;
}

.visual-wall {
  position: absolute;
  inset: -6vh -18vw;
  display: grid;
  gap: 18px;
  transform: rotate(-8deg) scale(1.08);
  filter: saturate(1.16) contrast(1.04);
  opacity: 0.82;
  z-index: -3;
}

.wall-track {
  display: flex;
  width: max-content;
  gap: 18px;
  will-change: transform;
}

.wall-track img {
  width: clamp(240px, 29vw, 520px);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.wall-track-one {
  animation: drift-left 55s linear infinite;
}

.wall-track-two {
  animation: drift-right 62s linear infinite;
  margin-left: -260px;
}

.overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 38%, rgba(159, 92, 255, 0.32), transparent 30%),
    radial-gradient(circle at 62% 62%, rgba(255, 63, 166, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(8, 3, 18, 0.88), rgba(15, 5, 28, 0.48), rgba(0, 0, 0, 0.82)),
    rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(2.5px);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black 0, transparent 72%);
  opacity: 0.45;
}

.contact-card {
  width: min(100%, 520px);
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(159, 92, 255, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 34%),
    linear-gradient(155deg, rgba(38, 14, 60, 0.76), rgba(4, 4, 10, 0.84) 62%),
    var(--card);
  box-shadow:
    0 32px 120px rgba(0, 0, 0, 0.58),
    0 0 90px rgba(159, 92, 255, 0.2);
  text-align: center;
  backdrop-filter: blur(18px);
}

.profile-avatar {
  display: block;
  width: clamp(86px, 18vw, 116px);
  height: clamp(86px, 18vw, 116px);
  margin: -4px auto 22px;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.45),
    0 0 0 8px rgba(255, 255, 255, 0.06),
    0 0 44px rgba(159, 92, 255, 0.32);
}

.brand-name {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2.8vw, 1.22rem);
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 12px;
  color: #d4b8ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 420px;
  margin: 0 auto;
  font-size: clamp(2.55rem, 7vw, 4.35rem);
  line-height: 0.88;
  text-shadow: 0 0 36px rgba(159, 92, 255, 0.18);
}

h1 span {
  display: block;
  white-space: nowrap;
}

h1 .title-small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.56em;
  letter-spacing: 0.02em;
}

.subtitle {
  max-width: 430px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 3vw, 1.22rem);
  line-height: 1.45;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 24px 0;
}

.service-row span {
  border: 1px solid rgba(212, 184, 255, 0.24);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(159, 92, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 700;
}

.whatsapp-button,
.instagram-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 18px;
  color: var(--text);
  font-weight: 850;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.whatsapp-button {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 18px 46px rgba(24, 212, 95, 0.28);
}

.instagram-link {
  min-height: 50px;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
}

.whatsapp-button:hover,
.instagram-link:hover {
  transform: translateY(-2px);
}

.whatsapp-button:hover {
  box-shadow: 0 24px 64px rgba(24, 212, 95, 0.36);
}

.instagram-link:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.11);
}

.artist-strip {
  position: fixed;
  right: 24px;
  bottom: 20px;
  left: 24px;
  z-index: 50;
  max-width: 760px;
  margin: 0 auto;
  pointer-events: none;
}

.artist-strip p {
  margin: 0 0 7px;
  color: rgba(212, 184, 255, 0.72);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(159, 92, 255, 0.32);
}

.artist-marquee {
  position: relative;
  height: 32px;
  overflow: hidden;
  border: 1px solid rgba(212, 184, 255, 0.24);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(159, 92, 255, 0.2), rgba(255, 255, 255, 0.05), rgba(159, 92, 255, 0.16)),
    rgba(8, 4, 15, 0.86);
  box-shadow:
    inset 0 0 20px rgba(159, 92, 255, 0.15),
    0 0 34px rgba(159, 92, 255, 0.18);
  animation: marquee-glow 3.6s ease-in-out infinite;
  pointer-events: auto;
}

.artist-marquee::before,
.artist-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 50px;
  content: "";
  pointer-events: none;
}

.artist-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(8, 4, 15, 0.98), transparent);
}

.artist-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(8, 4, 15, 0.98), transparent);
}

.artist-track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  gap: 16px;
  padding: 0 16px;
  will-change: transform;
  animation: artist-scroll 50s linear infinite;
}

.artist-track span {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.artist-track span::after {
  width: 4px;
  height: 4px;
  margin-left: 16px;
  border-radius: 999px;
  background: rgba(212, 184, 255, 0.82);
  box-shadow: 0 0 10px rgba(212, 184, 255, 0.85);
  content: "";
}

@keyframes drift-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes drift-right {
  from {
    transform: translateX(-42%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes artist-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-glow {
  0%,
  100% {
    border-color: rgba(212, 184, 255, 0.18);
    box-shadow:
      inset 0 0 18px rgba(159, 92, 255, 0.11),
      0 0 22px rgba(159, 92, 255, 0.11);
  }

  50% {
    border-color: rgba(212, 184, 255, 0.38);
    box-shadow:
      inset 0 0 28px rgba(159, 92, 255, 0.2),
      0 0 38px rgba(159, 92, 255, 0.22);
  }
}

@media (max-width: 680px) {
  .hero {
    padding: 18px 18px 76px;
  }

  .visual-wall {
    inset: -4vh -90vw;
    gap: 12px;
    transform: rotate(-10deg) scale(1.1);
  }

  .wall-track {
    gap: 12px;
  }

  .wall-track img {
    width: 310px;
    border-radius: 12px;
  }

  .contact-card {
    border-radius: 24px;
  }

  .artist-strip {
    right: 14px;
    bottom: 12px;
    left: 14px;
  }

  .artist-strip p {
    font-size: 0.56rem;
  }

  .artist-track {
    animation-duration: 40s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wall-track {
    animation: none;
  }

  .artist-track,
  .artist-marquee {
    animation: none;
  }
}
