/* ============================================================
   CYBERBOOTH — Landing Page Styles
   ============================================================ */

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px var(--space-xl) var(--space-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative orbs */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

.hero::before {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -150px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.15), transparent 70%);
  animation-delay: 0s;
}

.hero::after {
  width: 500px;
  height: 500px;
  bottom: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(255, 77, 255, 0.12), transparent 70%);
  animation-delay: -4s;
}

/* ── Logo Area ────────────────────────────────────────────── */
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--neon-blue);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.1s;
}

.hero-logo {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.2s;
  position: relative;
}

.hero-logo-cyber {
  display: block;
  background: linear-gradient(135deg, var(--neon-blue), #FFFFFF, var(--hot-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.5));
}

.hero-logo-booth {
  display: block;
  color: var(--hot-pink);
  text-shadow:
    0 0 20px rgba(255, 77, 255, 0.8),
    0 0 50px rgba(255, 77, 255, 0.4),
    0 0 100px rgba(255, 77, 255, 0.2);
  animation: flicker 6s ease-in-out infinite;
  animation-delay: 3s;
}

/* Glitch overlay layers */
.hero-logo::before,
.hero-logo::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: inherit;
  letter-spacing: inherit;
  pointer-events: none;
}

.hero-logo::before {
  color: var(--neon-blue);
  clip-path: inset(0 0 100% 0);
  animation: glitch 8s ease-in-out infinite;
  animation-delay: 2s;
  left: 2px;
}

.hero-logo::after {
  color: var(--hot-pink);
  clip-path: inset(0 0 100% 0);
  animation: glitch 8s ease-in-out infinite reverse;
  animation-delay: 4s;
  left: -2px;
}

.hero-tagline {
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: var(--chrome-silver);
  font-weight: 400;
  letter-spacing: 0.05em;
  max-width: 540px;
  margin: 0 auto var(--space-2xl);
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.4s;
}

.hero-tagline span {
  color: var(--neon-blue);
  font-weight: 600;
}

/* ── CTA Group ────────────────────────────────────────────── */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.6s;
}

.btn-cta-main {
  font-size: 1rem;
  padding: 18px 48px;
  position: relative;
  overflow: hidden;
}

.btn-cta-main::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-cta-main:hover::after {
  transform: translateX(100%);
}

/* ── Scroll Indicator ─────────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  animation: float 2s ease-in-out infinite;
  cursor: pointer;
}

.scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--chrome-dim);
  text-transform: uppercase;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--neon-blue);
  border-bottom: 2px solid var(--neon-blue);
  transform: rotate(45deg);
  opacity: 0.6;
}

/* ── Features Section ─────────────────────────────────────── */
.features-section {
  padding: var(--space-3xl) var(--space-xl);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--hot-pink);
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease both;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-blue), var(--hot-pink));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--neon-blue-dim), var(--hot-pink-dim));
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  box-shadow: var(--glow-blue-sm);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--neon-blue);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--chrome-dim);
  line-height: 1.7;
}

/* ── How It Works ─────────────────────────────────────────── */
.steps-section {
  padding: var(--space-3xl) var(--space-xl);
  background: linear-gradient(180deg, transparent, rgba(138, 43, 226, 0.05), transparent);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
  counter-reset: step-counter;
}

.step-item {
  text-align: center;
  position: relative;
}

.step-item:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -20px;
  top: 24px;
  color: var(--cyber-purple);
  font-size: 1.2rem;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--cyber-purple);
  color: var(--hot-pink);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  box-shadow: var(--glow-purple);
  position: relative;
}

.step-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--chrome-silver);
  text-transform: uppercase;
}

/* ── Footer ───────────────────────────────────────────────── */
.landing-footer {
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
  border-top: 1px solid var(--border-subtle);
}

.landing-footer p {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--chrome-dim);
  letter-spacing: 0.1em;
}

.landing-footer a {
  color: var(--neon-blue);
}

/* ── Floating Decoratives ─────────────────────────────────── */
.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border-glow);
  pointer-events: none;
  animation: rotateGlow 20s linear infinite;
}

.deco-ring--1 {
  width: 300px;
  height: 300px;
  top: 15%;
  right: 5%;
  border-color: rgba(0, 229, 255, 0.15);
  animation-direction: normal;
}

.deco-ring--2 {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 9%;
  border-color: rgba(255, 77, 255, 0.1);
  animation-direction: reverse;
}

.deco-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.deco-dot--1 {
  width: 6px;
  height: 6px;
  background: var(--neon-blue);
  box-shadow: var(--glow-blue-sm);
  top: 22%;
  right: 14%;
  animation: pulseGlow 2s ease-in-out infinite;
}

.deco-dot--2 {
  width: 4px;
  height: 4px;
  background: var(--hot-pink);
  box-shadow: var(--glow-pink-sm);
  top: 35%;
  right: 8%;
  animation: pulseGlow 3s ease-in-out infinite;
  animation-delay: 1s;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .deco-ring { display: none; }

  .step-item:not(:last-child)::after { display: none; }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-cta-main {
    width: 100%;
  }
}
