/* ============================================================
   WoodsCop — Landing page
   ============================================================ */

.page {
  position: relative;
  z-index: 1;
}

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  pointer-events: none;
}
.nav * { pointer-events: auto; }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { width: 34px; height: 34px; object-fit: contain; filter: drop-shadow(0 0 12px var(--glow-purple)); }
.nav-brand span { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.18em; font-size: 13px; text-transform: uppercase; }
.nav-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--bg-panel);
  backdrop-filter: blur(12px);
  color: var(--text);
  text-decoration: none;
  transition: box-shadow .3s ease, transform .3s ease;
}
.nav-cta:hover { box-shadow: 0 0 28px var(--glow-purple); transform: translateY(-1px); }

/* ---- Hero ---------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 22px;
  font-weight: 600;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 11vw, 8.5rem);
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-sub {
  margin: 30px auto 0;
  max-width: 560px;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--text-dim);
  line-height: 1.6;
}
.hero-cta {
  margin-top: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 999px;
  background: var(--gradient-cosmic);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 40px -6px var(--glow-purple);
  transition: transform .3s ease, box-shadow .3s ease;
}
.hero-cta:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 50px -6px var(--glow-blue); }

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-faint);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-cue .stick { width: 1px; height: 34px; background: linear-gradient(var(--accent-purple), transparent); animation: cueDrop 2s infinite; }
@keyframes cueDrop { 0% { opacity: 0; transform: scaleY(0); transform-origin: top; } 40% { opacity: 1; transform: scaleY(1); } 100% { opacity: 0; transform: scaleY(1); } }

/* ---- Sections -------------------------------------------------------- */
.reveal-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 100px 8vw;
}
.section-inner { max-width: 760px; }
.section-tag {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  font-weight: 700;
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.4vw, 4.4rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}
.section-text {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 620px;
}
.reveal-section.align-right { justify-content: flex-end; text-align: right; }
.reveal-section.align-right .section-inner { margin-left: auto; }
.reveal-section.align-right .section-text { margin-left: auto; }

.stat-row {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.stat { }
.stat-num {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
}
.stat-num::after { content: attr(data-suffix); font-size: 0.4em; margin-left: 4px; color: var(--text-dim); }
.stat-label {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 600;
}

.beam-visual {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 700;
}
.beam-line {
  position: relative;
  flex: 1;
  height: 2px;
  border-radius: 2px;
  background: var(--border-strong);
  overflow: hidden;
  min-width: 120px;
}
.beam-line::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 40%;
  background: var(--gradient-cosmic);
  filter: blur(1px);
  animation: beamTravel 1.8s linear infinite;
}
@keyframes beamTravel { 0% { transform: translateX(-100%); } 100% { transform: translateX(250%); } }

/* ---- Final CTA -------------------------------------------------------- */
.final-cta {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.final-cta .section-title { max-width: 780px; }

@media (max-width: 720px) {
  .reveal-section { padding: 80px 7vw; }
  .reveal-section.align-right { text-align: left; justify-content: flex-start; }
  .reveal-section.align-right .section-inner,
  .reveal-section.align-right .section-text { margin-left: 0; }
  .stat-row { gap: 30px; }
}
