:root {
  --ink: #050505;
  --paper: #ffffff;
  --muted: #54545b;
  --line: #cfcfd5;
  --violet: #5b20e6;
  --violet-dark: #3c0ead;
  --cyan: #04c9ff;
  --acid: #c7ff1a;
  --shadow: 0 24px 60px rgba(5, 5, 5, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

button,
input {
  font: inherit;
}

.page-shell {
  width: min(1520px, calc(100vw - 56px));
  margin: 0 auto;
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(300px, 0.5fr) minmax(360px, 0.65fr);
  gap: clamp(22px, 2.4vw, 42px);
  padding: clamp(22px, 3vw, 44px) 0 clamp(48px, 5vw, 84px);
  align-items: start;
}

.topline {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin: 0 0 clamp(26px, 3vw, 48px);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(10px, 0.9vw, 12px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--violet);
}

.topline span {
  position: relative;
}

.topline span + span::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  left: -11px;
  top: 50%;
  transform: translateY(-50%);
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 760px;
  font-family: "Bebas Neue", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(72px, 9.2vw, 168px);
  line-height: 0.82;
  font-weight: 400;
  text-transform: uppercase;
}

h1 span {
  display: block;
  color: var(--violet);
}

.intro {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin-top: clamp(26px, 3vw, 42px);
  padding-left: 4px;
}

.intro p {
  max-width: 620px;
  font-size: clamp(17px, 1.55vw, 24px);
  line-height: 1.24;
  font-weight: 600;
}

.intro p + p {
  max-width: 580px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(23px, 2.2vw, 36px);
  line-height: 1.04;
  font-weight: 400;
}

.signup-form {
  width: 100%;
  margin-top: clamp(52px, 6vw, 96px);
  padding-top: 22px;
  border-top: 2px solid var(--ink);
}

.event-meta {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.event-meta div {
  display: grid;
  gap: 5px;
}

.event-meta span {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--violet);
}

.event-meta strong {
  font-family: "Bebas Neue", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(26px, 2.3vw, 36px);
  line-height: 0.95;
  font-weight: 400;
  text-transform: uppercase;
}

.event-meta em {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  font-style: normal;
}

.form-heading {
  margin-bottom: 20px;
}

.form-heading h2,
.details h2 {
  font-family: "Bebas Neue", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 0.92;
  font-weight: 400;
  text-transform: uppercase;
}

.form-heading p {
  max-width: 520px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.signup-form label {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.signup-form label span {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.signup-form input {
  width: 100%;
  min-height: 54px;
  border: 1.5px solid var(--ink);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  padding: 0 16px;
  font-size: 16px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.signup-form input::placeholder {
  color: #9a9aa2;
}

.signup-form input:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(91, 32, 230, 0.13);
}

.site-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.signup-form button {
  width: 100%;
  min-height: 68px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border: 0;
  border-radius: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 0 23px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 160ms ease, background 160ms ease;
}

.signup-form button span {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.signup-form button svg {
  width: 42px;
  height: 42px;
  color: var(--acid);
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.signup-form button:hover {
  transform: translateY(-2px);
  background: var(--violet-dark);
}

.signup-form button:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.form-note {
  min-height: 44px;
  margin-top: 17px;
  display: flex;
  align-items: center;
  border-left: 4px solid var(--cyan);
  padding-left: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.form-note.is-success {
  border-left-color: var(--acid);
  color: var(--ink);
  font-weight: 700;
}

.form-note.is-error {
  border-left-color: var(--violet);
  color: var(--violet-dark);
  font-weight: 700;
}

.film-strip {
  position: sticky;
  top: 20px;
  height: calc(100vh - 40px);
  min-height: 760px;
  overflow: hidden;
  background: #050505;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.film-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.film-strip::before,
.film-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.film-strip::before {
  border: 1px solid rgba(255, 255, 255, 0.18);
  z-index: 2;
}

.film-strip::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 9%, transparent 88%, rgba(0, 0, 0, 0.52)),
    linear-gradient(90deg, rgba(4, 201, 255, 0.2), transparent 13%, transparent 87%, rgba(199, 255, 26, 0.12));
  mix-blend-mode: screen;
  opacity: 0.58;
  z-index: 3;
}

.scanline {
  position: absolute;
  left: 0;
  right: 0;
  top: -30%;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(199, 255, 26, 0.15), transparent);
  animation: scan 8s linear infinite;
  z-index: 4;
  pointer-events: none;
}

.details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 72px);
  padding: clamp(52px, 7vw, 96px) 0;
  border-top: 1px solid var(--line);
}

.details article {
  min-height: 220px;
  border-left: 1px solid var(--line);
  padding-left: clamp(22px, 3vw, 42px);
}

.details article > span {
  display: block;
  width: 54px;
  height: 4px;
  margin-bottom: 26px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
}

.details p,
.details li {
  color: #25252b;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.48;
}

.details p,
.details ul {
  margin-top: 22px;
}

.details ul {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.details li {
  position: relative;
  padding-left: 34px;
}

.details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 17px;
  height: 17px;
  border-top: 2px solid var(--violet);
  border-right: 2px solid var(--violet);
  transform: rotate(45deg);
}

.location {
  display: grid;
  grid-template-columns: minmax(180px, 300px) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 78px);
  align-items: center;
  padding: clamp(28px, 4vw, 48px) 0;
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
}

.map-mark svg {
  width: 100%;
  max-width: 260px;
  fill: none;
  stroke: var(--violet);
  stroke-width: 4;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.map-mark circle {
  fill: var(--violet);
}

.location p {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--violet);
}

.location h2 {
  margin-top: 8px;
  font-family: "Bebas Neue", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(36px, 5.8vw, 86px);
  line-height: 0.9;
  font-weight: 400;
  text-transform: uppercase;
}

.location span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
}

footer {
  width: min(1520px, calc(100vw - 56px));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  color: #3b3b42;
}

@keyframes scan {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(430%);
  }
}

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

  .film-strip {
    position: relative;
    top: auto;
    height: min(78vw, 760px);
    min-height: 520px;
    order: -1;
  }

  .hero-copy {
    display: contents;
  }

  .topline,
  h1,
  .intro,
  .signup-form {
    width: min(100%, 760px);
  }

  .signup-form {
    margin-top: 30px;
  }

  .details {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 32px;
  }

  .details article {
    min-height: 0;
    padding: 34px 0 38px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .details article:first-child {
    border-top: 0;
  }
}

@media (max-width: 680px) {
  .page-shell,
  footer {
    width: min(100vw - 28px, 1520px);
  }

  .hero {
    min-height: auto;
    padding-top: 14px;
    gap: 24px;
  }

  .topline {
    grid-template-columns: 1fr;
    gap: 7px;
    margin-bottom: 20px;
  }

  .topline span + span::before {
    display: none;
  }

  h1 {
    font-size: clamp(64px, 20vw, 104px);
  }

  .intro {
    margin-top: 22px;
  }

  .intro p {
    font-size: 17px;
  }

  .intro p + p {
    font-size: 27px;
  }

  .signup-form {
    margin-top: 30px;
  }

  .signup-form button {
    min-height: 62px;
  }

  .film-strip {
    height: 95vw;
    min-height: 0;
  }

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

  .map-mark svg {
    max-width: 210px;
  }

  footer {
    min-height: 88px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
