:root {
  --ink: #ffffff;
  --muted: #bcb5da;
  --cyan: #3fe8ff;
  --violet: #8655ff;
  --night: #070410;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--night);
}

body {
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.page-shell {
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(99, 49, 201, 0.23), transparent 28%),
    linear-gradient(145deg, #0b0715 0%, #050308 100%);
}

.hero {
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(460px, 1.08fr);
  min-height: 100svh;
}

.artwork-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: clamp(18px, 3vw, 44px);
  background: #120626;
  isolation: isolate;
}

.artwork-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset -30px 0 70px rgba(7, 4, 16, 0.56);
}

.artwork {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: calc(100svh - clamp(36px, 6vw, 88px));
  object-fit: contain;
  filter: drop-shadow(0 24px 55px rgba(0, 0, 0, 0.45));
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(45px);
  opacity: 0.4;
}

.glow-one {
  width: 42%;
  aspect-ratio: 1;
  top: 2%;
  left: 1%;
  background: #672dff;
}

.glow-two {
  width: 36%;
  aspect-ratio: 1;
  right: 4%;
  bottom: 3%;
  background: #00b9e8;
}

.message-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(38px, 7vw, 104px);
}

.message-panel::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 22%;
  left: 0;
  top: 39%;
  background: linear-gradient(transparent, var(--cyan), transparent);
  box-shadow: 0 0 24px var(--cyan);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #e7e1ff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(63, 232, 255, 0.1), 0 0 14px var(--cyan);
  animation: pulse 2.2s ease-in-out infinite;
}

.copy {
  max-width: 670px;
  margin: clamp(56px, 9vh, 120px) 0;
}

.kicker {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: clamp(0.77rem, 1vw, 0.92rem);
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3rem, 6.5vw, 7rem);
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, #ffffff 0%, #9bf3ff 42%, #9d79ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.description {
  max-width: 590px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.7;
}

.progress {
  max-width: 590px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
  color: #c9c2de;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.progress-label span:last-child {
  color: var(--cyan);
}

.progress-track {
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.progress-track span {
  display: block;
  width: 64%;
  height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  box-shadow: 0 0 18px var(--cyan);
}

.signature {
  margin: 32px 0 0;
  color: #716b84;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signature span {
  margin: 0 8px;
  color: #484053;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.78); }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .artwork-wrap {
    min-height: auto;
    padding: 18px;
  }

  .artwork-wrap::after {
    box-shadow: inset 0 -24px 60px rgba(7, 4, 16, 0.46);
  }

  .artwork {
    width: min(100%, 565px);
    height: auto;
  }

  .message-panel {
    min-height: 72svh;
    padding: 48px clamp(24px, 7vw, 64px) 40px;
  }

  .message-panel::before {
    width: 24%;
    height: 1px;
    left: 38%;
    top: 0;
  }

  .copy {
    margin: 64px 0;
  }
}

@media (max-width: 520px) {
  .artwork-wrap {
    padding: 0;
  }

  .artwork {
    width: 100%;
  }

  .message-panel {
    min-height: 78svh;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .description {
    line-height: 1.58;
  }
}

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