/* ============================================================
   VIDEO-STREAMS.NL — Design System
   Dark/light theme • Orange accent • Space Grotesk + DM Sans
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* --- Licht theme (standaard) ------------------------------ */
:root {
  --bg:           #f6f8fa;
  --bg-2:         #ffffff;
  --bg-3:         #eaeef2;
  --accent:       #d63900;
  --accent-dim:   rgba(214, 57, 0, 0.08);
  --accent-glow:  rgba(214, 57, 0, 0.18);
  --text:         #1c2128;
  --text-muted:   #57606a;
  --border:       rgba(0, 0, 0, 0.1);
  --border-acc:   rgba(214, 57, 0, 0.28);
  --radius:       0.75rem;
  --radius-lg:    1.5rem;
  --f-display:    'Space Grotesk', sans-serif;
  --f-body:       'DM Sans', sans-serif;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
  --t:            0.2s;
  --t-med:        0.4s;
  --nav-blur-bg:  rgba(13, 17, 23, 0.95);
  --shadow:       0 4px 24px rgba(0, 0, 0, 0.1);
}

/* --- Donker theme ----------------------------------------- */
[data-theme="dark"] {
  --bg:           #0d1117;
  --bg-2:         #161b22;
  --bg-3:         #21262d;
  --accent:       #ff4d00;
  --accent-dim:   rgba(255, 77, 0, 0.12);
  --accent-glow:  rgba(255, 77, 0, 0.25);
  --text:         #e6edf3;
  --text-muted:   #8b949e;
  --border:       rgba(255, 255, 255, 0.1);
  --border-acc:   rgba(255, 77, 0, 0.32);
  --nav-blur-bg:  rgba(13, 17, 23, 0.88);
  --shadow:       0 4px 24px rgba(0, 0, 0, 0.35);
}

/* --- Nav + footer altijd donker (logo is wit — werkt op donkere bg) --- */
.nav {
  color: #e6edf3;
}
.nav__links a { color: rgba(230,237,243,0.85); }
.nav__links a:hover,
.nav__links a.active { color: #ffffff; }
.nav__phone { color: rgba(230,237,243,0.7) !important; }
.nav__phone strong { color: #e6edf3 !important; }
.nav__toggle span { background: #e6edf3; }
.footer {
  background: #161b22 !important;
  border-top-color: rgba(255,255,255,0.1) !important;
}
.footer__tagline,
.footer__copy { color: #8b949e !important; }
.footer__col h5 { color: #e6edf3 !important; }
.footer__links a { color: #8b949e !important; }
.footer__links a:hover { color: #ff4d00 !important; }
.footer__legal a { color: #8b949e !important; }
.footer__legal a:hover { color: #e6edf3 !important; }

/* --- Reset ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scrollbar-gutter: stable; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--f-body); }

/* --- Typography ------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}
h1 { font-size: clamp(2.75rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; font-weight: 600; letter-spacing: -0.01em; }
p  { color: var(--text-muted); line-height: 1.75; }

.accent     { color: var(--accent); }
.text-light { color: var(--text); }

/* --- Layout ----------------------------------------------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section    { padding: 6rem 0; }
.section-sm { padding: 3.5rem 0; }

/* --- Navigation ------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: #0d1117;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.nav.scrolled {
  background: var(--nav-blur-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 1px 32px rgba(0,0,0,0.18);
  padding: 0.75rem 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__logo img {
  height: 44px;
  width: auto;
}

/* --- Theme toggle ----------------------------------------- */
.theme-toggle {
  width: 36px; height: 36px;
  border-radius: 0.5rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--t) var(--ease);
  flex-shrink: 0;
}
.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}
/* Default (licht): toon maan → klik = naar donker */
.theme-toggle .icon-sun  { display: none; }
.theme-toggle .icon-moon { display: block; }
/* Donker: toon zon → klik = naar licht */
[data-theme="dark"] .theme-toggle .icon-sun  { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(230,237,243,0.85);
  transition: color var(--t) var(--ease);
  letter-spacing: 0.01em;
}
.nav__links a:hover { color: #ff4d00; }
.nav__links a.active { color: #ffffff; }
.nav__right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav__phone {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.nav__phone strong {
  color: var(--text);
  font-family: var(--f-display);
  font-weight: 600;
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.4rem;
}
.nav__toggle span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  display: block;
}
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile overlay */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  padding: 6rem 2rem 2rem;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  transition: color var(--t) var(--ease);
}
.nav__mobile a:hover { color: var(--accent); }
.nav__mobile .btn {
  margin-top: 2rem;
  width: 100%;
  justify-content: center;
}

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  border: none;
  transition: all var(--t) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover {
  background: #e64400;
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 10px 28px var(--accent-glow);
  transition-timing-function: var(--ease-spring);
}
.btn:active {
  transform: scale(0.96) !important;
  transition-duration: 0.1s;
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}
.btn svg { flex-shrink: 0; }

/* --- Glass card ------------------------------------------- */
.glass {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 4px 24px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* --- Section label ---------------------------------------- */
.label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.label::before {
  content: '';
  width: 18px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* --- Hero ------------------------------------------------- */
.hero {
  display: flex;
  align-items: flex-start;
  padding-top: 7rem;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -25%;
  right: -15%;
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(255, 77, 0, 0.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 77, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--accent-dim);
  border: 1px solid var(--border-acc);
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.65); }
}
.hero__title { margin-bottom: 1.5rem; }
.hero__desc {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero__meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}
.hero__meta-item svg { color: var(--accent); }

/* Hero visual (right side) */
.hero__visual {
  position: relative;
}
.stream-panel {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.06);
}
.stream-panel__bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-3);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot--red    { background: #ff5f56; }
.dot--yellow { background: #febc2e; }
.dot--green  { background: #28c840; }
.stream-panel__url {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--f-display);
  letter-spacing: 0.02em;
}
.stream-panel__body { padding: 1.5rem; }

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  background: rgba(255, 77, 0, 0.1);
  border: 1px solid var(--border-acc);
  border-radius: 2rem;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.live-badge::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 1s ease-in-out infinite;
}
.stream-title {
  font-family: var(--f-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}
.waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 40px;
  margin-bottom: 1.25rem;
}
.waveform__bar {
  width: 4px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.7;
  animation: wave 1.2s ease-in-out infinite;
}
.waveform__bar:nth-child(1)  { animation-delay: 0s;    height: 20%; }
.waveform__bar:nth-child(2)  { animation-delay: 0.1s;  height: 45%; }
.waveform__bar:nth-child(3)  { animation-delay: 0.2s;  height: 70%; }
.waveform__bar:nth-child(4)  { animation-delay: 0.3s;  height: 90%; }
.waveform__bar:nth-child(5)  { animation-delay: 0.4s;  height: 60%; }
.waveform__bar:nth-child(6)  { animation-delay: 0.5s;  height: 100%; }
.waveform__bar:nth-child(7)  { animation-delay: 0.6s;  height: 75%; }
.waveform__bar:nth-child(8)  { animation-delay: 0.7s;  height: 50%; }
.waveform__bar:nth-child(9)  { animation-delay: 0.8s;  height: 30%; }
.waveform__bar:nth-child(10) { animation-delay: 0.9s;  height: 55%; }
.waveform__bar:nth-child(11) { animation-delay: 1.0s;  height: 80%; }
.waveform__bar:nth-child(12) { animation-delay: 1.1s;  height: 40%; }
@keyframes wave {
  0%, 100% { transform: scaleY(0.4); }
  50%       { transform: scaleY(1); }
}
.stream-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.stream-stat {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.875rem;
  text-align: center;
}
.stream-stat__val {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  display: block;
}
.stream-stat__key {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  display: block;
}
.protocol-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.ptag {
  font-family: var(--f-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0.4rem;
  padding: 0.25rem 0.5rem;
}
.ptag--on {
  color: var(--accent);
  border-color: var(--border-acc);
  background: var(--accent-dim);
}

/* --- Marquee strip ---------------------------------------- */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 0.875rem 0;
  user-select: none;
}
.marquee-track {
  display: flex;
  gap: 3.5rem;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
  font-family: var(--f-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.marquee-item::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- Stats row -------------------------------------------- */
.stats-strip {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.stat-cell {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-cell:last-child { border-right: none; }
.stat-cell__val {
  font-family: var(--f-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.4rem;
  display: block;
}
.stat-cell__val span { color: var(--accent); }
.stat-cell__lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Bento grid ------------------------------------------- */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.bento__item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--t) var(--ease), transform var(--t) var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.bento__item:hover {
  border-color: var(--border-acc);
  transform: translateY(-2px);
}
.bento__item--wide { grid-column: span 2; }
.bento__item--accent {
  background: linear-gradient(135deg, rgba(255,77,0,0.1) 0%, rgba(255,77,0,0.03) 100%);
  border-color: var(--border-acc);
}
.bento__icon {
  width: 42px; height: 42px;
  background: var(--accent-dim);
  border: 1px solid var(--border-acc);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.bento__title {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}
.bento__desc { font-size: 0.875rem; line-height: 1.65; flex-grow: 1; }
.bento__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 0.5rem;
  transition: gap var(--t) var(--ease);
}
.bento__link:hover { gap: 0.6rem; }
.bento__usecases {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.875rem;
}
.bento__usecase {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border-acc);
  border-radius: 2rem;
  padding: 0.25rem 0.65rem;
}

/* --- Lokale omroepen opties-grid ---- */
.omroep-opties {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.omroep-optie {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 2px);
}
.omroep-optie__icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.omroep-optie strong {
  display: block;
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.omroep-optie span {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}
@media (max-width: 640px) {
  .omroep-opties { grid-template-columns: 1fr; }
}

/* --- Pricing --------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pricing-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: border-color var(--t) var(--ease), transform var(--t) var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  border-color: var(--border-acc);
  transform: translateY(-3px);
}
.pricing-card--pop {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(255,77,0,0.07) 0%, var(--bg-2) 60%);
}
.pricing-card__badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 2rem;
  white-space: nowrap;
  font-family: var(--f-display);
}
.pricing-card__name {
  font-family: var(--f-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.25rem;
}
.pricing-card__eur {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-muted);
  font-family: var(--f-display);
  align-self: flex-start;
  margin-top: 0.35rem;
}
.pricing-card__amt {
  font-family: var(--f-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.pricing-card__period {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.pricing-card__hr {
  height: 1px;
  background: var(--border);
  margin: 1.25rem 0;
}
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
  margin-bottom: 1.75rem;
}
.pricing-card__feat {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.feat-check {
  width: 16px; height: 16px;
  min-width: 16px;
  margin-top: 1px;
  color: var(--accent);
  flex-shrink: 0;
}
.pricing-card .btn { width: 100%; justify-content: center; }

/* --- Use case grid ---------------------------------------- */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.usecase-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--t) var(--ease);
  text-decoration: none;
}
.usecase-card:hover {
  border-color: var(--border-acc);
  transform: translateY(-2px);
}
.usecase-card__icon {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border: 1px solid var(--border-acc);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.usecase-card__title {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}
.usecase-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  flex-grow: 1;
  line-height: 1.65;
}
.usecase-card__arrow {
  color: var(--accent);
  align-self: flex-end;
}

/* --- CTA banner ------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, rgba(255,77,0,0.1) 0%, rgba(255,77,0,0.03) 100%);
  border: 1px solid var(--border-acc);
  border-radius: var(--radius-lg);
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,77,0,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 1rem; position: relative; }
.cta-banner p  { position: relative; margin-bottom: 2rem; }
.cta-banner .btn { position: relative; }

/* --- Page header ------------------------------------------ */
.page-hero {
  padding: 8rem 0 4.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,77,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--t) var(--ease);
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb__sep { color: var(--border); }

/* --- Service detail --------------------------------------- */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 5rem;
  align-items: start;
}
.service-sidebar {
  position: sticky;
  top: 6rem;
}
.service-meta {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-meta__header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-3);
}
.service-meta__header h4 { color: var(--text); font-size: 0.875rem; letter-spacing: 0; }
.service-meta__body { padding: 1.5rem; }
.service-meta__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.service-meta__row:last-child { border-bottom: none; }
.service-meta__key { color: var(--text-muted); }
.service-meta__val { color: var(--text); font-weight: 600; font-family: var(--f-display); text-align: right; }
.service-body h3 { margin: 2.5rem 0 1rem; }
.service-body h3:first-child { margin-top: 0; }
.service-body p  { margin-bottom: 1rem; }
.service-body ul { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.service-body li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.service-body li::before {
  content: '';
  width: 16px; height: 16px;
  min-width: 16px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3 3 7-7' stroke='%23ff4d00' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.service-cta {
  background: var(--accent-dim);
  border: 1px solid var(--border-acc);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 3rem;
  text-align: center;
}
.service-cta h4 { margin-bottom: 0.75rem; }
.service-cta p  { font-size: 0.875rem; margin-bottom: 1.5rem; }

/* --- Tech cards ------------------------------------------- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.tech-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.tech-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}
.tech-card__val {
  font-family: var(--f-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

/* --- Contact form ----------------------------------------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.contact-aside { display: flex; flex-direction: column; gap: 2.5rem; }
.contact-info { display: flex; flex-direction: column; gap: 0.35rem; }
.contact-info__lbl {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-info__val {
  font-family: var(--f-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
}
.contact-info__sub { font-size: 0.85rem; }
.contact-hours {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.contact-hours__head {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--bg-3);
}
.contact-hours__row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.contact-hours__row:last-child { border-bottom: none; }
.contact-hours__day { color: var(--text-muted); }
.contact-hours__time { color: var(--text); font-weight: 500; font-family: var(--f-display); }

/* Form */
.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form__group { display: flex; flex-direction: column; gap: 0.5rem; }
.form__label {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text);
}
.form__input,
.form__select,
.form__textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  font-family: var(--f-body);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--t) var(--ease);
  outline: none;
  width: 100%;
}
.form__input::placeholder,
.form__textarea::placeholder { color: var(--text-muted); }
.form__input:focus,
.form__select:focus,
.form__textarea:focus { border-color: var(--accent); }
.form__select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%237878a0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form__textarea { resize: vertical; min-height: 140px; }
.form__hint  { font-size: 0.78rem; color: var(--text-muted); }
.form__error { font-size: 0.78rem; color: #ff4d6a; display: none; }
.form__error.show { display: block; }
.form__honeypot { display: none !important; visibility: hidden !important; }
.form-success {
  display: none;
  background: rgba(40, 200, 100, 0.08);
  border: 1px solid rgba(40, 200, 100, 0.25);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: #28c864;
}
.form-success.show { display: block; }

/* --- Footer ----------------------------------------------- */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 4.5rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer__logo { height: 40px; margin-bottom: 1.25rem; }
.footer__tagline { font-size: 0.875rem; max-width: 230px; line-height: 1.65; }
.footer__col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--t) var(--ease);
}
.footer__links a:hover { color: var(--accent); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__copy { font-size: 0.8rem; }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--t) var(--ease);
}
.footer__legal a:hover { color: var(--text); }

/* --- Scroll reveal ---------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.65s var(--ease-out),
    transform 0.65s var(--ease-spring);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }
.reveal-d6 { transition-delay: 0.6s; }
.reveal-d7 { transition-delay: 0.7s; }
.reveal-d8 { transition-delay: 0.8s; }

/* --- Divider ---------------------------------------------- */
.hr { height: 1px; background: var(--border); }

/* ============================================================
   TASTE-SKILL UPGRADES — Motion, Materiality, Micro-physics
   ============================================================ */

/* --- Grain texture (fixed body pseudo, nooit layout-impactend) --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.45;
  mix-blend-mode: overlay;
}

/* --- Hero visual: float --- */
.hero__visual {
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* --- Stream panel: inset glow op hover --- */
.stream-panel {
  transition: box-shadow var(--t-med) var(--ease-spring), transform var(--t-med) var(--ease-spring);
}

/* --- Nav links: sliding underline --- */
.nav__links a {
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--t-med) var(--ease-spring);
}
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

/* --- Bento stagger --- */
.bento__item:nth-child(1) { transition-delay: 0.05s; }
.bento__item:nth-child(2) { transition-delay: 0.12s; }
.bento__item:nth-child(3) { transition-delay: 0.19s; }
.bento__item:nth-child(4) { transition-delay: 0.26s; }
.bento__item:nth-child(5) { transition-delay: 0.33s; }

/* Bento hover: inset glow + lichte schaal */
.bento__item {
  transition:
    border-color var(--t-med) var(--ease),
    transform var(--t-med) var(--ease-spring),
    box-shadow var(--t-med) var(--ease);
}
.bento__item:hover {
  border-color: var(--border-acc);
  transform: translateY(-4px) scale(1.008);
  box-shadow: 0 16px 48px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.06);
}

/* --- Pricing cards stagger + hover glow --- */
.pricing-card:nth-child(1) { transition-delay: 0.05s; }
.pricing-card:nth-child(2) { transition-delay: 0.13s; }
.pricing-card:nth-child(3) { transition-delay: 0.21s; }
.pricing-card:nth-child(4) { transition-delay: 0.29s; }

.pricing-card {
  transition:
    border-color var(--t-med) var(--ease),
    transform var(--t-med) var(--ease-spring),
    box-shadow var(--t-med) var(--ease);
}
.pricing-card:hover {
  border-color: var(--border-acc);
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.05);
}
.pricing-card--pop:hover {
  box-shadow: 0 20px 56px rgba(255,77,0,0.18), inset 0 1px 0 rgba(255,255,255,0.05);
}

/* --- Stat cells: accent flash als parent reveal zichtbaar wordt --- */
.stats-strip.visible .stat-cell__val {
  animation: stat-flash 0.7s var(--ease-out) both;
}
.stats-strip.visible .stat-cell:nth-child(1) .stat-cell__val { animation-delay: 0.0s; }
.stats-strip.visible .stat-cell:nth-child(2) .stat-cell__val { animation-delay: 0.12s; }
.stats-strip.visible .stat-cell:nth-child(3) .stat-cell__val { animation-delay: 0.24s; }
.stats-strip.visible .stat-cell:nth-child(4) .stat-cell__val { animation-delay: 0.36s; }
@keyframes stat-flash {
  0%   { opacity: 0; transform: translateY(10px); }
  55%  { color: var(--accent); }
  100% { opacity: 1; transform: translateY(0); color: var(--text); }
}

/* --- Bento icon pulse op hover --- */
.bento__item:hover .bento__icon {
  background: rgba(255,77,0,0.18);
  transition: background 0.3s var(--ease);
}

/* --- CTA banner: subtle shimmer sweep --- */
.cta-banner {
  overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,77,0,0.04) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: shimmer-sweep 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer-sweep {
  0%   { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}

/* --- Responsive ------------------------------------------- */
@media (max-width: 1100px) {
  .hero__grid     { grid-template-columns: 1fr; gap: 2rem; }
  .hero__visual   { animation: none; max-width: 600px; width: 100%; }
  .pricing-grid   { grid-template-columns: repeat(2, 1fr); }
  .stats-strip    { grid-template-columns: repeat(2, 1fr); }
  .stats-strip .stat-cell:nth-child(2) { border-right: none; }
  .stats-strip .stat-cell:nth-child(3),
  .stats-strip .stat-cell:nth-child(4) { border-top: 1px solid var(--border); }
  .bento          { grid-template-columns: repeat(2, 1fr); }
  .bento__item--wide { grid-column: span 2; }
  .service-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .service-sidebar { position: static; }
  .footer__grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-wrap   { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .nav__links, .nav__right { display: none; }
  .nav__toggle { display: flex; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .bento         { grid-template-columns: 1fr; }
  .bento__item--wide { grid-column: span 1; }
  .usecase-grid  { grid-template-columns: 1fr; }
  .stats-strip   { grid-template-columns: repeat(2, 1fr); }
  .cta-banner    { padding: 3rem 1.5rem; }
  .footer__grid  { grid-template-columns: 1fr; gap: 2rem; }
  .form__row     { grid-template-columns: 1fr; }
  .tech-grid     { grid-template-columns: 1fr; }
  .trust-strip   { grid-template-columns: 1fr; }
  .trust-item    { border-right: none !important; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }
}

/* --- Cursor pointer op interactieve kaarten --------------- */
.bento__item,
.pricing-card,
.usecase-card { cursor: pointer; }

/* --- Focus-visible (keyboard navigatie) ------------------- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

/* --- Mobiel menu telefoon --------------------------------- */
.nav__mobile__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.nav__mobile__phone strong {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

/* --- Infra foto sectie ------------------------------------ */
.infra-section { border-top: 1px solid var(--border); }
.infra-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.875rem;
  align-items: stretch;
}
.infra-side {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.infra-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
}
.infra-photo--main { min-height: 440px; }
.infra-side .infra-photo { flex: 1; min-height: 200px; }
.infra-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}
.infra-photo:hover img { transform: scale(1.04); }
.infra-photo__cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1.25rem 0.875rem;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  font-family: var(--f-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .infra-grid { grid-template-columns: 1fr; }
  .infra-photo--main { min-height: 240px; }
  .infra-side .infra-photo { min-height: 180px; }
}

/* --- Trust strip ------------------------------------------ */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.trust-item {
  padding: 2.25rem 2rem;
  border-right: 1px solid var(--border);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.trust-item:last-child { border-right: none; }
.trust-item__icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--accent-dim);
  border: 1px solid var(--border-acc);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.trust-item h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.trust-item p  { font-size: 0.875rem; line-height: 1.7; margin: 0; }

/* --- Mobiel menu telefoon link ---------------------------- */
.nav__mobile a.nav__mobile__tel {
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

/* --- Channel tabs ----------------------------------------- */
.channel-tabs {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.channel-tab {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.65rem;
  border-radius: 0.5rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  font-family: var(--f-display);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
}
.channel-tab:hover { border-color: var(--border-acc); color: var(--accent); }
.channel-tab.active {
  background: var(--accent-dim);
  border-color: var(--border-acc);
  color: var(--accent);
}
.ch-panel { display: none; }
.ch-panel--active { display: block; }

/* --- Studio channel --------------------------------------- */
.vt-studio {
  background: radial-gradient(ellipse at 50% 30%, #2a0808 0%, #0e0303 100%);
}
.studio-onair {
  position: absolute;
  top: 0.6rem; left: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(200, 30, 30, 0.92);
  border-radius: 0.3rem;
  padding: 0.22rem 0.6rem;
  font-family: var(--f-display);
  font-size: 0.65rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.1em;
}
.studio-onair__dot {
  width: 5px; height: 5px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-dot 0.9s ease-in-out infinite;
}
.studio-visual {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
}
.studio-mic-icon { color: rgba(255,255,255,0.12); }
.studio-eq {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 26px;
}
.eq-bar {
  width: 5px;
  height: var(--h, 50%);
  background: linear-gradient(to top, #ff4d00, rgba(255,120,40,0.5));
  border-radius: 2px 2px 0 0;
  transform-origin: bottom;
  animation: eq-anim 0.7s ease-in-out infinite alternate;
}
.eq-bar:nth-child(1)  { animation-delay: 0s; }
.eq-bar:nth-child(2)  { animation-delay: 0.07s; }
.eq-bar:nth-child(3)  { animation-delay: 0.14s; }
.eq-bar:nth-child(4)  { animation-delay: 0.21s; }
.eq-bar:nth-child(5)  { animation-delay: 0.28s; }
.eq-bar:nth-child(6)  { animation-delay: 0.35s; }
.eq-bar:nth-child(7)  { animation-delay: 0.42s; }
.eq-bar:nth-child(8)  { animation-delay: 0.49s; }
.eq-bar:nth-child(9)  { animation-delay: 0.56s; }
.eq-bar:nth-child(10) { animation-delay: 0.63s; }
@keyframes eq-anim {
  from { transform: scaleY(0.2); }
  to   { transform: scaleY(1); }
}

/* --- Strand channel --------------------------------------- */
.vt-strand {
  background: linear-gradient(180deg,
    #1c7cb8 0%, #5aafe0 34%, #90d0f0 49%,
    #c8e8f8 53%, #d8c890 57%, #e0c478 72%, #c8a860 100%);
}
.strand-sun {
  position: absolute;
  top: 10%; right: 15%;
  width: 30px; height: 30px;
  background: radial-gradient(circle, #fffcc0 30%, rgba(255,250,160,0) 100%);
  border-radius: 50%;
  box-shadow: 0 0 20px 8px rgba(255,245,100,0.25);
}
.strand-wave {
  position: absolute;
  left: -5%; right: -5%;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
}
.strand-wave--1 { top: 52%; animation: wave-shift 3s ease-in-out infinite; }
.strand-wave--2 { top: 55%; opacity: 0.55; animation: wave-shift 3.8s ease-in-out infinite reverse; }
@keyframes wave-shift {
  0%, 100% { transform: scaleX(1) translateX(0); }
  50%       { transform: scaleX(0.97) translateX(2%); }
}

/* --- Onderwater channel ----------------------------------- */
.vt-water {
  background: linear-gradient(180deg,
    #0a4020 0%, #052a50 15%, #083a6a 40%, #0a4070 65%, #061830 100%);
}
.water-caustics {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60px 30px at 25% 12%, rgba(80,200,200,0.07), transparent),
    radial-gradient(ellipse 40px 20px at 65% 6%, rgba(60,180,180,0.06), transparent),
    radial-gradient(ellipse 50px 25px at 80% 18%, rgba(80,200,200,0.05), transparent);
  animation: caustic-drift 8s ease-in-out infinite alternate;
}
@keyframes caustic-drift {
  from { transform: translateX(0) scale(1); }
  to   { transform: translateX(7px) scale(1.04); }
}
.water-bubble {
  position: absolute;
  width: var(--bs); height: var(--bs);
  left: var(--bx); bottom: 8%;
  background: rgba(200,240,255,0.3);
  border-radius: 50%;
  border: 1px solid rgba(200,240,255,0.5);
  animation: bubble-up 5s ease-in var(--bd) infinite;
}
@keyframes bubble-up {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: 1; }
  90%  { opacity: 0.7; }
  100% { transform: translateY(-160px) translateX(6px); opacity: 0; }
}
.water-fish {
  position: absolute;
  top: 38%; left: -50px;
  animation: fish-swim 10s linear 2s infinite;
}
@keyframes fish-swim {
  0%   { transform: translateX(0); opacity: 0; }
  5%   { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateX(320px); opacity: 0; }
}

/* --- Evenement channel ------------------------------------ */
.vt-event { background: #040108; }
.event-beam {
  position: absolute;
  top: 0; left: var(--bl);
  width: 70px; height: 72%;
  background: linear-gradient(180deg,
    hsla(var(--bh), 70%, 65%, 0.4) 0%,
    hsla(var(--bh), 70%, 55%, 0.15) 60%,
    transparent 100%);
  clip-path: polygon(25% 0%, 75% 0%, 100% 100%, 0% 100%);
  transform: rotate(var(--br));
  transform-origin: 50% 0%;
  animation: beam-sway 4s ease-in-out var(--bd) infinite alternate;
}
@keyframes beam-sway {
  from { transform: rotate(var(--br)); }
  to   { transform: rotate(calc(var(--br) + 6deg)); }
}
.event-crowd {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 28%;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 35%, transparent 100%);
}
.event-stagebar {
  position: absolute;
  bottom: 27%; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right,
    #ff4d00, #ffcc00, #00cc88, #0088ff, #aa00ff, #ff4d00);
  background-size: 200% 100%;
  opacity: 0.9;
  animation: stage-light 3s linear infinite;
}
@keyframes stage-light {
  from { background-position: 0% 0%; }
  to   { background-position: 200% 0%; }
}

/* --- Video player mockup ---------------------------------- */
.video-thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0a0a12;
  margin-bottom: 0.875rem;
}
.video-thumb__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,77,0,0.1) 0%, transparent 55%),
    repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255,255,255,0.018) 3px, rgba(255,255,255,0.018) 4px);
}
.video-viewer-badge {
  position: absolute;
  top: 0.6rem; right: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 2rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--f-display);
  letter-spacing: 0.02em;
}
.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -58%);
  width: 52px; height: 52px;
  background: rgba(255,77,0,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  animation: play-pulse 2.4s ease-in-out infinite;
}
@keyframes play-pulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(255,77,0,0.18); }
  50%       { box-shadow: 0 0 0 20px rgba(255,77,0,0.06); }
}
.video-thumb__title {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.75rem 0.875rem 0.625rem;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
  font-family: var(--f-display);
  font-size: 0.825rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.video-progress {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.video-progress__bar {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  position: relative;
}
.video-progress__fill {
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, var(--accent), rgba(255,77,0,0.7));
  border-radius: 2px;
  animation: live-pulse-bar 2s ease-in-out infinite;
}
@keyframes live-pulse-bar {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.65; }
}
.video-progress__live {
  font-size: 0.63rem;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--f-display);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.video-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.video-controls__left,
.video-controls__right {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-muted);
}
.video-time-lbl {
  font-family: var(--f-display);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.video-hd-badge {
  font-family: var(--f-display);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  background: var(--text-muted);
  color: var(--bg);
  padding: 0.15rem 0.42rem;
  border-radius: 0.25rem;
}
.video-quality-lbl {
  font-family: var(--f-display);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* --- Hero MistServer player ------------------------------- */
.mist-player-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #060610;
  margin-bottom: 0.875rem;
}
#mistPlayer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  z-index: 1;
}
.video-channel-label {
  position: absolute;
  bottom: 0.625rem; left: 0.875rem;
  font-family: var(--f-display);
  font-size: 0.825rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.9);
  pointer-events: none;
  z-index: 2;
}

/* --- How it works ----------------------------------------- */
.howworks {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.howworks__step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.howworks__icon {
  width: 72px; height: 72px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
}
.howworks__step:hover .howworks__icon {
  border-color: var(--border-acc);
  background: var(--accent-dim);
}
.howworks__num {
  font-family: var(--f-display);
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.12em;
  opacity: 0.65;
}
.howworks__step h4 { font-size: 1rem; margin: 0; }
.howworks__step p  { font-size: 0.855rem; line-height: 1.65; max-width: 210px; margin: 0; }
.howworks__connector {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--border-acc);
  flex-shrink: 0;
}
.howworks__line {
  width: 48px; height: 1px;
  background: repeating-linear-gradient(
    to right,
    var(--border-acc) 0px, var(--border-acc) 5px,
    transparent 5px, transparent 10px
  );
  position: relative;
  flex-shrink: 0;
}
.howworks__dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  animation: data-flow 2s linear infinite;
}
@keyframes data-flow {
  0%   { left: 0; opacity: 1; }
  85%  { opacity: 1; }
  100% { left: calc(100% - 6px); opacity: 0; }
}

@media (max-width: 1100px) {
  .howworks { grid-template-columns: 1fr auto 1fr auto 1fr; }
}
@media (max-width: 768px) {
  .howworks { grid-template-columns: 1fr; gap: 2rem; }
  .howworks__connector { display: none; }
}

/* --- Prefers-reduced-motion ------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
  .hero__visual  { animation: none; }
  .waveform__bar { animation: none; }
  .video-play-btn { animation: none; }
  .video-progress__fill { animation: none; }
  .howworks__dot { animation: none; }
}
