/* PLAYCANAL — landing streaming */
:root {
  --bg-deep: #050810;
  --bg-card: rgba(12, 18, 36, 0.72);
  --bg-card-hover: rgba(18, 28, 52, 0.88);
  --border: rgba(94, 234, 255, 0.12);
  --accent: #22d3ee;
  --accent-soft: rgba(34, 211, 238, 0.35);
  --accent-2: #a78bfa;
  --text: #e8edf7;
  --text-muted: #8b9bb8;
  --pro: #3b82f6;
  --editors: #22c55e;
  --creators: #eab308;
  --business: #ef4444;
  --radius: 16px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Fondo animado: flujos de streaming (SVG + velo) */
.stream-flow-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 1;
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 42%, #000 0%, rgba(0, 0, 0, 0.45) 55%, transparent 82%);
  mask-image: radial-gradient(ellipse 85% 75% at 50% 42%, #000 0%, rgba(0, 0, 0, 0.45) 55%, transparent 82%);
}

.stream-flow-svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 110%;
  min-width: 1000px;
  height: 110%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}

.stream-flow-path {
  fill: none;
  stroke-dasharray: 14 28;
  stroke-dashoffset: 0;
  animation: streamFlowDash 22s linear infinite;
}

.stream-flow-path--a {
  animation-duration: 28s;
  opacity: 0.85;
}

.stream-flow-path--b {
  animation-duration: 36s;
  animation-direction: reverse;
  opacity: 0.65;
}

.stream-flow-path--c {
  animation-duration: 32s;
  opacity: 0.55;
}

.stream-flow-path--d {
  animation-duration: 40s;
  animation-direction: reverse;
  opacity: 0.5;
}

.stream-flow-path--e {
  animation-duration: 26s;
  opacity: 0.6;
}

.stream-flow-path--f {
  animation-duration: 34s;
  opacity: 0.55;
}

@keyframes streamFlowDash {
  to {
    stroke-dashoffset: -504;
  }
}

.stream-node {
  animation: streamNodePulse 3.2s ease-in-out infinite;
}

.stream-node--delay {
  animation-delay: 0.8s;
}

.stream-node--delay2 {
  animation-delay: 1.6s;
}

@keyframes streamNodePulse {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.9;
  }
}

/* Textura fina para profundidad (sin ruido pesado) */
.stream-flow-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Ambient grid */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

.bg-glow {
  position: fixed;
  width: 80vmin;
  height: 80vmin;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.bg-glow--1 {
  top: -20%;
  right: -10%;
  background: radial-gradient(circle, #22d3ee 0%, transparent 70%);
  animation: floatGlow 18s ease-in-out infinite;
}

.bg-glow--2 {
  bottom: -20%;
  left: -10%;
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  animation: floatGlow 22s ease-in-out infinite reverse;
}

@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(4%, -3%) scale(1.08); }
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1.25rem 0;
  gap: 0.75rem 1rem;
}

.logo {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), #06b6d4);
  color: #041018;
  box-shadow: 0 0 24px var(--accent-soft);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-soft);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Hero */
.hero {
  padding: 2rem 0 3rem;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 1rem;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 42ch;
  margin: 0 auto 1.25rem;
}

.hero-value {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 56ch;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.hero-value strong {
  color: var(--text);
  font-weight: 700;
}

/* Flow diagram */
.flow-section {
  margin: 2rem auto 3rem;
  max-width: 900px;
}

.flow-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.flow-card h2 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin: 0 0 1rem;
  text-align: center;
}

.flow-svg {
  width: 100%;
  height: auto;
  display: block;
  max-height: none;
  touch-action: pan-y;
}

/* Diagrama horizontal: tablet y escritorio */
.flow-svg--desktop {
  display: block;
}

/* Diagrama vertical: móviles */
.flow-svg--mobile {
  display: none;
  max-width: 100%;
}

@media (max-width: 640px) {
  .flow-svg--desktop {
    display: none;
  }

  .flow-svg--mobile {
    display: block;
  }

  .flow-section {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    max-width: none;
  }

  .flow-card {
    padding: 1rem 0.75rem;
  }
}

.flow-path {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 8 12;
  animation: dashFlow 1.2s linear infinite;
}

.flow-path--slow {
  animation-duration: 2s;
  opacity: 0.7;
}

@keyframes dashFlow {
  to {
    stroke-dashoffset: -20;
  }
}

.flow-node {
  cursor: default;
  transition: transform 0.3s ease;
  transform-box: fill-box;
  transform-origin: center;
}

.flow-node rect,
.flow-node circle {
  transition: filter 0.3s ease;
}

.flow-node:hover {
  transform: scale(1.02);
}

.flow-node:hover rect,
.flow-node:hover circle {
  filter: drop-shadow(0 0 12px var(--accent-soft));
}

.flow-pulse {
  animation: nodePulse 2.5s ease-in-out infinite;
}

@keyframes nodePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

.packet {
  fill: var(--accent);
  filter: drop-shadow(0 0 6px var(--accent));
}

/* Galería: partes del sistema */
.system-section {
  margin-bottom: 3.5rem;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 288px), 1fr));
  gap: 1.25rem;
}

.system-shot {
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.system-shot:hover {
  border-color: rgba(34, 211, 238, 0.32);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.38);
  transform: translateY(-3px);
}

.system-shot:focus-within {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.system-shot img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 640 / 400;
  object-fit: cover;
  vertical-align: middle;
  background: #0a0f1c;
}

.system-shot figcaption {
  padding: 1rem 1.15rem 1.2rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}

.system-shot figcaption span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.45;
}

.system-note {
  margin: 1.5rem 0 0;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  background: rgba(34, 211, 238, 0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.82rem;
  text-align: center;
  line-height: 1.5;
}

/* Reproductor HLS demo (profesional) */
.pro-player-section {
  margin-bottom: 3.5rem;
}

.pro-player {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

@media (min-width: 900px) {
  .pro-player {
    grid-template-columns: minmax(220px, 280px) 1fr;
  }
}

.pro-player-sidebar {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  max-height: 320px;
}

@media (min-width: 900px) {
  .pro-player-sidebar {
    border-bottom: none;
    border-right: 1px solid var(--border);
    max-height: none;
    min-height: 420px;
  }
}

.pro-player-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
}

.pro-player-sidebar-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pro-player-live {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #fecaca;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.45);
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}

.pro-player-channel-list {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  -webkit-overflow-scrolling: touch;
}

.pro-player-channel {
  text-align: left;
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.pro-player-channel:hover {
  color: var(--text);
  border-color: var(--border);
  background: rgba(34, 211, 238, 0.06);
}

.pro-player-channel.is-active {
  color: var(--text);
  border-color: rgba(34, 211, 238, 0.45);
  background: rgba(34, 211, 238, 0.1);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.12);
}

.pro-player-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pro-player-topbar {
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.pro-player-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.pro-player-status {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.pro-player-stage {
  position: relative;
  background: #000;
  aspect-ratio: 16 / 9;
}

.pro-player-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  vertical-align: middle;
}

.pro-player-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.55);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
}

.pro-player--loading .pro-player-video {
  opacity: 0.35;
}

.pro-player-spinner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid rgba(34, 211, 238, 0.2);
  border-top-color: var(--accent);
  animation: spin 0.85s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.pro-player-error {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(127, 29, 29, 0.92);
  border: 1px solid rgba(252, 165, 165, 0.5);
  color: #fecaca;
  font-size: 0.8rem;
  line-height: 1.45;
  z-index: 3;
}

.pro-player-toolbar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1rem 0.85rem;
  background: linear-gradient(180deg, rgba(12, 18, 36, 0.98), rgba(5, 8, 16, 0.99));
  border-top: 1px solid var(--border);
}

.pro-player-spacer {
  flex: 1;
}

.pro-player-iconbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.pro-player-iconbtn:hover {
  border-color: rgba(34, 211, 238, 0.4);
  background: rgba(34, 211, 238, 0.1);
  color: var(--accent);
}

.pro-player-iconbtn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.pro-player-play .pro-player-icon--pause {
  display: none;
}

.pro-player-play.is-playing .pro-player-icon--play {
  display: none;
}

.pro-player-play.is-playing .pro-player-icon--pause {
  display: block;
}

.pro-player-vol {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}

.pro-player-vol-icon {
  color: var(--text-muted);
  flex-shrink: 0;
}

.pro-player-volume {
  width: 100px;
  max-width: 28vw;
  accent-color: var(--accent);
}

@media (max-width: 480px) {
  .pro-player-volume {
    width: 72px;
  }
}

/* Section titles */
.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  text-align: center;
}

.section-sub {
  color: var(--text-muted);
  text-align: center;
  max-width: 52ch;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
}

/* Pricing */
.pricing-locked {
  position: relative;
  isolation: isolate;
  margin-bottom: 4rem;
}

.pricing-locked .section-sub {
  margin-bottom: 1.75rem;
}

.pricing-locked .pricing-grid {
  margin-bottom: 0;
}

.pricing-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  background: rgba(5, 8, 16, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(34, 211, 238, 0.12);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.35);
}

.pricing-overlay-inner {
  max-width: 26rem;
  text-align: center;
  padding: 1.75rem 1.5rem;
  border-radius: 14px;
  background: rgba(12, 18, 36, 0.92);
  border: 1px solid rgba(34, 211, 238, 0.22);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.pricing-overlay-badge {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.35);
}

.pricing-overlay-title {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.pricing-overlay-text {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.pricing-overlay-wa {
  width: 100%;
  max-width: 100%;
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  color: #fff !important;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

.pricing-overlay-wa:hover {
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.45);
  filter: brightness(1.05);
}

.pricing-overlay-hint {
  margin: 1rem 0 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--text-muted);
  opacity: 0.9;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.price-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.25s ease, border-color 0.25s, box-shadow 0.25s;
}

.price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 3px;
  border-radius: 0 0 4px 4px;
  opacity: 0.9;
}

.price-card--pro::before { background: var(--pro); }
.price-card--editors::before { background: var(--editors); }
.price-card--creators::before { background: var(--creators); }
.price-card--business::before { background: var(--business); }

.price-card:hover,
.price-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.price-card.featured {
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.15);
}

.price-tag {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0.5rem 0 0;
}

.price-tag small {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.price-card h3 {
  margin: 0;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0.35rem 0 1rem;
  min-height: 2.6em;
}

.price-features {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.price-features li {
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.75rem;
}

.price-extras {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.chip {
  font-size: 0.72rem;
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.price-card .btn {
  width: 100%;
}

/* Features blocks */
.features {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.feature-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.feature-block h2 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
}

.feature-list {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .feature-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-item {
  padding: 1rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid transparent;
  transition: border-color 0.2s;
}

.feature-item:hover {
  border-color: var(--border);
}

.feature-item strong {
  display: block;
  color: var(--accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.feature-item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Cloud strip */
.cloud-strip {
  text-align: center;
  padding: 2.5rem 1.5rem;
  margin-bottom: 3rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(124, 58, 237, 0.08));
  border: 1px solid var(--border);
}

.cloud-strip h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.cloud-strip p {
  margin: 0;
  color: var(--text-muted);
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.pill {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 600;
}

.pill--accent {
  border-color: rgba(34, 211, 238, 0.45);
  background: rgba(34, 211, 238, 0.1);
  color: var(--accent);
}

.monetize-callout {
  margin-top: 1.75rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 56ch;
  padding: 1.25rem 1.35rem;
  text-align: left;
  background: rgba(0, 0, 0, 0.28);
  border-radius: 14px;
  border: 1px solid rgba(34, 211, 238, 0.18);
}

.monetize-callout h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.monetize-callout p {
  margin: 0;
  max-width: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.monetize-callout strong {
  color: var(--text);
  font-weight: 600;
}

/* Dashboard */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 900px) {
  .dashboard-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.dashboard-copy {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.dashboard-copy p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 1rem;
}

.dashboard-copy p:last-child {
  margin-bottom: 0;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 500px) {
  .metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

.metric {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  font-size: 0.82rem;
  transition: border-color 0.2s, transform 0.2s;
}

.metric:hover {
  border-color: rgba(34, 211, 238, 0.35);
  transform: scale(1.02);
}

.metric-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

/* CTA */
.cta {
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-card), rgba(12, 18, 36, 0.5));
  border: 1px solid var(--border);
}

.cta h2 {
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
}

.cta p {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.site-footer {
  text-align: center;
  padding: 2rem 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.dashboard-list {
  margin: 0;
  columns: 1;
  column-gap: 2rem;
}

@media (min-width: 640px) {
  .dashboard-list {
    columns: 2;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }

  .system-shot:hover {
    transform: none;
  }

  .stream-flow-bg {
    opacity: 0.35;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .stream-flow-path {
    animation: none;
    opacity: 0.2;
  }

  .stream-node {
    animation: none;
    opacity: 0.4;
  }

  .stream-flow-noise {
    display: none;
  }

  .pricing-overlay {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .pro-player-spinner {
    animation: none;
  }

  .pro-player-live {
    animation: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    row-gap: 0.65rem;
  }

  .site-header .btn--primary {
    min-height: 44px;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
  }

  .site-header nav {
    order: 3;
    flex: 1 1 100%;
    min-width: 0;
  }

  .nav-links {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.35rem 0 0.65rem;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    mask-image: linear-gradient(90deg, transparent 0, #000 8px, #000 calc(100% - 8px), transparent 100%);
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0.35rem 0.15rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .hero {
    padding-top: 1rem;
  }

  .hero-badge {
    font-size: 0.68rem;
    padding: 0.3rem 0.65rem;
  }

  .cta .btn {
    display: block;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    min-height: 48px;
  }

  .cta .btn + .btn {
    margin-top: 0.65rem;
  }
}

@media (min-width: 641px) {
  .cta .btn + .btn {
    margin-left: 0.5rem;
  }
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
