:root {
  color-scheme: dark;
  --ink: #f4f5f7;
  --muted: rgba(244, 245, 247, 0.72);
  --accent: #5ee7c0;
  --accent-strong: #3cc4ff;
  --glass: rgba(10, 18, 28, 0.62);
  --stroke: rgba(255, 255, 255, 0.12);
  --shadow: rgba(5, 10, 18, 0.55);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background: #070a0f;
  color: var(--ink);
  overflow: hidden;
}

.app {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(24px, 6vw, 80px);
}

.video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
}

.video--background {
  z-index: 1;
  opacity: 1;
  filter: saturate(1.1) contrast(1.05);
  transition: opacity 1.2s ease;
}

@media (max-width: 720px) {
}
