.experience {
  position: relative;
  background: var(--void);
  min-height: 100vh;
  overflow: hidden;
}

/* Rain video background */
.rainVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  filter: grayscale(100%) brightness(0.35);
  transition: opacity 2s ease-in;
}

.rainVideo.videoVisible {
  opacity: 0.08;
}

/* Lightning flashes */
.lightning {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.lightning::before,
.lightning::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 30% 0%, rgba(220, 225, 240, 0.04), transparent 60%);
  opacity: 0;
  animation: lightning1 14s ease-in-out infinite;
}

.lightning::after {
  background: radial-gradient(ellipse 60% 80% at 70% 10%, rgba(200, 210, 235, 0.05), transparent 50%);
  animation: lightning2 18s ease-in-out infinite;
  animation-delay: 4s;
}

@keyframes lightning1 {
  0%, 100% { opacity: 0; }
  10% { opacity: 0.15; }
  20% { opacity: 0; }
}

@keyframes lightning2 {
  0%, 100% { opacity: 0; }
  12% { opacity: 0.12; }
  24% { opacity: 0; }
}

/* Background aura - follows cursor gently, like heat distortion */
.aura {
  position: fixed;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at var(--aura-x, 50%) var(--aura-y, 50%),
    rgba(50, 45, 65, 0.06) 0%,
    rgba(35, 40, 50, 0.03) 30%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}

.grain {
  position: fixed;
  inset: -50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
  animation: grain 10s steps(3) infinite;
  z-index: 1;
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-1%, -0.5%); }
  66% { transform: translate(0.5%, 1%); }
}

/* Statements container */
.statements {
  position: relative;
  z-index: 10;
}

/* Each statement gets room to breathe */
.statement {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}

/* Main line */
.main {
  font-family: var(--font-display);
  font-size: clamp(32px, 7vw, 64px);
  font-weight: 600;
  color: var(--chrome-bright);
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0;
  max-width: 900px;
  text-shadow: 0 0 80px rgba(200, 210, 230, 0.15);

  /* Animation state */
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Sub lines */
.sub {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sub p {
  font-family: var(--font-body);
  font-size: clamp(14px, 2.5vw, 18px);
  font-weight: 300;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin: 0;

  /* Animation state */
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.sub p.fire {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: #d4a574;
  text-shadow: 0 0 30px rgba(212, 165, 116, 0.25);
}

/* Visible state */
.statement.visible .main {
  opacity: 1;
  transform: translateY(0);
}

.statement.visible .sub p {
  opacity: 1;
  transform: translateY(0);
}

/* Continue section */
.continueSection {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.continueSection.visible {
  opacity: 1;
}

.continueBtn {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border);
  padding: 18px 48px;
  cursor: pointer;
  transition:
    color 1s ease-out,
    border-color 1s ease-out,
    background 1s ease-out;
}

.continueBtn:hover {
  color: var(--text-secondary);
  border-color: var(--chrome-dark);
  background: rgba(255, 255, 255, 0.01);
}

/* Mobile */
@media (max-width: 768px) {
  .statement {
    min-height: 80vh;
    padding: 0 20px;
  }

  .main {
    letter-spacing: 0;
  }

  .sub {
    margin-top: 24px;
  }

  .continueSection {
    min-height: 50vh;
  }
}
