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

:root {
  --bg: #0c0717;
  --bg-elevated: rgba(24, 15, 42, 0.78);
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.12);
  --accent: #ad00ff;
  --accent-soft: #f96aff;
  --accent-faint: rgba(173, 0, 255, 0.16);
  --text: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.72);
  --text-faint: rgba(255, 255, 255, 0.45);
  --pointer-x: 0px;
  --pointer-y: 0px;
  --cursor-x: 50vw;
  --cursor-y: 50vh;
  --cursor-opacity: 0;
}

html,
body {
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(173, 0, 255, 0.34), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(249, 106, 255, 0.18), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(117, 38, 255, 0.2), transparent 36%);
  animation: pulseMesh 12s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 28%, transparent 100%);
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.background-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.background-scene > * {
  position: absolute;
  will-change: transform, opacity;
}

.cursor-plushies {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: var(--cursor-opacity);
  transition: opacity 0.25s ease;
}

.cursor-plushies > * {
  position: absolute;
  top: var(--cursor-y);
  left: var(--cursor-x);
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}

.cursor-glow {
  width: 180px;
  height: 180px;
  background:
    radial-gradient(circle, rgba(249, 106, 255, 0.34) 0, rgba(173, 0, 255, 0.16) 38%, transparent 70%);
  filter: blur(18px);
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 0 18px rgba(249, 106, 255, 0.2),
    inset 0 0 18px rgba(173, 0, 255, 0.12);
  transform: translate(-50%, -50%);
  animation: cursorPulse 2.8s ease-in-out infinite;
}

.cursor-core {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #ffffff, #f96aff 55%, #ad00ff);
  box-shadow:
    0 0 16px rgba(255, 255, 255, 0.34),
    0 0 28px rgba(173, 0, 255, 0.28);
  transform: translate(-50%, -50%);
}

.cursor-satellite {
  width: 14px;
  height: 14px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.92) 0, rgba(249, 106, 255, 0.82) 42%, rgba(173, 0, 255, 0.2) 100%);
  box-shadow:
    0 0 16px rgba(249, 106, 255, 0.35),
    0 0 28px rgba(173, 0, 255, 0.18);
  opacity: 0.9;
}

.satellite-1 {
  animation: orbitCursor1 6s linear infinite;
}

.satellite-2 {
  width: 10px;
  height: 10px;
  opacity: 0.75;
  animation: orbitCursor2 8s linear infinite reverse;
}

.satellite-3 {
  width: 8px;
  height: 8px;
  opacity: 0.55;
  animation: orbitCursor3 5.4s ease-in-out infinite;
}

.aurora {
  filter: blur(55px);
  mix-blend-mode: screen;
  opacity: 0.5;
  animation: auroraDrift var(--dur) ease-in-out infinite alternate;
}

.aurora-1 {
  top: 10%;
  left: 6%;
  width: 44vw;
  height: 30vw;
  min-width: 320px;
  min-height: 240px;
  background:
    radial-gradient(circle at 30% 45%, rgba(249, 106, 255, 0.44), transparent 45%),
    radial-gradient(circle at 72% 35%, rgba(173, 0, 255, 0.36), transparent 42%);
  --dur: 15s;
}

.aurora-2 {
  top: 2%;
  right: -8%;
  width: 38vw;
  height: 28vw;
  min-width: 280px;
  min-height: 220px;
  background:
    radial-gradient(circle at 35% 40%, rgba(255, 255, 255, 0.16), transparent 30%),
    radial-gradient(circle at 64% 48%, rgba(173, 0, 255, 0.38), transparent 48%);
  --dur: 18s;
  animation-direction: alternate-reverse;
}

.aurora-3 {
  left: 36%;
  bottom: -10%;
  width: 42vw;
  height: 24vw;
  min-width: 320px;
  min-height: 180px;
  background:
    radial-gradient(circle at 50% 40%, rgba(124, 61, 253, 0.28), transparent 42%),
    radial-gradient(circle at 30% 60%, rgba(249, 106, 255, 0.22), transparent 48%);
  --dur: 16s;
}

.light-beam {
  top: -25%;
  width: 18vw;
  min-width: 150px;
  height: 150%;
  opacity: 0.2;
  filter: blur(10px);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.16) 12%,
    rgba(249, 106, 255, 0.24) 48%,
    rgba(173, 0, 255, 0)
  );
  transform: rotate(14deg);
  mix-blend-mode: screen;
  animation: beamSweep var(--dur) linear infinite;
  --beam-rotate: 14deg;
}

.beam-1 {
  left: 10%;
  --dur: 14s;
}

.beam-2 {
  left: 52%;
  width: 12vw;
  min-width: 120px;
  opacity: 0.12;
  --beam-rotate: -18deg;
  animation-duration: 18s;
  animation-delay: -6s;
}

.beam-3 {
  right: 12%;
  width: 16vw;
  min-width: 130px;
  opacity: 0.14;
  --beam-rotate: 22deg;
  animation-duration: 16s;
  animation-delay: -3s;
}

.halo {
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 60px rgba(255, 255, 255, 0.02),
    0 0 90px rgba(173, 0, 255, 0.08);
  animation: spinHalo var(--dur) linear infinite;
}

.halo::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border-top: 1px solid rgba(249, 106, 255, 0.32);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transform: rotate(18deg);
}

.halo-1 {
  width: 30vw;
  height: 30vw;
  max-width: 480px;
  max-height: 480px;
  left: -8vw;
  top: 24%;
  --dur: 28s;
}

.halo-2 {
  width: 24vw;
  height: 24vw;
  max-width: 360px;
  max-height: 360px;
  right: 4vw;
  top: 12%;
  --dur: 22s;
  animation-direction: reverse;
}

.grid-wave {
  left: -10%;
  right: -10%;
  bottom: -28%;
  height: 52vh;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 106, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  transform-origin: center top;
  transform:
    perspective(1000px)
    rotateX(76deg)
    translate3d(calc(var(--pointer-x) * -0.012), calc(var(--pointer-y) * -0.012), 0);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), transparent 82%);
  opacity: 0.42;
  animation: gridDrift 16s linear infinite;
}

.spark-layer {
  inset: -10%;
  opacity: 0.4;
  background-repeat: repeat;
  mix-blend-mode: screen;
}

.spark-layer-1 {
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.55) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(249, 106, 255, 0.48) 0 1.4px, transparent 2px),
    radial-gradient(circle, rgba(173, 0, 255, 0.3) 0 1px, transparent 1.8px);
  background-size: 180px 180px, 240px 240px, 320px 320px;
  background-position: 0 0, 50px 80px, 130px 20px;
  animation: sparkFloat 22s linear infinite;
}

.spark-layer-2 {
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.38) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(249, 106, 255, 0.2) 0 1px, transparent 1.5px);
  background-size: 220px 220px, 300px 300px;
  background-position: 20px 40px, 120px 130px;
  opacity: 0.26;
  animation: sparkFloatReverse 28s linear infinite;
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  z-index: 0;
  animation: floatOrb var(--dur) ease-in-out infinite alternate;
}

.orb-1 {
  width: 360px;
  height: 360px;
  top: -120px;
  left: -80px;
  background: rgba(173, 0, 255, 0.42);
  --dur: 8s;
}

.orb-2 {
  width: 320px;
  height: 320px;
  right: -80px;
  bottom: -100px;
  background: rgba(249, 106, 255, 0.28);
  --dur: 12s;
}

.orb-3 {
  width: 220px;
  height: 220px;
  top: 42%;
  left: 62%;
  background: rgba(255, 255, 255, 0.12);
  --dur: 10s;
}

.page-shell {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.topbar {
  width: min(1120px, 100%);
  margin: 0 auto 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: clamp(220px, 24vw, 340px);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 28px rgba(173, 0, 255, 0.24));
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.instagram-link:hover {
  transform: translateY(-2px);
  border-color: rgba(249, 106, 255, 0.44);
  box-shadow: 0 12px 24px rgba(173, 0, 255, 0.18);
}

.hero-card {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(1.8rem, 4vw, 3.5rem);
  border-radius: 32px;
  /* border: 1px solid var(--line); */
  /* background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--bg-elevated);
  backdrop-filter: blur(26px); */
  /* box-shadow:
    0 24px 80px rgba(8, 4, 18, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.12); */
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: var(--accent-faint);
  border: 1px solid rgba(249, 106, 255, 0.22);
  color: #f0c8ff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.headline {
  max-width: 860px;
  margin-top: 1.35rem;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.6rem, 6.6vw, 5.8rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.headline em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(90deg, #ffffff 10%, var(--accent-soft) 48%, #ffd2ff 90%);
  -webkit-background-clip: text;
  background-clip: text;
}

.sub {
  max-width: 680px;
  margin-top: 1.2rem;
  color: var(--text-dim);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.75;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 0.92rem;
  font-weight: 700;
}

.notify {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.3rem;
  max-width: 620px;
}

.phone-wrap {
  flex: 1;
  min-width: 250px;
  display: flex;
  align-items: center;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.phone-wrap:focus-within {
  border-color: rgba(249, 106, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(173, 0, 255, 0.12);
}

.phone-code {
  padding: 1rem 1rem 1rem 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.82rem;
  font-weight: 800;
  color: #f3cbff;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}

.notify input[type="tel"] {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  padding: 1rem 1.15rem;
}

.notify input[type="tel"]::placeholder {
  color: var(--text-faint);
}

.notify button {
  min-height: 58px;
  border: 0;
  border-radius: 18px;
  padding: 0 1.45rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: var(--text);
  font-family: "Syne", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 18px 38px rgba(173, 0, 255, 0.3);
}

.notify button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(173, 0, 255, 0.36);
}

.notify button:disabled {
  cursor: not-allowed;
  opacity: 0.8;
}

.notify button.is-success {
  background: linear-gradient(135deg, #7d3dfd, #c74cff);
}

.msg {
  min-height: 1.4rem;
  margin-top: 0.9rem;
  color: #ffd2ff;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.msg.show {
  opacity: 1;
}

.msg.err {
  color: #ff9cbc;
}

.footer {
  position: fixed;
  left: 50%;
  bottom: 1.6rem;
  z-index: 2;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes floatOrb {
  from {
    transform: translate3d(calc(var(--pointer-x) * -0.012), calc(var(--pointer-y) * -0.012), 0) scale(1);
  }

  to {
    transform: translate3d(calc(18px + var(--pointer-x) * -0.012), calc(28px + var(--pointer-y) * -0.012), 0) scale(1.08);
  }
}

@keyframes pulseMesh {
  from {
    transform: scale(1);
    opacity: 0.95;
  }

  to {
    transform: scale(1.06);
    opacity: 0.84;
  }
}

@keyframes auroraDrift {
  from {
    transform: translate3d(calc(var(--pointer-x) * 0.018), calc(var(--pointer-y) * 0.018), 0) rotate(0deg) scale(1);
  }

  to {
    transform: translate3d(calc(32px + var(--pointer-x) * 0.018), calc(-24px + var(--pointer-y) * 0.018), 0) rotate(10deg) scale(1.12);
  }
}

@keyframes beamSweep {
  0% {
    transform: translate3d(-30px, -20px, 0) rotate(var(--beam-rotate));
    opacity: 0;
  }

  18% {
    opacity: 0.18;
  }

  50% {
    transform: translate3d(30px, 25px, 0) rotate(var(--beam-rotate));
    opacity: 0.24;
  }

  100% {
    transform: translate3d(90px, 80px, 0) rotate(var(--beam-rotate));
    opacity: 0;
  }
}

@keyframes cursorPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.82;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.18);
    opacity: 0.46;
  }
}

@keyframes orbitCursor1 {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateX(34px) scale(1);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg) translateX(34px) scale(1);
  }
}

@keyframes orbitCursor2 {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateX(56px) scale(0.8);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg) translateX(56px) scale(1.12);
  }
}

@keyframes orbitCursor3 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(22px) scale(0.8);
  }

  50% {
    transform: translate(-50%, -50%) rotate(180deg) translateX(46px) scale(1.08);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateX(22px) scale(0.8);
  }
}

@keyframes spinHalo {
  from {
    transform: translate3d(calc(var(--pointer-x) * -0.015), calc(var(--pointer-y) * -0.015), 0) rotate(0deg);
  }

  to {
    transform: translate3d(calc(var(--pointer-x) * -0.015), calc(var(--pointer-y) * -0.015), 0) rotate(360deg);
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 0 72px, 72px 0;
  }
}

@keyframes sparkFloat {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-90px, -60px, 0) scale(1.08);
  }
}

@keyframes sparkFloatReverse {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(70px, -80px, 0) scale(1.06);
  }
}

@media (max-width: 800px) {
  .page-shell {
    padding: 1.25rem;
  }

  .aurora {
    opacity: 0.34;
  }

  .light-beam {
    opacity: 0.12;
  }

  .grid-wave {
    height: 40vh;
    opacity: 0.28;
  }

  .topbar {
    margin-bottom: 1.2rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logo {
    width: min(300px, 70vw);
  }

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

  .notify button,
  .phone-wrap {
    width: 100%;
  }

  .footer {
    width: calc(100% - 2rem);
    text-align: center;
  }
}

@media (max-width: 560px) {
  html,
  body {
    overflow-y: auto;
  }

  .halo,
  .beam-3,
  .cursor-plushies {
    display: none;
  }

  .page-shell {
    min-height: auto;
    padding-bottom: 5rem;
  }

  .hero-card {
    padding: 1.45rem;
  }

  .instagram-link {
    width: 100%;
  }

  .tag-row {
    gap: 0.7rem;
  }

  .tag {
    width: 100%;
    justify-content: center;
  }

  .phone-wrap {
    min-width: 100%;
  }

  .footer {
    position: static;
    transform: none;
    margin: 1.5rem auto 0;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-plushies {
    display: none;
  }
}
