:root {
  color-scheme: dark;
  --bg: #10070d;
  --text: #fff8ef;
  --muted: #dbc9bb;
  --line: rgba(255, 248, 239, 0.22);
  --focus: rgba(255, 248, 239, 0.9);
  --panel-shadow: rgba(0, 0, 0, 0.46);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@font-face {
  font-family: "Inconsolata";
  src: url("Inconsolata-Bold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  background: transparent;
}

a {
  color: inherit;
}

.site-bg,
.bg-video,
.bg-wash {
  position: fixed;
  inset: 0;
}

.site-bg {
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #10070d;
}

.bg-video {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 700ms ease;
}

.bg-video.is-ready {
  opacity: 1;
}

.bg-wash {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(16, 7, 13, 0.08), rgba(16, 7, 13, 0.34)),
    linear-gradient(90deg, rgba(8, 6, 8, 0.16), rgba(8, 6, 8, 0));
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(388px, calc(100% - 18px));
  margin: 0 auto;
  padding: clamp(24px, 5svh, 52px) 0 18px;
}

.hero-panel {
  position: relative;
  width: min(100%, 388px);
  aspect-ratio: 388 / 630;
  margin: 0 auto;
  border-radius: 21px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 28px 90px var(--panel-shadow);
}

.panel-art {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.primary-links {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.panel-hotspot {
  position: absolute;
  left: 7.22%;
  display: block;
  width: 85.57%;
  height: 8.57%;
  border-radius: 16px;
  color: transparent;
  text-decoration: none;
  pointer-events: auto;
}

.panel-hotspot--meet {
  top: 49.78%;
}

.panel-hotspot--instagram {
  top: 62.48%;
}

.panel-hotspot--world {
  top: 75.18%;
}

.panel-hotspot--storyworld {
  top: 87.88%;
}

.panel-hotspot:hover,
.panel-hotspot:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: -2px;
  background: rgba(255, 255, 255, 0.04);
}

.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;
}

.meet-shell {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 32px));
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(48px, 10svh, 96px) 0 40px;
  display: grid;
  align-content: center;
}

.meet-card {
  padding: clamp(28px, 7vw, 56px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(16, 7, 13, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 12vw, 5.8rem);
  font-weight: 500;
  line-height: 0.95;
}

.lead {
  margin: 22px 0 0;
  color: var(--text);
  font-size: clamp(1.08rem, 2.2vw, 1.35rem);
  line-height: 1.6;
}

.body-copy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 30px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
}

.back-link:hover,
.back-link:focus-visible {
  border-color: var(--focus);
  outline: none;
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 12px, 388px);
    padding: 18px 0 12px;
  }

  .meet-shell {
    width: min(100% - 24px, 720px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bg-video {
    display: none;
  }
}
