:root {
  --void-black: #020204;
  --void-soft: #0b0b10;
  --acid-green: #ccff00;
  --fuchsia: #ff2dbd;
  --toxic-cyan: #00eff7;
  --signal-red: #ff355e;
  --ink: #f2f3f5;
  --line: rgba(255, 255, 255, 0.18);
  --glass: rgba(7, 8, 14, 0.55);
  --radius: 16px;
  --mouse-x: 50vw;
  --mouse-y: 50vh;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Arial Black", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 45, 189, 0.17), transparent 36%),
    radial-gradient(circle at 88% 80%, rgba(0, 239, 247, 0.16), transparent 34%),
    linear-gradient(180deg, var(--void-soft), var(--void-black) 30%, #000 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  background: radial-gradient(
    260px circle at var(--mouse-x) var(--mouse-y),
    rgba(204, 255, 0, 0.14),
    rgba(0, 0, 0, 0) 70%
  );
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.noise-layer {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.18;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 50%, rgba(0, 0, 0, 0.12) 50%),
    url("img/asset_9.jpg") center / cover no-repeat;
  animation: noise-shift 1.8s steps(4) infinite;
}

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--acid-green);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 110;
  mix-blend-mode: difference;
  transition: width 120ms ease, height 120ms ease, border-color 120ms ease;
}

.cursor.is-active {
  width: 46px;
  height: 46px;
  border-color: var(--fuchsia);
}

.glass {
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.topbar {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 26px));
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 999px;
  z-index: 90;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--acid-green);
}

.brand svg {
  width: 46px;
  height: 16px;
}

.topbar-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 20px;
  font-size: 0.88rem;
}

.topbar-links a {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.topbar-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--acid-green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 140ms ease;
}

.topbar-links a:hover::after,
.topbar-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header {
  position: relative;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: clamp(100px, 12vw, 150px) clamp(16px, 4vw, 56px) 70px;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -2;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.6) 72%),
    linear-gradient(90deg, rgba(255, 45, 189, 0.16), rgba(0, 239, 247, 0.08) 45%, rgba(0, 0, 0, 0.6));
  mix-blend-mode: screen;
}

.hero-layer {
  position: absolute;
  inset: -6%;
  width: 112%;
  height: 112%;
  object-fit: cover;
  opacity: 0.46;
  filter: saturate(1.15) contrast(1.05);
}

.hero-layer-1 {
  animation: drift-a 16s linear infinite;
}

.hero-layer-2 {
  mix-blend-mode: screen;
  opacity: 0.36;
  animation: drift-b 18s linear infinite;
}

.hero-layer-3 {
  mix-blend-mode: color-dodge;
  opacity: 0.24;
  animation: drift-c 22s linear infinite;
}

.hero-content {
  max-width: min(860px, 100%);
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--acid-green);
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.glitch-title {
  margin: 0;
  position: relative;
  font-size: clamp(2.2rem, 7.6vw, 5.8rem);
  line-height: 0.92;
  text-transform: uppercase;
  max-width: 11ch;
  letter-spacing: 0.02em;
  animation: flicker 4s infinite;
  text-wrap: balance;
}

.glitch-title::before,
.glitch-title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.glitch-title::before {
  color: var(--fuchsia);
  transform: translate(1px, 0);
  mix-blend-mode: screen;
  animation: glitch-a 3.5s infinite;
}

.glitch-title::after {
  color: var(--toxic-cyan);
  transform: translate(-1px, 0);
  mix-blend-mode: screen;
  animation: glitch-b 2.7s infinite;
}

.glitch-title.is-glitching {
  text-shadow: 2px 0 var(--signal-red), -2px 0 var(--toxic-cyan), 0 0 18px rgba(255, 45, 189, 0.6);
}

.hero-text {
  margin: 22px 0 0;
  max-width: 62ch;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.62;
  font-family: "Segoe UI", sans-serif;
}

.hero-text-muted {
  color: rgba(242, 243, 245, 0.72);
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 18px;
  color: #050505;
  background: linear-gradient(120deg, var(--acid-green), #faff91);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 120ms ease, box-shadow 120ms ease, filter 120ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(204, 255, 0, 0.75), 0 12px 24px rgba(204, 255, 0, 0.18);
}

.btn:focus-visible {
  outline: 2px solid var(--toxic-cyan);
  outline-offset: 2px;
}

.btn:disabled {
  cursor: wait;
  opacity: 0.74;
  transform: none;
  box-shadow: none;
}

.btn-small {
  padding: 9px 14px;
  font-size: 0.74rem;
}

.btn-ghost {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.section {
  width: min(1120px, calc(100% - 26px));
  margin: 0 auto;
  padding: clamp(62px, 9vw, 104px) 0;
  position: relative;
  z-index: 6;
}

.section-head {
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 3.8rem);
  text-transform: uppercase;
  line-height: 0.95;
}

.manifest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.manifest-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 2.6vw, 24px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(10, 10, 12, 0.72);
}

.manifest-card h3 {
  margin: 0;
  color: var(--toxic-cyan);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.manifest-card p {
  margin: 10px 0 0;
  font-family: "Segoe UI", sans-serif;
  line-height: 1.62;
  color: rgba(242, 243, 245, 0.86);
}

.bento-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(136px, auto);
}

.award-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 20px;
  background: rgba(6, 7, 12, 0.86);
  transition: transform 130ms ease, border-color 130ms ease, filter 130ms ease;
}

.award-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.2)),
    var(--card-image) center / cover no-repeat;
  filter: saturate(1.12) contrast(1.1);
  opacity: 0.58;
  transform: scale(1.03);
}

.award-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 45, 189, 0.2), rgba(0, 239, 247, 0.16), transparent);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 130ms ease;
}

.award-card > * {
  position: relative;
  z-index: 2;
}

.award-card h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 1px 0 var(--signal-red), -1px 0 var(--toxic-cyan);
}

.award-card p {
  margin: 9px 0 0;
  font-family: "Segoe UI", sans-serif;
  color: rgba(242, 243, 245, 0.88);
  line-height: 1.45;
}

.award-card:hover,
.award-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(255, 45, 189, 0.66);
  filter: saturate(1.12);
}

.award-card:hover::after,
.award-card:focus-within::after {
  opacity: 1;
}

.award-card:hover h3,
.award-card:focus-within h3 {
  animation: text-jitter 260ms linear 2;
}

.bento-grid .award-card:nth-child(1),
.bento-grid .award-card:nth-child(4),
.bento-grid .award-card:nth-child(9) {
  grid-column: span 4;
}

.bento-grid .award-card:nth-child(2),
.bento-grid .award-card:nth-child(3),
.bento-grid .award-card:nth-child(5),
.bento-grid .award-card:nth-child(6),
.bento-grid .award-card:nth-child(7),
.bento-grid .award-card:nth-child(8) {
  grid-column: span 4;
}

.rules-list {
  border-top: 1px solid var(--line);
}

.rules-list details {
  border-bottom: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.46);
}

.rules-list summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 42px 16px 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
}

.rules-list summary::-webkit-details-marker {
  display: none;
}

.rules-list summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--acid-green);
  font-size: 1.2rem;
}

.rules-list details[open] summary::after {
  content: "-";
  color: var(--fuchsia);
}

.rules-list p {
  margin: 0;
  padding: 0 8px 16px;
  font-family: "Segoe UI", sans-serif;
  color: rgba(242, 243, 245, 0.86);
  line-height: 1.6;
}

.submit-wrap {
  padding: clamp(18px, 3vw, 28px);
  border-radius: 22px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(255, 45, 189, 0.08), rgba(0, 239, 247, 0.06), rgba(0, 0, 0, 0.18)),
    rgba(8, 9, 13, 0.58);
}

.submit-copy h2 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.9rem);
  text-transform: uppercase;
  line-height: 0.95;
}

.submit-copy p {
  margin: 14px 0 0;
  max-width: 42ch;
  font-family: "Segoe UI", sans-serif;
  line-height: 1.62;
}

.submit-copy a {
  color: var(--acid-green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.submit-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.submit-form label {
  display: grid;
  gap: 6px;
  font-family: "Segoe UI", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.submit-form input,
.submit-form textarea,
.submit-form select {
  border: 1px solid var(--line);
  background: rgba(7, 8, 14, 0.8);
  border-radius: 12px;
  color: var(--ink);
  padding: 10px 12px;
  font: inherit;
}

.submit-form input:focus,
.submit-form textarea:focus,
.submit-form select:focus {
  outline: 1px solid var(--toxic-cyan);
  outline-offset: 1px;
}

.submit-form textarea {
  resize: vertical;
  min-height: 132px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.full-width {
  grid-column: 1 / -1;
}

.form-status {
  margin: 2px 0 0;
  min-height: 1.5em;
  font-family: "Segoe UI", sans-serif;
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(242, 243, 245, 0.88);
}

.form-status.is-success {
  color: var(--acid-green);
}

.form-status.is-error {
  color: #ff7d7d;
}

.consent {
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: none;
  letter-spacing: 0;
}

.consent input {
  margin: 0;
  width: 16px;
  height: 16px;
}

.site-footer {
  width: min(1120px, calc(100% - 26px));
  margin: 0 auto;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.86rem;
  color: rgba(242, 243, 245, 0.76);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift-a {
  0%,
  100% {
    transform: scale(1.07) translate3d(-1%, 0, 0);
  }
  50% {
    transform: scale(1.14) translate3d(2%, -1%, 0);
  }
}

@keyframes drift-b {
  0%,
  100% {
    transform: scale(1.08) translate3d(0, 1%, 0);
  }
  50% {
    transform: scale(1.12) translate3d(-2%, -2%, 0);
  }
}

@keyframes drift-c {
  0%,
  100% {
    transform: scale(1.06) translate3d(0, -1%, 0);
  }
  50% {
    transform: scale(1.15) translate3d(1.5%, 1%, 0);
  }
}

@keyframes flicker {
  0%,
  14%,
  16%,
  100% {
    opacity: 1;
  }
  15% {
    opacity: 0.87;
  }
}

@keyframes glitch-a {
  0%,
  100% {
    clip-path: inset(0 0 0 0);
  }
  33% {
    clip-path: inset(5% 0 58% 0);
    transform: translate(2px, -1px);
  }
  66% {
    clip-path: inset(68% 0 10% 0);
    transform: translate(-2px, 1px);
  }
}

@keyframes glitch-b {
  0%,
  100% {
    clip-path: inset(0 0 0 0);
  }
  25% {
    clip-path: inset(14% 0 55% 0);
    transform: translate(-2px, 1px);
  }
  70% {
    clip-path: inset(54% 0 18% 0);
    transform: translate(2px, -1px);
  }
}

@keyframes noise-shift {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-1%, 1%);
  }
  60% {
    transform: translate(1%, -0.8%);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes text-jitter {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-1.4px);
  }
  50% {
    transform: translateX(1.8px);
  }
  75% {
    transform: translateX(-1.1px);
  }
}

@media (max-width: 980px) {
  .manifest-grid,
  .submit-wrap {
    grid-template-columns: 1fr;
  }

  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bento-grid .award-card {
    grid-column: span 1 !important;
  }

  .topbar-links {
    display: none;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: 92vh;
    padding-top: 104px;
  }

  .submit-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }
}

@media (pointer: coarse) {
  .cursor {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}

.thanks-page {
  display: grid;
  place-items: center;
  padding: 22px;
}

.thanks-panel {
  width: min(760px, 100%);
  border-radius: 22px;
  padding: clamp(22px, 4vw, 36px);
  position: relative;
  z-index: 8;
}

.thanks-panel h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.thanks-panel p {
  margin: 12px 0 0;
  max-width: 56ch;
  font-family: "Segoe UI", sans-serif;
  line-height: 1.62;
}

.thanks-panel p a {
  color: var(--acid-green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.thanks-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
