@import "https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap";
:root {
  --color-bg: #0f0c1b;
  --color-text-main: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.7);
  --color-accent: #f87171;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: blur(16px);
  --font-sans: "Outfit", sans-serif;
  --font-display: "rift-soft", sans-serif;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-8: 64px;
  --space-12: 96px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
@media (prefers-reduced-motion: reduce) {
  *,
  :before,
  :after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.scroll-container {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}
.hero-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}
h1 {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0px;
  margin-bottom: var(--space-6);
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #111111;
  padding: 16px 40px;
  position: relative;
  perspective: 1000px;
  pointer-events: auto;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  transform: translateY(-90px);
}
h1:hover, h1.is-hovered {
  transform: translateY(-90px) scale(1.06);
}
h1:active, h1.is-active {
  transform: translateY(-90px) scale(0.95);
}
h1:after {
  display: none;
}
.click-clack-char {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-width: 0.55em;
  height: 1.2em;
  transform-style: preserve-3d;
  will-change: transform;
}
.click-clack-space {
  display: inline-block;
  min-width: 0.4em;
}
.cta-button {
  pointer-events: auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #0a0a148c;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-main);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 30px #0000001a;
  transform: translateY(calc(10vh - 130px));
}
.cta-button:hover, .cta-button.is-hovered {
  background: #0a0a14b3;
  transform: translateY(calc(10vh - 130px)) scale(1.05);
}
.cta-button:active, .cta-button.is-active {
  transform: translateY(calc(10vh - 130px)) scale(0.95);
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #0f0c1bb3;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 0.5s ease,
    visibility 0s 0.5s;
}
.overlay.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition:
    opacity 0.5s ease,
    visibility 0s 0s;
}
.overlay-content {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--space-3);
  padding: var(--space-6);
  max-width: 600px;
  width: 90%;
  position: relative;
  text-align: center;
  box-shadow: 0 8px 32px #0000004d;
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.overlay.open .overlay-content {
  transform: translateY(0);
}
.close-btn {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  background: transparent;
  border: none;
  color: var(--color-text-main);
  cursor: pointer;
  padding: var(--space-1);
  transition: transform 0.3s ease;
}
.close-btn:hover {
  transform: rotate(90deg);
}
.overlay-intro {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: var(--space-6);
  margin-top: var(--space-4);
  text-wrap: balance;
}
.disclaimer {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  border-top: 1px solid var(--glass-border);
  padding-top: var(--space-3);
  text-wrap: pretty;
}
