/**
 * Видеоконференция — design tokens
 * Source of truth: /etc/jitsi/meet/brand/BRAND.json
 */

:root {
  /* Brand */
  --vc-brand-name: "Видеоконференция";
  --vc-slogan: "Встречи онлайн — быстро, бесплатно, без установки";

  /* Palette — ocean night + luminous aqua */
  --vc-graphite: #0a1c28;
  --vc-graphite-deep: #040e14;
  --vc-graphite-mid: #134457;
  --vc-accent: #1ed4c0;
  --vc-accent-hover: #4af0dc;
  --vc-accent-soft: #9bfff0;
  --vc-accent-muted: rgba(30, 212, 192, 0.14);
  --vc-warm: #f2b86a;
  --vc-warm-muted: rgba(242, 184, 106, 0.16);
  --vc-text: #f7fbfc;
  --vc-text-muted: #8fa8b5;
  --vc-surface: #0f2a38;
  --vc-surface-raised: #153445;
  --vc-border: rgba(247, 251, 252, 0.1);
  --vc-border-strong: rgba(30, 212, 192, 0.35);
  --vc-danger: #ff6b6b;
  --vc-glow: rgba(30, 212, 192, 0.45);

  /* Typography */
  --vc-font-display: "Unbounded", "Golos Text", "Manrope", sans-serif;
  --vc-font-ui: "Golos Text", "Manrope", system-ui, sans-serif;
  --vc-font-ui-alt: "Manrope", "Golos Text", system-ui, sans-serif;

  /* Motion */
  --vc-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --vc-duration: 560ms;

  /* Radii / controls — clear, not pill-shaped */
  --vc-radius-sm: 8px;
  --vc-radius-md: 12px;
  --vc-radius-lg: 18px;
  --vc-control-radius: 10px;
}

.vc-brand,
.welcome .header-text-title,
#welcome_page .header-text-title {
  font-family: var(--vc-font-display);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  letter-spacing: -0.02em;
}

body,
.welcome,
#welcome_page,
button,
input {
  font-family: var(--vc-font-ui);
}

.vc-accent {
  color: var(--vc-accent);
}
