:root {
  --neon-cyan: oklch(0.6 0.16 210);
  --neon-lime: oklch(0.6 0.17 145);
  --neon-glow-cyan: oklch(0.6 0.16 210 / 0.35);
  --neon-glow-lime: oklch(0.6 0.17 145 / 0.35);
  --neon-glow-pink: oklch(0.56 0.17 340 / 0.35);
  --text-on-dark: oklch(0.984 0.003 247.858);
  --text-pink-white: oklch(0.94 0.03 350);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #000;
  color: var(--text-on-dark);
}

.page {
  position: relative;
  display: flex;
  height: 100vh;
  width: 100%;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gradient-mask {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.1)
  );
}

.logo-wrap {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 20;
  display: flex;
  align-items: center;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.5rem 0.75rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
  outline: 1px solid rgba(255, 255, 255, 0.25);
}

.logo {
  height: 2.5rem;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.hero-title-wrap {
  position: absolute;
  top: 5rem;
  left: 50%;
  z-index: 20;
  transform: translateX(-50%);
}

.hero-title {
  white-space: nowrap;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--text-pink-white);
}

@keyframes neon-pulse {
  0%,
  100% {
    text-shadow:
      0 0 12px var(--neon-glow-pink),
      0 0 28px var(--neon-glow-pink),
      0 2px 12px rgba(0, 0, 0, 0.7);
    opacity: 1;
  }
  50% {
    text-shadow:
      0 0 24px var(--neon-glow-pink),
      0 0 52px var(--neon-glow-pink),
      0 2px 12px rgba(0, 0, 0, 0.7);
    opacity: 0.95;
  }
}

.animate-neon-pulse {
  animation: neon-pulse 2s ease-in-out infinite;
}

.actions {
  position: relative;
  z-index: 10;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 1.5rem 3rem;
}

.tagline-wrap {
  margin-bottom: 1.25rem;
  text-align: center;
}

.tagline {
  display: inline-grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 0.5rem;
  row-gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--text-pink-white);
  text-shadow:
    0 0 20px rgba(255, 192, 230, 0.45),
    0 2px 14px rgba(0, 0, 0, 0.85),
    0 1px 3px rgba(0, 0, 0, 0.6);
}

.tagline-right {
  white-space: nowrap;
  text-align: right;
}

.tagline-left {
  white-space: nowrap;
  text-align: left;
}

.tagline-dot {
  text-align: center;
}

.btn {
  display: inline-flex;
  width: 85%;
  max-width: 320px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-on-dark);
  text-decoration: none;
  transition: transform 0.15s ease;
}

.btn:hover {
  transform: scale(1.05);
}

.btn:active {
  transform: scale(0.95);
}

.btn-cyan {
  background: var(--neon-cyan);
  box-shadow: 0 0 20px var(--neon-glow-cyan);
}

.btn-lime {
  background: var(--neon-lime);
  box-shadow: 0 0 20px var(--neon-glow-lime);
}

.icon {
  margin-right: 0.5rem;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.25rem;
  }

  .tagline {
    font-size: 0.75rem;
  }
}
