:root {
  --bg: oklch(0.08 0.003 260);
  --panel: oklch(0.14 0.004 260 / 0.9);
  --line: oklch(0.34 0.01 260 / 0.28);
  --text: oklch(0.97 0.003 100);
  --muted: oklch(0.8 0.01 100);
  --focus: oklch(0.78 0.03 95);
  --shadow: 0 28px 80px oklch(0.02 0.002 260 / 0.55);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Barlow", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, oklch(0.14 0.01 260 / 0.45), transparent 28%),
    linear-gradient(180deg, oklch(0.06 0.002 260), oklch(0.09 0.003 260));
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.landing {
  min-height: 100vh;
  padding: 20px 16px 28px;
}

.utility-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.utility-links a {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: oklch(0.16 0.004 260 / 0.7);
  color: var(--muted);
  font-size: 0.95rem;
  transition: border-color 180ms ease-out, color 180ms ease-out, transform 180ms ease-out;
}

.utility-links a:hover {
  transform: translateY(-1px);
  color: var(--text);
  border-color: oklch(0.85 0.01 100 / 0.35);
}

.poster-stage {
  display: flex;
  justify-content: center;
}

.poster-card {
  position: relative;
  width: min(1536px, calc(100vw - 32px));
  margin: 0;
  aspect-ratio: 3 / 2;
  background: #000;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.poster-art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotspot {
  position: absolute;
  display: block;
  border-radius: 999px;
  outline: none;
}

.hotspot-email {
  left: 30.5%;
  top: 81.4%;
  width: 23.2%;
  height: 8.3%;
}

.hotspot-phone {
  left: 53.9%;
  top: 81.4%;
  width: 22.8%;
  height: 8.3%;
}

.hotspot:focus-visible {
  box-shadow: 0 0 0 3px var(--focus), 0 0 0 8px oklch(0.07 0.003 260 / 0.88);
}

.mobile-panel {
  display: none;
}

@media (max-width: 860px) {
  .landing {
    padding-inline: 10px;
  }

  .utility-links {
    flex-wrap: wrap;
    margin-bottom: 12px;
  }

  .poster-card {
    width: min(1536px, calc(100vw - 20px));
  }
}

@media (max-width: 720px) {
  .utility-links {
    justify-content: flex-start;
  }

  .utility-links a {
    font-size: 0.9rem;
  }

  .mobile-panel {
    display: block;
    max-width: 38rem;
    margin: 18px auto 0;
    padding: 22px 18px;
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: var(--shadow);
  }

  .mobile-kicker {
    margin: 0;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font: 700 0.76rem/1 "Oswald", sans-serif;
  }

  .mobile-panel h2 {
    margin: 12px 0 0;
    font: 700 clamp(2rem, 9vw, 3rem)/0.95 "Oswald", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .mobile-copy {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
  }

  .mobile-actions {
    display: grid;
    gap: 12px;
    margin-top: 18px;
  }

  .mobile-actions a {
    display: block;
    padding: 14px 16px;
    border: 1px solid var(--line);
    background: oklch(0.18 0.004 260 / 0.85);
    color: var(--text);
    text-align: center;
    font-weight: 600;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
