/* ══════════════════════════════════════════════════════════════
   KINETIC STATEMENT SECTION — Editorial Typography & Scroll Vortex
   Inspired by Epic Agency (Awwwards) · Words peel on 3D curves
   ══════════════════════════════════════════════════════════════ */

.kinetic-statement-track {
  position: relative;
  width: 100%;
  height: 250vh; /* Deliberate scroll track for peeling interaction */
  background-color: var(--obsidian-bg, #060709);
  background-image:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(59, 130, 246, 0.08), transparent 65%),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
}

.kinetic-sticky-stage {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  overflow: hidden;
  box-sizing: border-box;
}

.kinetic-statement-wrap {
  position: relative;
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  perspective: 1200px;
  user-select: none;
}

.kinetic-kicker {
  font-family: var(--mono, "JetBrains Mono", monospace);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: #94a3b8;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: inline-block;
  opacity: 0.85;
}

.kinetic-paragraph {
  font-family: var(--font, "Instrument Sans", -apple-system, sans-serif);
  font-size: clamp(2.0rem, 3.5vw, 3.4rem) !important;
  line-height: 1.35 !important;
  letter-spacing: -0.04em !important;
  color: #e2e8f0;
  font-weight: 400;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

/* Individual word styling */
.kinetic-word-wrap {
  display: inline-block;
  white-space: pre;
}

.kinetic-word {
  display: inline-block;
  transform-origin: center center;
  will-change: transform, opacity;
  transition: transform 0.05s linear, opacity 0.05s linear;
}

/* Key locked anchor words (ARCHITECT, BENCHMARK, SHIP) — Pure High-Contrast Platinum */
.anchor-word {
  display: inline-block;
  font-weight: 800 !important;
  color: #ffffff !important;
  letter-spacing: -0.04em !important;
  position: relative;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
  transition: color 300ms ease, text-decoration-color 300ms ease, text-shadow 300ms ease;
}

.anchor-word:hover,
.kinetic-statement-track.is-anchored .anchor-word {
  text-decoration-color: #ffffff;
  text-shadow: 0 0 32px rgba(255, 255, 255, 0.4);
}

/* Bottom Progress & Scroll Cue */
.kinetic-scroll-status {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono, "JetBrains Mono", monospace);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #64748b;
  text-transform: uppercase;
  transition: opacity 300ms ease;
}

.kinetic-scroll-bar {
  width: 70px;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 1px;
  overflow: hidden;
}

.kinetic-scroll-fill {
  height: 100%;
  width: 0%;
  background: #3b82f6;
  transition: width 0.05s linear;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  .kinetic-statement-track { height: 200vh; }
  .kinetic-sticky-stage { padding: 0 24px; }
  .kinetic-paragraph { font-size: clamp(1.8rem, 6vw, 2.6rem) !important; line-height: 1.32 !important; }
  .kinetic-kicker { margin-bottom: 24px; font-size: 9.5px; }
}
