/* =========================================
   thomasgoggin.com / late night build
   ========================================= */

:root {
  --bg: #07090f;
  --bg-2: #0a0d14;
  --bg-3: #11151f;
  --line: #1f2737;
  --text: #f5f5f5;
  --muted: #8a93a8;
  --muted-2: #5b6378;
  --amber: #FFB800;
  --amber-soft: #ffd66b;
  --orange: #FF6B35;
  --purple: #A855F7;
  --green: #39FF14;
  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans: "Inter Tight", -apple-system, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}

/* radial bg glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 184, 0, 0.06), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.05), transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* film grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  mix-blend-mode: overlay;
}

a { color: inherit; text-decoration: none; }
button { background: none; border: 0; color: inherit; font: inherit; cursor: none; }

/* =========================================
   nav
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 36px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(7, 9, 15, 0.5);
  border-bottom: 1px solid rgba(31, 39, 55, 0.4);
}

.logo {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0;
  color: var(--text);
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav a {
  color: var(--muted);
  transition: color 0.2s ease;
  position: relative;
}
.nav a:hover { color: var(--amber); }
.nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav a:hover::after { transform: scaleX(1); }

/* =========================================
   voice toggle
   ========================================= */
.voice-toggle {
  position: fixed;
  top: 78px;
  right: 28px;
  z-index: 49;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  padding: 10px 14px 10px 18px;
  background: rgba(7, 9, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.2, 0, 0, 1);
}
.voice-toggle:hover {
  border-color: var(--amber);
  box-shadow: 0 0 0 6px rgba(255, 184, 0, 0.06), 0 8px 30px rgba(0,0,0,0.4);
  transform: translateY(-1px);
}

.voice-toggle-track {
  position: relative;
  width: 56px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.voice-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--amber);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 16px rgba(255, 184, 0, 0.85), 0 0 4px rgba(255, 184, 0, 1);
}
[data-voice="real"] .voice-toggle-thumb {
  transform: translateX(28px);
}
[data-voice="formal"] .voice-toggle-thumb {
  background: var(--muted);
  box-shadow: 0 0 10px rgba(138, 147, 168, 0.5);
}

.voice-toggle-labels {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.25;
  color: var(--muted-2);
  font-weight: 600;
}
.voice-toggle-labels::before {
  content: "VOICE";
  display: block;
  font-size: 8px;
  letter-spacing: 0.25em;
  color: var(--muted-2);
  margin-bottom: 2px;
}
.voice-toggle-labels span { transition: color 0.3s ease; font-size: 11px; }
[data-voice="formal"] [data-voice-state="formal"] { color: var(--text); }
[data-voice="real"] [data-voice-state="real"] { color: var(--amber); }

/* first-visit hint: spotlight ring + arrow callout */
.voice-toggle::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 2px solid var(--amber);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.show-voice-hint .voice-toggle::after {
  opacity: 1;
  animation: hint-pulse 1.6s ease-in-out infinite;
}
@keyframes hint-pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.06); opacity: 0.4; }
}

/* hint callout below the toggle */
.voice-toggle::before {
  content: "← flip the voice  •  press V";
  position: absolute;
  top: calc(100% + 14px);
  right: 8px;
  white-space: nowrap;
  padding: 8px 14px;
  background: var(--amber);
  color: #0a0d14;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.2, 0, 0, 1);
  box-shadow: 0 8px 30px rgba(255, 184, 0, 0.25);
}
.show-voice-hint .voice-toggle::before {
  opacity: 1;
  transform: translateY(0);
  animation: hint-bob 1.8s ease-in-out infinite;
}
@keyframes hint-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* =========================================
   hero
   ========================================= */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: 120px 36px 60px;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 1.4fr);
  gap: 60px;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
}

.hero-copy { max-width: 540px; }

.hero-copy h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 6.2vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-copy h1 .display { display: block; color: var(--text); }
.hero-copy h1 .display-muted {
  display: block;
  color: var(--muted);
  font-style: italic;
}

.hero-sub {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  max-width: 380px;
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--amber-soft);
  text-transform: uppercase;
}
.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--amber);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

/* =========================================
   isometric scene
   ========================================= */
.scene-wrap {
  position: relative;
  width: 100%;
}
.scene-label {
  position: absolute;
  top: -18px;
  left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--amber-soft);
  text-transform: uppercase;
  z-index: 3;
}
.scene-label-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}

.scene {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.5));
}

.station {
  cursor: none;
  transition: filter 0.3s ease;
}
.station-hit,
.mine-hit {
  pointer-events: all;
  cursor: pointer;
}
.station:hover {
  filter: brightness(1.08);
}
.station:hover .station-glow {
  opacity: 1.4;
}
.station-glow {
  transition: opacity 0.3s ease;
  opacity: 0.7;
  animation: breathe 4s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.85; }
}

/* pixel character animations */
.pixel-char { transform-origin: center; }
.char-receptionist, .char-spiffy, .char-ava, .char-leadflo {
  animation: char-breathe 3s ease-in-out infinite;
}
@keyframes char-breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1px); }
}
.char-receptionist { animation-delay: 0s; }
.char-spiffy { animation-delay: 0.5s; }
.char-ava { animation-delay: 1s; }
.char-leadflo { animation-delay: 1.5s; }

/* talking mouth */
.mouth-talk {
  animation: talk 0.4s steps(2) infinite;
}
@keyframes talk {
  0%, 100% { width: 4px; }
  50% { width: 2px; }
}

/* phone ringing */
.phone-rig { animation: phone-shake 4s ease-in-out infinite; transform-origin: 170px 434px; }
@keyframes phone-shake {
  0%, 70%, 100% { transform: rotate(0); }
  72%, 76%, 80%, 84% { transform: rotate(-3deg); }
  74%, 78%, 82%, 86% { transform: rotate(3deg); }
}
.phone-light { animation: phone-blink 1s steps(2) infinite; }
@keyframes phone-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.2; }
}
.phone-ring { animation: ring-pulse 4s ease-in-out infinite; opacity: 0; }
@keyframes ring-pulse {
  0%, 70%, 100% { opacity: 0; }
  72%, 84% { opacity: 1; }
}

/* floating bubbles */
.float-bubble { animation: float-up 5s ease-in-out infinite; opacity: 0; }
.bubble-1 { animation-delay: 1s; }
.bubble-2 { animation-delay: 3s; }
@keyframes float-up {
  0% { transform: translateY(20px); opacity: 0; }
  20%, 80% { opacity: 1; }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(-30px); opacity: 0; }
}

/* monitor pulses */
.bar-pulse {
  animation: bar-grow 2.4s ease-in-out infinite;
  transform-origin: left center;
}
@keyframes bar-grow {
  0%, 100% { transform: scaleX(0.3); }
  50% { transform: scaleX(1); }
}

.tick-line {
  opacity: 0;
  animation: tick-in 6s ease-in-out infinite;
}
@keyframes tick-in {
  0%, 90%, 100% { opacity: 0; transform: translateY(4px); }
  10%, 80% { opacity: 1; transform: translateY(0); }
}

.chat-msg {
  opacity: 0;
  animation: chat-in 6s ease-in-out infinite;
}
@keyframes chat-in {
  0%, 90%, 100% { opacity: 0; }
  15%, 85% { opacity: 1; }
}

.type-line {
  opacity: 0;
  animation: type-in 4s ease-in-out infinite;
  transform-origin: left center;
}
@keyframes type-in {
  0%, 90%, 100% { opacity: 0; transform: scaleX(0); }
  20%, 80% { opacity: 1; transform: scaleX(1); }
}

.pixel-pulse {
  animation: pix-pulse 2s ease-in-out infinite;
}
@keyframes pix-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* outtcast room constellation (main page, in the back-right room) */
.outtcast-constellation .oc-line {
  transition: opacity 0.5s ease, stroke-width 0.5s ease;
}
.outtcast-constellation .oc-star {
  animation: oc-twinkle 4.2s ease-in-out infinite alternate;
  transform-origin: center;
  transform-box: fill-box;
}
.outtcast-constellation .oc-star:nth-child(2n) { animation-duration: 5.4s; animation-delay: 0.7s; }
.outtcast-constellation .oc-star:nth-child(3n) { animation-duration: 3.6s; animation-delay: 1.5s; }
.outtcast-constellation .oc-star-center {
  animation: oc-pulse-center 2.6s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.outtcast-constellation .oc-orbit {
  transform-origin: 950px 250px;
}
.outtcast-constellation .oc-orbit-cw {
  animation: oc-orbit-spin 32s linear infinite;
}
.outtcast-constellation .oc-orbit-ccw {
  animation: oc-orbit-spin-rev 48s linear infinite;
}
.outtcast-constellation .oc-waist-halo {
  transform-origin: center;
  transform-box: fill-box;
  animation: oc-halo-breath 2.6s ease-in-out infinite;
}
.outtcast-constellation .oc-sand-top {
  animation: oc-sand-shift 6s ease-in-out infinite alternate;
  transform-origin: 950px 215px;
  transform-box: fill-box;
}
.outtcast-constellation .oc-sand-bottom {
  animation: oc-sand-shift-rev 6s ease-in-out infinite alternate;
  transform-origin: 950px 285px;
  transform-box: fill-box;
}
.outtcast-constellation .oc-grain {
  animation: oc-grain-fall 2.4s ease-in infinite;
  opacity: 0;
}
.outtcast-constellation .oc-grain-2 { animation-delay: 0.6s; animation-duration: 2.6s; }
.outtcast-constellation .oc-grain-3 { animation-delay: 1.2s; animation-duration: 2.2s; }
.outtcast-constellation .oc-grain-4 { animation-delay: 1.8s; animation-duration: 2.8s; }
@keyframes oc-grain-fall {
  0%   { transform: translateY(-22px); opacity: 0; }
  20%  { opacity: 1; }
  50%  { transform: translateY(0); opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(40px); opacity: 0; }
}
@keyframes oc-twinkle { from { opacity: 0.45; } to { opacity: 1; } }
@keyframes oc-twinkle-center { from { opacity: 0.7; } to { opacity: 1; } }
@keyframes oc-pulse-center {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.35); }
}
@keyframes oc-orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes oc-orbit-spin-rev {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}
@keyframes oc-halo-breath {
  0%, 100% { opacity: 0.55; transform: scale(0.92); }
  50%      { opacity: 1;    transform: scale(1.18); }
}
@keyframes oc-sand-shift {
  from { opacity: 0.85; }
  to   { opacity: 1; }
}
@keyframes oc-sand-shift-rev {
  from { opacity: 1; }
  to   { opacity: 0.85; }
}
.station-outtcast:hover .outtcast-constellation .oc-line { opacity: 0.95 !important; stroke-width: 2; }
.station-outtcast:hover .outtcast-constellation .oc-star { opacity: 1 !important; }

.oc-field-star {
  animation: oc-twinkle 4.4s ease-in-out infinite alternate;
  opacity: 0.6;
  transform-origin: center;
  transform-box: fill-box;
}
.oc-field-star:nth-child(2n) { animation-duration: 5.6s; animation-delay: 1.1s; }
.oc-field-star:nth-child(3n) { animation-duration: 3.8s; animation-delay: 0.5s; }
.oc-field-star:nth-child(4n) { animation-duration: 6.2s; animation-delay: 2.4s; }

.particle {
  animation: drift 8s ease-in-out infinite;
  opacity: 0;
}
@keyframes drift {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
  20%, 80% { opacity: 0.6; }
  50% { transform: translateY(-30px) translateX(15px); }
}

/* =========================================
   case study overlay
   ========================================= */
.case-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(7, 9, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.case-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.case-close {
  position: absolute;
  top: 28px;
  right: 36px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-size: 22px;
  font-family: var(--sans);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.case-close:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: rotate(90deg);
}
.case-content {
  width: 100%;
  max-width: 880px;
  max-height: 84vh;
  overflow-y: auto;
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 56px 56px 48px;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1);
}
.case-overlay.active .case-content { transform: translateY(0) scale(1); }

.case-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.case-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  font-weight: 400;
}
.case-tagline {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}
.case-section { margin-bottom: 28px; }
.case-section-h {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted-2);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.case-section-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  font-weight: 400;
}
.case-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.case-stack-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--amber);
  background: rgba(255, 184, 0, 0.08);
  border: 1px solid rgba(255, 184, 0, 0.2);
  border-radius: 4px;
}
.case-fake-thread {
  margin-top: 14px;
  padding: 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.7;
}
.case-fake-thread .who {
  display: inline-block;
  min-width: 60px;
  color: var(--muted-2);
}
.case-fake-thread .who.bot { color: var(--amber); }

/* =========================================
   sections shared
   ========================================= */
section {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 120px 36px;
}

.section-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--amber);
}

.section-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 880px;
  margin-bottom: 64px;
}

/* =========================================
   approach
   ========================================= */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.approach-item {
  background: var(--bg-2);
  padding: 40px 36px 44px;
  transition: background 0.3s ease;
}
.approach-item:hover {
  background: var(--bg-3);
}
.approach-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: 22px;
}
.approach-item h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--text);
}
.approach-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* =========================================
   stack
   ========================================= */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
}
.stack-item {
  position: relative;
  padding: 22px 24px;
  min-height: 96px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transition: background 0.3s ease;
}
.stack-item:hover { background: var(--bg-2); }
.stack-card {
  position: absolute;
  inset: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  animation: stack-rot 14s ease-in-out infinite;
}
.stack-card:nth-child(1) { animation-delay: var(--rot-delay, 0s); }
.stack-card:nth-child(2) { animation-delay: calc(var(--rot-delay, 0s) + 7s); }
@keyframes stack-rot {
  0%   { opacity: 0; transform: translateY(6px); }
  4%   { opacity: 1; transform: translateY(0); }
  46%  { opacity: 1; transform: translateY(0); }
  50%  { opacity: 0; transform: translateY(-4px); }
  100% { opacity: 0; }
}
.stack-name {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text);
  letter-spacing: 0.02em;
}
.stack-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* =========================================
   about
   ========================================= */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 700px);
}
.about-lead {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: var(--text);
}
.about-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 44px;
  max-width: 620px;
}
.about-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--amber-soft);
  border-left: 2px solid var(--amber);
  padding-left: 22px;
  max-width: 480px;
}
.about-attr {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 10px;
}

/* =========================================
   contact
   ========================================= */
.contact { text-align: center; padding: 140px 36px 80px; }
.contact-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 640px;
  margin: 0 auto 48px;
  color: var(--text);
}
.contact-mail {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(40px, 6vw, 80px);
  color: var(--amber);
  letter-spacing: -0.02em;
  position: relative;
  margin-bottom: 28px;
  transition: transform 0.3s ease;
}
.contact-mail::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1);
}
.contact-mail:hover { transform: translateY(-2px); }
.contact-mail:hover::after { transform: scaleX(1); }
.contact-note {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* =========================================
   footer
   ========================================= */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 36px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.06em;
}
.footer-right { display: inline-flex; align-items: center; gap: 8px; }

/* =========================================
   custom cursor
   ========================================= */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease;
  box-shadow: 0 0 8px var(--amber);
}
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 184, 0, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s cubic-bezier(0.2, 0, 0, 1), width 0.2s, height 0.2s, border-color 0.2s;
}
.cursor-ring.hover {
  width: 56px;
  height: 56px;
  border-color: var(--amber);
  background: rgba(255, 184, 0, 0.08);
}

/* =========================================
   responsive
   ========================================= */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 100px; }
  .nav { padding: 16px 20px; }
  .nav ul { gap: 18px; }
  .voice-toggle { top: 70px; right: 20px; }
  section { padding: 80px 20px; }
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  button, a { cursor: pointer; }
}

@media (max-width: 540px) {
  .nav .logo { font-size: 18px; }
  .nav ul { font-size: 10px; gap: 14px; }
  .approach-item { padding: 28px 22px; }
  .case-content { padding: 36px 24px 32px; }
  .footer { flex-direction: column; gap: 8px; align-items: flex-start; }
  .voice-toggle::before { font-size: 10px; padding: 6px 10px; right: 0; }
}

/* =========================================
   WOW components (case study top zones)
   ========================================= */
.wow {
  margin: 8px 0 36px;
  --accent: var(--amber);
}
.wow-frame {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.wow-frame-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}
.wow-frame-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 1.6s ease-in-out infinite;
}
.wow-frame-dot-ring {
  background: transparent;
  border: 2px solid var(--accent);
  animation: ring-pulse-2 1s ease-out infinite;
}
@keyframes ring-pulse-2 {
  0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.6); }
  100% { box-shadow: 0 0 0 14px rgba(255, 107, 53, 0); }
}
.wow-frame-dot-purple { background: var(--purple); box-shadow: 0 0 8px var(--purple); }

/* ---- sms thread ---- */
.wow-thread {
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 320px;
}
.wow-msg {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(10px);
  animation: msg-in 0.5s cubic-bezier(0.2, 0, 0, 1) forwards;
}
.playing .wow-msg { animation: msg-in 0.5s cubic-bezier(0.2, 0, 0, 1) forwards; }
@keyframes msg-in {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}
.wow-msg-user { align-self: flex-start; border-bottom-left-radius: 4px; }
.wow-msg-bot { align-self: flex-end; border-bottom-right-radius: 4px; font-weight: 500; }

/* ---- voice call (cycling, blurred contact) ---- */
.vc-stack {
  position: relative;
  min-height: 360px;
}
.vc-call {
  position: absolute;
  inset: 0;
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.vc-call.vc-active { opacity: 1; pointer-events: auto; }
.vc-meta {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 14px;
  padding: 10px 14px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 11px;
}
.vc-meta-pair { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.vc-meta-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--muted-2);
  text-transform: uppercase;
}
.vc-meta-value {
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vc-blur {
  filter: blur(3.5px);
  user-select: none;
  letter-spacing: 0.06em;
}
.vc-call-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}
.vc-avatar {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.vc-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: call-pulse 1.4s ease-out infinite;
}
@keyframes call-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.7); opacity: 0; }
}
.vc-waveform { display: flex; align-items: center; gap: 3px; height: 28px; }
.vc-wave-bar {
  display: block;
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
  animation: wave 0.9s ease-in-out infinite;
  height: 6px;
}
@keyframes wave {
  0%, 100% { height: 6px; opacity: 0.4; }
  50% { height: 24px; opacity: 1; }
}
.vc-transcript {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  line-height: 1.5;
  font-family: var(--mono);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.vc-tx {
  opacity: 0;
  padding: 6px 10px;
  border-radius: 6px;
}
.vc-call.vc-playing .vc-tx { animation: tx-in 0.5s ease-out forwards; }
@keyframes tx-in {
  0% { opacity: 0; transform: translateX(-6px); }
  100% { opacity: 1; transform: translateX(0); }
}
.vc-tx-bot { color: var(--accent); background: rgba(255, 107, 53, 0.08); }
.vc-tx-user { color: var(--text); background: var(--bg-2); }
.vc-dots {
  margin-left: auto;
  display: flex;
  gap: 5px;
  align-items: center;
}
.vc-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--line);
  transition: background 0.3s ease, transform 0.3s ease;
}
.vc-dot-active {
  background: var(--accent);
  transform: scale(1.3);
  box-shadow: 0 0 8px var(--accent);
}
/* legacy voice-call selectors (kept for compatibility, unused) */
.wow-call-body { display: none; }

/* ---- voice compare ---- */
.wow-prompt {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wow-prompt-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted-2);
  text-transform: uppercase;
}
.wow-prompt-text {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--text);
}
.wow-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.wow-compare-col {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.wow-compare-col + .wow-compare-col {
  border-left: 1px solid var(--line);
}
.wow-compare-h {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.wow-compare-bad .wow-compare-h { color: var(--muted-2); }
.wow-compare-good .wow-compare-h { color: var(--accent); }
.wow-compare-body {
  font-size: 14px;
  line-height: 1.6;
  font-family: var(--mono);
}
.wow-compare-bad .wow-compare-body { color: var(--muted); }
.wow-compare-good .wow-compare-body {
  color: var(--text);
  position: relative;
  padding: 12px;
  background: rgba(168, 85, 247, 0.06);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 8px;
}
.wow-compare-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: auto;
}
.wow-compare-good .wow-compare-tag { color: var(--accent); }

/* ---- lead flow ---- */
.wow-flow-track {
  position: relative;
  padding: 38px 22px 30px;
}
.wow-flow-line {
  position: absolute;
  top: 65px;
  left: 9%;
  right: 9%;
  height: 2px;
  background: linear-gradient(to right, var(--line), var(--accent), var(--line));
  border-radius: 1px;
}
.wow-flow-runner {
  position: absolute;
  top: 60px;
  left: 9%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent), 0 0 4px var(--accent);
  animation: runner 4.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  z-index: 2;
}
@keyframes runner {
  0% { left: 9%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; left: 91%; }
  100% { left: 91%; opacity: 0; }
}
.wow-flow-stages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: relative;
  z-index: 1;
}
.wow-flow-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.wow-flow-stage-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--line);
  transition: all 0.3s ease;
  animation: stage-light 4.2s ease-in-out infinite;
}
@keyframes stage-light {
  0%, 19%, 95%, 100% { background: var(--bg-2); border-color: var(--line); box-shadow: none; }
  20%, 90% { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 12px var(--accent); }
}
.wow-flow-stage:nth-child(1) .wow-flow-stage-dot { animation-delay: 0s; }
.wow-flow-stage:nth-child(2) .wow-flow-stage-dot { animation-delay: 1.05s; }
.wow-flow-stage:nth-child(3) .wow-flow-stage-dot { animation-delay: 2.1s; }
.wow-flow-stage:nth-child(4) .wow-flow-stage-dot { animation-delay: 3.15s; }

.wow-flow-stage-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text);
  text-transform: uppercase;
}
.wow-flow-stage-meta {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted-2);
}

/* ---- phone app ---- */
.wow-phone-body {
  padding: 28px 22px;
  display: flex;
  justify-content: center;
}
.wow-phone-mock {
  width: 220px;
  height: 420px;
  border-radius: 28px;
  background: linear-gradient(180deg, #0a0712, #100820);
  border: 2px solid #2a1f3d;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 0 30px rgba(168, 85, 247, 0.1),
    0 20px 60px rgba(168, 85, 247, 0.2);
}
.wow-phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 14px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}
.wow-phone-screen {
  position: absolute;
  inset: 26px 12px 12px;
  border-radius: 18px;
  overflow: hidden;
  background: #0a0712;
}
.wow-phone-card {
  position: absolute;
  inset: 0;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  animation: phone-cycle 9s ease-in-out infinite;
}
.wow-phone-card-1 { animation-delay: 0s; }
.wow-phone-card-2 { animation-delay: 3s; }
.wow-phone-card-3 { animation-delay: 6s; }
@keyframes phone-cycle {
  0%, 28%, 100% { opacity: 0; transform: translateY(8px); }
  3%, 25% { opacity: 1; transform: translateY(0); }
}
.wow-phone-h {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--purple);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.wow-phone-streak {
  font-family: var(--serif);
  font-size: 80px;
  line-height: 1;
  color: var(--purple);
  letter-spacing: -0.02em;
  text-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
}
.wow-phone-streak-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 22px;
}
.wow-phone-btn {
  display: inline-block;
  margin-top: auto;
  padding: 12px 16px;
  background: var(--purple);
  color: #0a0712;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.4);
}
.wow-phone-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px solid rgba(168, 85, 247, 0.12);
}
.wow-phone-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.2);
  border: 1px solid rgba(168, 85, 247, 0.3);
}
.wow-phone-dot-on {
  background: var(--purple);
  box-shadow: 0 0 8px var(--purple);
  border-color: var(--purple);
}
.wow-phone-dot-you {
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
  border-color: var(--amber);
  animation: pulse 1.4s ease-in-out infinite;
}
.wow-phone-check {
  font-size: 90px;
  line-height: 1;
  color: var(--purple);
  text-align: center;
  margin: 30px 0 18px;
  text-shadow: 0 0 30px rgba(168, 85, 247, 0.7);
  animation: check-in 0.6s cubic-bezier(0.2, 1, 0.4, 1.4);
}
@keyframes check-in {
  0% { transform: scale(0.4); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/* mobile tweaks for wow */
@media (max-width: 700px) {
  .wow-compare-grid { grid-template-columns: 1fr; }
  .wow-compare-col + .wow-compare-col { border-left: 0; border-top: 1px solid var(--line); }
  .vc-meta { grid-template-columns: 1fr 1fr; }
  .vc-meta-pair:nth-child(3) { grid-column: 1 / -1; }
  .vc-stack { min-height: 420px; }
  .ev-axes { grid-template-columns: 1fr; }
  .pipe-body { grid-template-columns: 84px 1fr; height: 320px; }
  .pipe-band { font-size: 9px; padding: 0 10px; }
  .pipe-item { font-size: 11px; left: 12px; right: 12px; }
}

/* =========================================
   case context disclosure
   ========================================= */
.case-disclose {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  text-transform: uppercase;
  transition: all 0.25s ease;
  margin: 8px 0 24px;
}
.case-disclose:hover {
  color: var(--amber);
  border-color: var(--amber);
}
.case-context {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.55s cubic-bezier(0.2, 0, 0, 1), opacity 0.4s ease 0.1s;
}
.context-expanded .case-context {
  max-height: 4000px;
  opacity: 1;
}

/* =========================================
   active eval pipeline (Ava)
   ========================================= */
.wow-eval-active .wow-frame { background: #0a0712; border-color: #1a0f2e; }
.ev-counter {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}
.ev-counter .ev-pass { color: var(--green); font-weight: 700; }
.ev-counter .ev-total { color: var(--muted); }
.ev-counter-lbl { color: var(--muted-2); margin-left: 4px; }
.ev-body {
  padding: 26px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 380px;
}
.ev-bubble {
  background: rgba(168, 85, 247, 0.06);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 12px;
  padding: 14px 18px 16px;
  position: relative;
}
.ev-bubble-head {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--purple);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ev-bubble-text {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.55;
  color: var(--text);
  letter-spacing: 0.01em;
  min-height: 42px;
}
.ev-rejected .ev-bubble {
  background: rgba(255, 80, 80, 0.06);
  border-color: rgba(255, 80, 80, 0.45);
}
.ev-shipped .ev-bubble {
  background: rgba(57, 255, 20, 0.05);
  border-color: rgba(57, 255, 20, 0.35);
}
.ev-axes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.ev-axis {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: all 0.25s ease;
}
.ev-axis-name { text-transform: lowercase; }
.ev-axis-mark {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.12em;
  min-width: 28px;
  text-align: right;
}
.ev-axis-mark::before { content: "···"; }
.ev-axis-active {
  border-color: rgba(168, 85, 247, 0.5);
  background: rgba(168, 85, 247, 0.08);
  color: var(--text);
}
.ev-axis-active .ev-axis-mark::before {
  content: "scanning";
  color: var(--purple);
  letter-spacing: 0.12em;
  animation: ev-blink 0.6s steps(1) infinite;
}
@keyframes ev-blink { 50% { opacity: 0.3; } }
.ev-axis-pass {
  border-color: rgba(57, 255, 20, 0.4);
  background: rgba(57, 255, 20, 0.06);
  color: var(--text);
}
.ev-axis-pass .ev-axis-mark::before {
  content: "✓ pass";
  color: var(--green);
  letter-spacing: 0.06em;
}
.ev-axis-fail {
  border-color: rgba(255, 80, 80, 0.5);
  background: rgba(255, 80, 80, 0.06);
  color: var(--text);
}
.ev-axis-fail .ev-axis-mark::before {
  content: "✗ fail";
  color: #ff7b7b;
  letter-spacing: 0.06em;
}
.ev-result {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 32px;
}
.ev-result-stamp {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 6px 12px;
  border-radius: 4px;
  border: 1.5px solid currentColor;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.ev-stamp-shipped {
  color: var(--green);
  background: rgba(57, 255, 20, 0.08);
  opacity: 1;
  animation: ev-stamp 0.5s cubic-bezier(0.2, 1, 0.4, 1.3);
}
.ev-stamp-rejected {
  color: #ff7b7b;
  background: rgba(255, 80, 80, 0.08);
  opacity: 1;
  animation: ev-stamp 0.5s cubic-bezier(0.2, 1, 0.4, 1.3);
}
@keyframes ev-stamp {
  0% { transform: scale(0.6) rotate(-4deg); opacity: 0; }
  60% { transform: scale(1.08) rotate(-2deg); opacity: 1; }
  100% { transform: scale(1) rotate(-2deg); opacity: 1; }
}
.ev-result-note {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* =========================================
   mine (Outtcast modal): clean dark space, rotating lines
   ========================================= */
/* =========================================
   village mood film (outtcast wow)
   chop wood, carry water - together but apart.
   driven by data-state on .wow-village (see startVillageCycle in script.js)
   ========================================= */
.wow-village {
  padding: 0;
  margin: 0;
}
.wow-village .village-svg {
  display: block;
  width: 100%;
  height: clamp(360px, 48vw, 540px);
  border-radius: 16px;
  border: 1px solid rgba(255, 184, 0, 0.16);
  background: #050709;
  overflow: hidden;
}

/* defaults: all figures and overlays start hidden in state 0 */
.wow-village .vil-chopper-active,
.wow-village .vil-chopper-tired,
.wow-village .vil-chopper-station,
.wow-village .vil-walker,
.wow-village .vil-journaler,
.wow-village .vil-firetender,
.wow-village .vil-distant-chopper,
.wow-village .vil-koan,
.wow-village .vil-tag,
.wow-village .vil-flake,
.wow-village .vil-distant-lantern {
  opacity: 0;
}
.wow-village .vil-flake {
  animation: vil-fall linear infinite;
  animation-play-state: paused;
}
@keyframes vil-fall {
  0%   { transform: translateY(0); opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.7; }
  100% { transform: translateY(540px); opacity: 0; }
}

/* state 1+: snow is drifting, main lantern lit, active chopper visible */
.wow-village[data-state="1"] .vil-flake,
.wow-village[data-state="2"] .vil-flake,
.wow-village[data-state="3"] .vil-flake,
.wow-village[data-state="4"] .vil-flake,
.wow-village[data-state="5"] .vil-flake,
.wow-village[data-state="6"] .vil-flake,
.wow-village[data-state="7"] .vil-flake,
.wow-village[data-state="8"] .vil-flake,
.wow-village[data-state="9"] .vil-flake {
  opacity: 0.7;
  animation-play-state: running;
}

.wow-village .vil-lantern-main { transition: opacity 1.4s ease; }
.wow-village[data-state="1"] .vil-lantern-main,
.wow-village[data-state="2"] .vil-lantern-main,
.wow-village[data-state="3"] .vil-lantern-main,
.wow-village[data-state="4"] .vil-lantern-main,
.wow-village[data-state="5"] .vil-lantern-main,
.wow-village[data-state="6"] .vil-lantern-main,
.wow-village[data-state="7"] .vil-lantern-main,
.wow-village[data-state="8"] .vil-lantern-main,
.wow-village[data-state="9"] .vil-lantern-main {
  opacity: 0.9;
  animation: vil-lantern-pulse 4.6s ease-in-out infinite alternate;
}
@keyframes vil-lantern-pulse {
  from { opacity: 0.7; }
  to   { opacity: 1; }
}

.wow-village .vil-chopper-station { transition: opacity 1.2s ease; }
.wow-village[data-state="1"] .vil-chopper-station,
.wow-village[data-state="2"] .vil-chopper-station,
.wow-village[data-state="3"] .vil-chopper-station,
.wow-village[data-state="4"] .vil-chopper-station,
.wow-village[data-state="5"] .vil-chopper-station,
.wow-village[data-state="6"] .vil-chopper-station,
.wow-village[data-state="7"] .vil-chopper-station,
.wow-village[data-state="8"] .vil-chopper-station,
.wow-village[data-state="9"] .vil-chopper-station {
  opacity: 1;
}

/* CHOPPER ACTIVE - visible during state 1, 2, 3, 6, 7, 8, 9 */
.wow-village .vil-chopper-active { transition: opacity 0.8s ease; }
.wow-village[data-state="1"] .vil-chopper-active,
.wow-village[data-state="2"] .vil-chopper-active,
.wow-village[data-state="3"] .vil-chopper-active,
.wow-village[data-state="6"] .vil-chopper-active,
.wow-village[data-state="7"] .vil-chopper-active,
.wow-village[data-state="8"] .vil-chopper-active,
.wow-village[data-state="9"] .vil-chopper-active {
  opacity: 1;
}
.wow-village .vil-axe-arm {
  transform-origin: 0 2px;
  transform-box: fill-box;
  animation: vil-chop 1.2s ease-in-out infinite;
  animation-play-state: paused;
}
.wow-village[data-state="1"] .vil-axe-arm,
.wow-village[data-state="2"] .vil-axe-arm,
.wow-village[data-state="3"] .vil-axe-arm,
.wow-village[data-state="6"] .vil-axe-arm,
.wow-village[data-state="7"] .vil-axe-arm,
.wow-village[data-state="8"] .vil-axe-arm,
.wow-village[data-state="9"] .vil-axe-arm {
  animation-play-state: running;
}
/* chopper resumes harder after the walker passes */
.wow-village[data-state="6"] .vil-axe-arm,
.wow-village[data-state="7"] .vil-axe-arm,
.wow-village[data-state="8"] .vil-axe-arm,
.wow-village[data-state="9"] .vil-axe-arm {
  animation-duration: 0.85s;
}
@keyframes vil-chop {
  0%   { transform: rotate(-115deg); }
  35%  { transform: rotate(-95deg); }
  55%  { transform: rotate(35deg); }
  70%  { transform: rotate(40deg); }
  100% { transform: rotate(-115deg); }
}

/* CHOPPER TIRED - visible during state 4, 5 */
.wow-village .vil-chopper-tired { transition: opacity 0.6s ease; }
.wow-village[data-state="4"] .vil-chopper-tired,
.wow-village[data-state="5"] .vil-chopper-tired {
  opacity: 1;
}

/* OTHER CAMP FIGURES + lanterns + paths fade in at state 2 */
.wow-village .vil-journaler,
.wow-village .vil-firetender,
.wow-village .vil-distant-chopper,
.wow-village .vil-distant-lantern,
.wow-village .vil-lantern-fire,
.wow-village .vil-lantern-journal,
.wow-village .vil-path {
  transition: opacity 1.6s ease;
}
.wow-village[data-state="2"] .vil-journaler,
.wow-village[data-state="3"] .vil-journaler,
.wow-village[data-state="4"] .vil-journaler,
.wow-village[data-state="5"] .vil-journaler,
.wow-village[data-state="6"] .vil-journaler,
.wow-village[data-state="7"] .vil-journaler,
.wow-village[data-state="8"] .vil-journaler,
.wow-village[data-state="9"] .vil-journaler { opacity: 1; }

.wow-village[data-state="2"] .vil-firetender,
.wow-village[data-state="3"] .vil-firetender,
.wow-village[data-state="4"] .vil-firetender,
.wow-village[data-state="5"] .vil-firetender,
.wow-village[data-state="6"] .vil-firetender,
.wow-village[data-state="7"] .vil-firetender,
.wow-village[data-state="8"] .vil-firetender,
.wow-village[data-state="9"] .vil-firetender { opacity: 1; }

.wow-village[data-state="2"] .vil-distant-chopper,
.wow-village[data-state="3"] .vil-distant-chopper,
.wow-village[data-state="4"] .vil-distant-chopper,
.wow-village[data-state="5"] .vil-distant-chopper,
.wow-village[data-state="6"] .vil-distant-chopper,
.wow-village[data-state="7"] .vil-distant-chopper,
.wow-village[data-state="8"] .vil-distant-chopper,
.wow-village[data-state="9"] .vil-distant-chopper { opacity: 0.7; }

.wow-village[data-state="2"] .vil-distant-lantern,
.wow-village[data-state="3"] .vil-distant-lantern,
.wow-village[data-state="4"] .vil-distant-lantern,
.wow-village[data-state="5"] .vil-distant-lantern,
.wow-village[data-state="6"] .vil-distant-lantern,
.wow-village[data-state="7"] .vil-distant-lantern,
.wow-village[data-state="8"] .vil-distant-lantern,
.wow-village[data-state="9"] .vil-distant-lantern {
  opacity: 0.85;
  animation: vil-lantern-pulse 5.4s ease-in-out infinite alternate;
}
.wow-village .vil-distant-lantern:nth-child(odd) { animation-delay: 1.3s; }

.wow-village[data-state="2"] .vil-lantern-fire,
.wow-village[data-state="3"] .vil-lantern-fire,
.wow-village[data-state="4"] .vil-lantern-fire,
.wow-village[data-state="5"] .vil-lantern-fire,
.wow-village[data-state="6"] .vil-lantern-fire,
.wow-village[data-state="7"] .vil-lantern-fire,
.wow-village[data-state="8"] .vil-lantern-fire,
.wow-village[data-state="9"] .vil-lantern-fire {
  opacity: 0.85;
  animation: vil-lantern-pulse 3.8s ease-in-out infinite alternate;
}

.wow-village[data-state="2"] .vil-lantern-journal,
.wow-village[data-state="3"] .vil-lantern-journal,
.wow-village[data-state="4"] .vil-lantern-journal,
.wow-village[data-state="5"] .vil-lantern-journal,
.wow-village[data-state="6"] .vil-lantern-journal,
.wow-village[data-state="7"] .vil-lantern-journal,
.wow-village[data-state="8"] .vil-lantern-journal,
.wow-village[data-state="9"] .vil-lantern-journal {
  opacity: 0.8;
  animation: vil-lantern-pulse 5.2s ease-in-out infinite alternate;
}

.wow-village[data-state="2"] .vil-path,
.wow-village[data-state="3"] .vil-path,
.wow-village[data-state="4"] .vil-path,
.wow-village[data-state="5"] .vil-path,
.wow-village[data-state="6"] .vil-path,
.wow-village[data-state="7"] .vil-path,
.wow-village[data-state="8"] .vil-path,
.wow-village[data-state="9"] .vil-path { opacity: 0.4; }

/* fire flames flicker (always animated when fire-tender is visible) */
.wow-village .vil-flame {
  transform-origin: center bottom;
  transform-box: fill-box;
  animation: vil-flicker 0.4s ease-in-out infinite alternate;
}
.wow-village .vil-flame-2 { animation-duration: 0.55s; animation-delay: 0.1s; }
.wow-village .vil-flame-3 { animation-duration: 0.32s; animation-delay: 0.2s; }
@keyframes vil-flicker {
  from { transform: scaleY(0.85) scaleX(0.95); opacity: 0.8; }
  to   { transform: scaleY(1.1)  scaleX(1.05); opacity: 1; }
}
.wow-village .vil-candle-flame {
  animation: vil-flicker 0.5s ease-in-out infinite alternate;
  transform-origin: center;
  transform-box: fill-box;
}
.wow-village .vil-distant-axe {
  transform-origin: 0 2px;
  transform-box: fill-box;
  animation: vil-chop 1.6s ease-in-out infinite;
}

/* WALKER traverses left → right at state 3, right → left at state 5 */
.wow-village .vil-walker {
  transform: translate(-80px, 388px);
}
.wow-village[data-state="3"] .vil-walker {
  opacity: 1;
  animation: vil-walk-lr 4.4s linear forwards;
}
.wow-village[data-state="5"] .vil-walker {
  opacity: 1;
  animation: vil-walk-rl 4.4s linear forwards;
}
@keyframes vil-walk-lr {
  from { transform: translate(-80px, 388px); }
  to   { transform: translate(980px, 388px); }
}
@keyframes vil-walk-rl {
  from { transform: translate(980px, 388px); }
  to   { transform: translate(-80px, 388px); }
}
/* legs alternate while walker is visible */
.wow-village[data-state="3"] .vil-walker-leg-l,
.wow-village[data-state="5"] .vil-walker-leg-l {
  animation: vil-step-a 0.42s ease-in-out infinite alternate;
  transform-origin: center top;
  transform-box: fill-box;
}
.wow-village[data-state="3"] .vil-walker-leg-r,
.wow-village[data-state="5"] .vil-walker-leg-r {
  animation: vil-step-b 0.42s ease-in-out infinite alternate;
  transform-origin: center top;
  transform-box: fill-box;
}
@keyframes vil-step-a {
  from { transform: translateY(0); }
  to   { transform: translateY(-2px); }
}
@keyframes vil-step-b {
  from { transform: translateY(-2px); }
  to   { transform: translateY(0); }
}

/* KOAN + TAGLINE typography */
.wow-village .vil-koan-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  fill: #FFE08A;
  letter-spacing: 0.01em;
}
.wow-village .vil-tag-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  fill: rgba(232, 220, 255, 0.78);
  letter-spacing: 0.04em;
}
.wow-village .vil-koan,
.wow-village .vil-tag { transition: opacity 1.4s ease; }
.wow-village[data-state="7"] .vil-koan,
.wow-village[data-state="8"] .vil-koan,
.wow-village[data-state="9"] .vil-koan { opacity: 1; }
.wow-village[data-state="8"] .vil-tag,
.wow-village[data-state="9"] .vil-tag { opacity: 1; }

/* =========================================
   leadflo redesign
   ========================================= */
/* =========================================
   automation pipe (Leadflo)
   ========================================= */
.wow-pipe .wow-frame { background: #08070b; }
.pipe-counter {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}
.pipe-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pipe-pulse 1.4s ease-in-out infinite;
}
@keyframes pipe-pulse {
  0%, 100% { opacity: 0.5; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.15); }
}
.pipe-body {
  position: relative;
  height: 360px;
  display: grid;
  grid-template-columns: 110px 1fr;
}
.pipe-bands {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}
.pipe-band {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.pipe-band-queue {
  color: var(--muted-2);
  background: linear-gradient(to bottom, rgba(138, 147, 168, 0.04), transparent);
}
.pipe-band-exec {
  color: var(--amber);
  background: rgba(255, 184, 0, 0.04);
  border-top: 1px dashed rgba(255, 184, 0, 0.18);
  border-bottom: 1px dashed rgba(57, 255, 20, 0.18);
}
.pipe-band-done {
  color: var(--green);
  background: linear-gradient(to top, rgba(57, 255, 20, 0.04), transparent);
}
.pipe-stream {
  position: relative;
  overflow: hidden;
}
.pipe-stream::before,
.pipe-stream::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  pointer-events: none;
  z-index: 1;
}
.pipe-stream::before { top: 33.333%; background: rgba(255, 184, 0, 0.22); }
.pipe-stream::after { top: 66.666%; background: rgba(57, 255, 20, 0.22); }
.pipe-item {
  position: absolute;
  top: 8px;
  left: 18px;
  right: 18px;
  height: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: var(--muted-2);
  transform: translateY(0);
  transition:
    transform 0.45s cubic-bezier(0.2, 0, 0, 1),
    color 0.4s ease,
    text-shadow 0.4s ease,
    opacity 0.5s ease;
  will-change: transform, color;
}
.pipe-item-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.pipe-item-label { opacity: 0.95; }
.pipe-item[data-state="queue"] {
  color: var(--muted-2);
  opacity: 0.6;
}
.pipe-item[data-state="exec"] {
  color: var(--amber);
  text-shadow: 0 0 10px rgba(255, 184, 0, 0.5);
  opacity: 1;
}
.pipe-item[data-state="exec"] .pipe-item-dot {
  box-shadow: 0 0 8px rgba(255, 184, 0, 0.8);
}
.pipe-item[data-state="done"] {
  color: var(--green);
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
  opacity: 1;
}
.pipe-item[data-state="done"] .pipe-item-dot {
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.8);
}
.pipe-item[data-state="exit"] {
  opacity: 0 !important;
}

/* =========================================
   responsive / new wows
   ========================================= */
@media (max-width: 700px) {
  .ev-axis { font-size: 10px; padding: 8px 10px; }
  .ev-bubble-text { font-size: 12px; }
  .wow-village .village-svg { height: clamp(300px, 70vw, 380px); }
  .wow-village .vil-koan-line { font-size: 18px; }
  .wow-village .vil-tag-line { font-size: 13px; }
}

/* ============================================ */
/* OUTTCAST: village board (waitlist) wow       */
/* ============================================ */
.wow-board { width: 100%; }
.wow-board .wow-frame {
  background: #0a0d14;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}
.wow-board .wow-frame-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #9CA3AF;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.wow-board .wow-frame-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent, #A855F7);
  box-shadow: 0 0 10px var(--accent, #A855F7);
  animation: board-dot-pulse 1.6s ease-in-out infinite;
}
@keyframes board-dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.wow-board .board-counter {
  margin-left: auto;
  color: var(--accent, #A855F7);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.4px;
}
.wow-board .board-counter-n {
  color: #fff;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.wow-board .board-counter-tail { color: #9CA3AF; }

.wow-board .board-feed {
  height: clamp(240px, 38vh, 360px);
  overflow-y: auto;
  position: relative;
  padding: 10px 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: #d1d5db;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 6%, #000 94%, transparent 100%);
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.wow-board .board-feed::-webkit-scrollbar { width: 4px; }
.wow-board .board-feed::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

.wow-board .board-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  white-space: nowrap;
  overflow: hidden;
}
.wow-board .board-row-new {
  animation: board-slide-in 0.7s cubic-bezier(0.2, 0, 0, 1) both;
}
@keyframes board-slide-in {
  0% {
    transform: translateY(-14px);
    opacity: 0;
    background: rgba(168,85,247,0.22);
  }
  60% { background: rgba(168,85,247,0.18); }
  100% {
    transform: translateY(0);
    opacity: 1;
    background: transparent;
  }
}
.wow-board .board-name {
  color: #FFE08A;
  font-weight: 700;
  flex: 0 0 auto;
}
.wow-board .board-sep {
  color: rgba(255,255,255,0.18);
  flex: 0 0 auto;
}
.wow-board .board-what {
  color: #d1d5db;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wow-board .board-day {
  color: #9CA3AF;
  font-size: 11px;
  flex: 0 0 auto;
  letter-spacing: 0.5px;
}

.wow-board .board-form {
  display: flex;
  gap: 8px;
  padding: 14px 18px 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.25);
}
.wow-board .board-input {
  flex: 1 1 auto;
  background: #0a0d14;
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 11px 13px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.wow-board .board-input::placeholder { color: rgba(255,255,255,0.35); }
.wow-board .board-input:focus {
  border-color: var(--accent, #A855F7);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.18);
}
.wow-board .board-input-email { max-width: 220px; }
.wow-board .board-submit {
  background: var(--accent, #A855F7);
  color: #fff;
  border: none;
  padding: 11px 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: filter 0.2s, transform 0.15s;
  flex: 0 0 auto;
}
.wow-board .board-submit:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}
.wow-board .board-submit:active { transform: translateY(0); }
.wow-board .board-status {
  padding: 0 18px 14px;
  color: var(--accent, #A855F7);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 1px;
  min-height: 18px;
}

/* ============================================ */
/* BACKEND: ops control room wow                */
/* ============================================ */
.wow-ops { width: 100%; }
.wow-ops .wow-frame {
  background: #0a0d14;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}
.wow-ops .wow-frame-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #9CA3AF;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.wow-ops .wow-frame-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent, #FFB800);
  box-shadow: 0 0 10px var(--accent, #FFB800);
  animation: ops-dot-pulse 1.4s ease-in-out infinite;
}
@keyframes ops-dot-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}
.wow-ops .ops-counter {
  margin-left: auto;
  color: var(--accent, #FFB800);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.2px;
}
.wow-ops .ops-counter-n {
  color: #fff;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.wow-ops .ops-counter-tail { color: #9CA3AF; }

.wow-ops .ops-grid {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
}
.wow-ops .ops-lane {
  display: grid;
  grid-template-columns: 200px 1fr 80px;
  gap: 14px;
  align-items: center;
  padding: 10px 18px;
  border-left: 2px solid var(--lane, #FFB800);
  transition: background 0.25s ease;
}
.wow-ops .ops-lane-pulse {
  background: linear-gradient(90deg, color-mix(in srgb, var(--lane) 16%, transparent) 0%, transparent 70%);
}
.wow-ops .ops-lane-head {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.wow-ops .ops-lane-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lane, #FFB800);
  box-shadow: 0 0 8px var(--lane, #FFB800);
}
.wow-ops .ops-lane-name {
  color: var(--lane, #FFB800);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.6px;
  font-weight: 700;
  text-transform: uppercase;
}
.wow-ops .ops-lane-meta {
  color: #6b7280;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-basis: 100%;
}
.wow-ops .ops-lane-track {
  position: relative;
  height: 6px;
  background: rgba(255,255,255,0.04);
  border-radius: 3px;
  overflow: hidden;
}
.wow-ops .ops-packet {
  position: absolute;
  top: 0;
  left: -8%;
  width: 14px;
  height: 6px;
  border-radius: 3px;
  background: var(--lane, #FFB800);
  box-shadow: 0 0 8px var(--lane, #FFB800);
  animation: ops-packet-slide 4s linear infinite;
}
@keyframes ops-packet-slide {
  0% { left: -8%; opacity: 0; }
  6% { opacity: 1; }
  94% { opacity: 1; }
  100% { left: 102%; opacity: 0; }
}
.wow-ops .ops-lane-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: #fff;
  text-align: right;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.wow-ops .ops-legend {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #6b7280;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.wow-ops .ops-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.wow-ops .ops-legend-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent, #FFB800);
  box-shadow: 0 0 6px var(--accent, #FFB800);
  animation: ops-dot-pulse 1.4s ease-in-out infinite;
}
.wow-ops .ops-legend-sep { color: rgba(255,255,255,0.18); }

@media (max-width: 720px) {
  .wow-board .board-form { flex-wrap: wrap; }
  .wow-board .board-input-email { max-width: none; }
  .wow-board .board-feed { font-size: 12px; }
  .wow-board .board-row { gap: 7px; padding: 7px 14px; }
  .wow-ops .ops-lane { grid-template-columns: 1fr; gap: 8px; padding: 12px 16px; }
  .wow-ops .ops-lane-count { text-align: left; }
}
