/* ─── Design Tokens ─────────────────────────────── */
:root {
  --background: hsl(220, 25%, 6%);
  --foreground: hsl(0, 0%, 98%);
  --foreground-75: hsl(0 0% 98% / 0.75);
  --muted-foreground: hsl(220, 10%, 60%);
  --neon: hsl(75, 100%, 55%);
  --neon-glow: hsl(75, 100%, 70%);
  --cta: hsl(48, 100%, 52%);
  --cta-foreground: hsl(220, 25%, 6%);
  --radius: 0.5rem;
}

/* ─── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── Base ───────────────────────────────────────── */
body {
  background: var(--background);
  color: var(--foreground);
  font-family: 'Rajdhani', sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ─── Page wrapper ───────────────────────────────── */
.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ─── Video Background ───────────────────────────── */
.video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    hsl(220 25% 6% / 0.55) 0%,
    hsl(220 25% 6% / 0.4) 40%,
    hsl(220 25% 6% / 0.6) 80%,
    hsl(220 25% 6% / 0.9) 100%
  );
}

/* ─── Content ────────────────────────────────────── */
.content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  width: 100%;
  min-height: 100vh;
}

.columns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 64rem;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .columns { flex-direction: row; align-items: center; }
}

/* ─── Left Column ────────────────────────────────── */
.col-left {
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  box-shadow:
    0 0 0 2px hsl(75 100% 55% / 0.6),
    0 0 30px hsl(75 100% 55% / 0.2),
    0 20px 60px hsl(0 0% 0% / 0.6);
}

@media (min-width: 768px) {
  .col-left { width: 50%; }
}

.col-left img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── Right Column ───────────────────────────────── */
.col-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .col-right { width: 50%; align-items: center; }
}

/* ─── Card ───────────────────────────────────────── */
.card {
  width: 100%;
  border-radius: 0.5rem;
  padding: 1.5rem 2rem;
  text-align: center;
  background: hsl(220 25% 6% / 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid hsl(75 100% 55% / 0.2);
  box-shadow: 0 8px 40px hsl(0 0% 0% / 0.3), inset 0 1px 0 hsl(75 100% 55% / 0.08);
}

/* ─── Label ──────────────────────────────────────── */
.label {
  font-family: 'Rajdhani', sans-serif;
  color: #00f5d4;
  text-shadow: 0 0 20px hsl(75 100% 55% / 0.8), 0 0 40px hsl(75 100% 55% / 0.4);
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* ─── Headline ───────────────────────────────────── */
.headline {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 900;
  font-style: italic;
  color: var(--foreground);
  text-shadow: 0 2px 20px hsl(0 0% 0% / 0.8), 0 0 40px hsl(0 0% 100% / 0.15);
  text-transform: uppercase;
  line-height: 1.05;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 0.75rem;
}

/* ─── Subheadline ────────────────────────────────── */
.subheadline {
  font-family: 'Rajdhani', sans-serif;
  color: #00f5d4;
  font-style: italic;
  font-size: 1.127rem;
}

/* ─── CTA Wrap ───────────────────────────────────── */
.cta-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .cta-wrap { align-items: center; }
}

/* ─── CTA Button ─────────────────────────────────── */
.btn-cta {
  background: var(--cta);
  color: var(--cta-foreground);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.25rem 2.5rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 0 30px hsl(48 100% 52% / 0.5), 0 4px 24px hsl(0 0% 0% / 0.4);
  transition: all 0.2s ease;
  text-decoration: none;
  animation: scale-up-down 1.5s ease-in-out infinite;
}

@media (min-width: 768px) {
  .btn-cta { width: auto; }
}

.btn-cta:hover {
  background: hsl(48, 100%, 62%);
  box-shadow: 0 0 50px hsl(48 100% 52% / 0.7), 0 6px 30px hsl(0 0% 0% / 0.5);
  transform: translateY(-2px) scale(1.02);
}

.btn-cta:active {
  transform: translateY(0) scale(0.99);
}

/* ─── CTA Note ───────────────────────────────────── */
.cta-note {
  font-family: 'Rajdhani', sans-serif;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
}

/* ─── Footer ─────────────────────────────────────── */
.footer {
  position: absolute;
  bottom: 1.5rem;
  z-index: 10;
  width: 100%;
  text-align: center;
}

.footer p {
  font-family: 'Rajdhani', sans-serif;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.footer a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.footer a:hover { color: var(--foreground); }

/* ─── Disclaimer ─────────────────────────────────── */
.disclaimer {
  position: absolute;
  bottom: 0.75rem;
  left: 1rem;
  z-index: 10;
}

.disclaimer p {
  font-family: 'Rajdhani', sans-serif;
  color: var(--muted-foreground);
  font-size: 0.625rem;
  letter-spacing: 0.05em;
  opacity: 0.6;
}

/* ─── Animations ─────────────────────────────────── */
@keyframes pulse-neon {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

.animate-fade-in-up {
  opacity: 0;
  animation: fade-in-up 0.7s ease forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-300 { animation-delay: 0.3s; }



@keyframes scale-up-down {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
