:root {
  --purple: #d796ff;
  --blue: #5f82f5;
  --yellow: #ffeb50;
  --ink: #1d1d1b;
  --anthra: #373737;
  --canvas: #08090a;
  --panel: #0f1011;
  --elevated: #191a1b;
  --text: #f7f8f8;
  --muted: #8a8f98;
  --font-ui: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --font-display: "Anybody", "Avenir Next Condensed", "Arial Narrow", sans-serif;
  --font-serif: "Source Serif 4", "Iowan Old Style", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.5;
}

img { max-width: 100%; height: auto; }
a { color: var(--yellow); }
a:hover { color: var(--purple); }

.ceiling {
  height: 7px;
  background:
    linear-gradient(var(--blue) 0 5px, transparent 5px) top / 100% 7px no-repeat,
    linear-gradient(var(--purple) 0 2px, transparent 2px) 0 5px / 100% 7px no-repeat;
}

.wrap {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.site-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 14px;
  flex-wrap: wrap;
}
.logo {
  font-family: var(--font-display);
  font-stretch: 75%;
  font-weight: 800;
  font-size: 28px;
  color: var(--yellow);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.logo:hover { color: var(--yellow); }
.verbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.verb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  background: var(--purple);
  color: var(--yellow);
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.45),
    inset 2px 0 0 rgba(255,255,255,0.28),
    inset 0 -3px 0 rgba(0,0,0,0.55),
    inset -3px 0 0 rgba(0,0,0,0.45),
    2px 2px 0 rgba(0,0,0,0.5);
}
.verb:hover { color: var(--ink); background: var(--yellow); }
.verb.ghost {
  background: var(--elevated);
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  padding: 28px 0 48px;
}
.kicker {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
h1 {
  font-family: var(--font-display);
  font-stretch: 70%;
  font-weight: 800;
  font-size: clamp(56px, 10vw, 104px);
  line-height: 0.85;
  margin: 0 0 10px;
  color: var(--purple);
  letter-spacing: -0.03em;
}
.sub {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--text);
  margin: 0 0 18px;
}
.sub em { color: var(--yellow); font-style: normal; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}
.chip {
  border: 1px solid var(--blue);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 8px;
}

.dialogue {
  background: var(--ink);
  border: 3px solid var(--yellow);
  padding: 14px 16px 18px;
  position: relative;
  max-width: 540px;
}
.dialogue p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}
.dialogue .tail {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--yellow);
  opacity: 0.85;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }

.stage {
  position: relative;
  min-height: 420px;
}
.device {
  width: min(270px, 72vw);
  background: var(--canvas);
  border: 2px solid var(--ink);
  border-radius: 34px;
  padding: 12px 9px 16px;
  box-shadow:
    inset 0 0 0 2px var(--anthra),
    4px 4px 0 var(--purple);
}
.device img {
  display: block;
  width: 100%;
  border-radius: 24px;
  background: var(--panel);
}
.device.front { position: relative; z-index: 2; }
.device.back {
  position: absolute;
  right: 0;
  top: 48px;
  z-index: 1;
  transform: rotate(4deg);
  box-shadow:
    inset 0 0 0 2px var(--anthra),
    4px 4px 0 var(--blue);
}

.panel {
  background: var(--panel);
  border: 2px solid rgba(95,130,245,0.7);
  box-shadow: 3px 3px 0 rgba(215,150,255,0.25);
  padding: 18px;
}

h2 {
  font-family: var(--font-display);
  font-stretch: 75%;
  font-weight: 800;
  font-size: clamp(32px, 6vw, 48px);
  color: var(--purple);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
h3 {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 8px;
}
.lead {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--muted);
  max-width: 62ch;
  margin: 0 0 28px;
}

.rooms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 48px;
}
.room {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.room .thumb {
  border: 0;
  box-shadow: none;
  overflow: hidden;
  background: var(--elevated);
}
.room .thumb img { display: block; width: 100%; }
.room .copy { padding: 14px 16px 16px; }
.room p { margin: 0; color: var(--text); font-size: 13.5px; }
.room p strong { color: var(--yellow); font-weight: 700; }

.film {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 0 56px;
}
.film a {
  display: block;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--purple);
  overflow: hidden;
  background: var(--elevated);
}
.film a:hover { box-shadow: 3px 3px 0 var(--yellow); }
.film img { display: block; width: 100%; }
.caption {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px;
  background: var(--ink);
}

.support-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  margin-bottom: 48px;
}
.support-grid p { margin: 0 0 12px; }
.mail {
  display: inline-block;
  margin-top: 6px;
  font-weight: 700;
  font-size: 16px;
  color: var(--yellow);
}

.legal { color: var(--muted); font-size: 13px; }
.legal p { margin: 0 0 10px; }

footer {
  border-top: 2px solid var(--anthra);
  padding: 22px 0 40px;
  color: var(--muted);
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
}
footer a { color: var(--blue); text-decoration: none; }
footer a:hover { color: var(--yellow); }

.page-title { padding: 28px 0 8px; }

@media (max-width: 860px) {
  .hero, .rooms, .support-grid { grid-template-columns: 1fr; }
  .film { grid-template-columns: repeat(2, 1fr); }
  .stage { min-height: 0; display: flex; justify-content: center; }
  .device.back { display: none; }
  h1 { font-size: 64px; }
}
