﻿/* StreamPilot — pages.css: pagina-specifieke stijlen */
/* =======================================================================
   8) PAGES
   ======================================================================= */
/* â”€â”€ Landing page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Hero */
.lp-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 8px 0 40px;
}
.lp-hero__badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(253,100,30,.4);
  background: rgba(253,100,30,.1);
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: .03em;
}
.lp-hero__title {
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 14px;
  letter-spacing: -.5px;
}
.lp-hero__sub {
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.6;
  max-width: 52ch;
  margin-bottom: 24px;
}
.lp-hero__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn--lg { padding: 11px 22px; font-size: 0.875rem; }

/* Mock window */
.lp-mock {
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
}
.lp-mock__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.03);
}
.lp-mock__dot { width: 10px; height: 10px; border-radius: 50%; }
.lp-mock__dot--r { background: #ff5f57; }
.lp-mock__dot--y { background: #febc2e; }
.lp-mock__dot--g { background: #28c840; }
.lp-mock__title { font-size: 0.6875rem; color: var(--muted); margin-left: 6px; }
.lp-mock__body { padding: 16px; display: flex; flex-direction: column; gap: 14px; }

.lp-mock__stat-row { display: flex; gap: 12px; flex-wrap: wrap; }
.lp-mock__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 14px;
  flex: 1;
  min-width: 90px;
}
.lp-mock__stat-label { font-size: var(--text-2xs); color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.lp-mock__stat-val { font-size: 1rem; font-weight: 700; }
.lp-mock__stat--live {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #28c840;
  background: rgba(40,200,64,.08);
  border-color: rgba(40,200,64,.25);
}
.lp-mock__live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #28c840;
  animation: lp-pulse 1.4s ease-in-out infinite;
}
@keyframes lp-pulse {
  0%,100% { opacity: 1; }
  50% { opacity: .35; }
}

.lp-mock__goal-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
}
.lp-mock__goal-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.lp-mock__alert {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-xs);
  padding: 8px 12px;
  border-radius: var(--radius);
  background: rgba(253,100,30,.1);
  border: 1px solid rgba(253,100,30,.25);
  color: var(--accent);
}

.lp-mock__overlay-row { display: flex; gap: 8px; flex-wrap: wrap; }
.lp-mock__overlay-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6875rem;
  font-family: monospace;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  color: var(--text);
}
.lp-mock__overlay-item--off { color: var(--muted); }
.lp-mock__overlay-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #28c840;
  flex-shrink: 0;
}
.lp-mock__overlay-dot--off { background: rgba(255,255,255,.2); }

.lp-mock__cmd-row { display: flex; gap: 6px; flex-wrap: wrap; }
.lp-mock__cmd {
  font-size: 0.6875rem;
  font-family: monospace;
  padding: 3px 10px;
  border-radius: 6px;
  background: rgba(124,58,237,.15);
  border: 1px solid rgba(124,58,237,.3);
  color: #a78bfa;
}

/* Section */
.lp-section { margin-top: 48px; }
.lp-section--steps { margin-top: 40px; }
.lp-section__title { font-size: var(--text-2xl); font-weight: 800; margin-bottom: 6px; }
.lp-section__sub { color: var(--muted); font-size: 0.875rem; margin-bottom: 24px; }

/* Feature grid */
.lp-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.lp-feature {
  padding: 18px 20px;
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  transition: border-color .15s, background .15s;
}
.lp-feature:hover { border-color: rgba(255,255,255,.15); background: rgba(255,255,255,.055); }
.lp-feature__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.lp-feature__icon--orange { background: rgba(253,100,30,.15); color: #fd641e; }
.lp-feature__icon--purple { background: rgba(124,58,237,.15); color: #a78bfa; }
.lp-feature__icon--blue   { background: rgba(59,130,246,.15); color: #60a5fa; }
.lp-feature__icon--green  { background: rgba(16,185,129,.15); color: #34d399; }
.lp-feature__icon--yellow { background: rgba(245,158,11,.15); color: #fbbf24; }
.lp-feature__icon--teal   { background: rgba(20,184,166,.15); color: #2dd4bf; }
.lp-feature h3 { font-size: 0.875rem; font-weight: 700; margin-bottom: 5px; }
.lp-feature p  { font-size: var(--text-sm); color: var(--muted); line-height: 1.55; margin: 0; }

/* Steps */
.lp-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.lp-step {
  padding: 18px 20px;
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  width: 100%;
}
.lp-step__num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 800;
  margin-bottom: 10px;
}
.lp-step h3 { font-size: 0.875rem; font-weight: 700; margin-bottom: 4px; }
.lp-step p  { font-size: var(--text-sm); color: var(--muted); line-height: 1.55; margin: 0; }
.lp-step__arrow { font-size: 1.25rem; color: var(--muted); align-self: center; display: none; }

/* Bottom CTA */
.lp-cta {
  margin-top: 48px;
  padding: 36px 24px;
  border-radius: var(--radius2);
  border: 1px solid rgba(253,100,30,.3);
  background: rgba(253,100,30,.07);
  text-align: center;
}
.lp-cta h2 { font-size: var(--text-2xl); font-weight: 800; margin-bottom: 8px; }
.lp-cta p  { color: var(--muted); font-size: 0.875rem; margin-bottom: 20px; }

/* Responsive */
.bar{
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: .9;
}

.toast{
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 14px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  color: var(--text);
  font-weight: 700;
  max-width: 320px;
}

