:root {
  color-scheme: dark;
  --bg: #030303;
  --fg: #f5f5f5;
  --muted: rgba(245, 245, 245, 0.62);
  --line: rgba(255, 255, 255, 0.1);
  --accent: #9fb8ff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--fg);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body {
  overflow: hidden;
}

.experience {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 70% 42%, rgba(255, 255, 255, 0.14), transparent 18rem),
    radial-gradient(circle at 62% 72%, rgba(55, 95, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 24% 22%, rgba(210, 184, 126, 0.08), transparent 18rem),
    linear-gradient(180deg, #080808 0%, #020202 66%, #000 100%);
}

.experience::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-position: center;
  background-size: clamp(54px, 6vw, 92px) clamp(54px, 6vw, 92px);
  mask-image: radial-gradient(circle at center, black 0%, transparent 76%);
  opacity: 0.48;
}

.experience::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), transparent 34%, transparent 74%, rgba(0, 0, 0, 0.7)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 30%, rgba(0, 0, 0, 0.78));
}

.scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
  touch-action: none;
}

.scene:active {
  cursor: grabbing;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(33rem, calc(100vw - 3rem));
  padding: clamp(1.4rem, 3vw, 3rem);
  padding-top: max(clamp(1.5rem, 6vw, 5rem), env(safe-area-inset-top));
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 11ch;
  color: #fff;
  font-size: clamp(3.2rem, 8.8vw, 7.4rem);
  font-weight: 720;
  line-height: 0.88;
  letter-spacing: 0;
}

.lede {
  margin: 1.25rem 0 0;
  max-width: 30rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  line-height: 1.65;
}

.status-strip {
  position: absolute;
  right: clamp(1rem, 3vw, 2.25rem);
  bottom: max(clamp(1rem, 3vw, 2.25rem), env(safe-area-inset-bottom));
  z-index: 2;
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.68);
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", Menlo, ui-monospace,
    monospace;
  font-size: 0.72rem;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 60px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.status-strip span {
  padding: 0.72rem 0.85rem;
}

.status-strip span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 760px) {
  body {
    overflow: hidden;
  }

  .experience {
    background:
      radial-gradient(circle at 55% 48%, rgba(255, 255, 255, 0.14), transparent 15rem),
      radial-gradient(circle at 54% 74%, rgba(76, 116, 255, 0.18), transparent 20rem),
      linear-gradient(180deg, #090909 0%, #020202 68%, #000 100%);
  }

  .experience::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.52), transparent 36%, rgba(0, 0, 0, 0.68)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 55%);
  }

  .hero-copy {
    width: min(30rem, calc(100vw - 2rem));
    padding: 1.25rem;
    padding-top: max(1.75rem, env(safe-area-inset-top));
  }

  .lede {
    max-width: 23rem;
  }

  .status-strip {
    right: 1rem;
    bottom: max(1rem, env(safe-area-inset-bottom));
  }

  .status-strip span {
    padding: 0.66rem 0.68rem;
  }
}

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