/* ===== Theme (dark + elegant green accent) ===== */
:root {
  --bg: #0b0f0c;
  --panel: #101413;
  --text: #f4f7f5;
  --muted: #a8b5ad;
  --brand: #22c55e;
  --brand-2: #16a34a;
  --ring: rgba(34,197,94,.35);
  --card: #121816;
  --shadow: 0 12px 30px rgba(0,0,0,.30);
  --radius: 16px;
  --radius-lg: 22px;
  --speed: 220ms;
  --header-h: 72px;
}

:root.light {
  --bg: #f6faf7;
  --panel: #ffffff;
  --text: #111814;
  --muted: #5b6b62;
  --card: #ffffff;
  --shadow: 0 12px 24px rgba(16,24,20,.08);
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ===== Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  /* FIX: removed generic fallback fonts (Inter/Roboto/Arial) per design guidelines */
  font: 16px/1.6 system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(34,197,94,.12), transparent 60%),
    radial-gradient(1200px 800px at 20% 110%, rgba(16,163,74,.10), transparent 60%),
    var(--bg);
  /* FIX: scroll-padding accounts for fixed header */
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

a { color: inherit; text-decoration: none; transition: color var(--speed); }
img { max-width: 100%; display: block; }

/* FIX: removed blanket ul reset — breaks semantic lists; scoped to nav only */
nav ul { list-style: none; padding: 0; }

li { transition: transform var(--speed), color var(--speed); }

/* ===== Utilities ===== */
.container { width: min(1200px, calc(100% - 2rem)); margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #061109;
  font-weight: 700;
  padding: .85rem 1.2rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform var(--speed), filter var(--speed), box-shadow var(--speed);
  position: relative;
  overflow: hidden;
  /* FIX: ensure text is always readable */
  text-decoration: none;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,.35), transparent 70%);
  opacity: 0;
  transition: opacity var(--speed);
}

.btn:hover { transform: translateY(-2px); filter: saturate(1.05); box-shadow: 0 16px 40px rgba(34,197,94,.3); }
.btn:hover::before { opacity: 1; }
.btn:active:not(:disabled) { transform: translateY(-1px); }
.btn:disabled { opacity: .6; cursor: not-allowed; pointer-events: none; }
/* FIX: focus-visible outline for keyboard accessibility */
.btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform var(--speed), background var(--speed), border-color var(--speed);
}
.btn.ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); }

.pill {
  display: inline-flex;
  align-items: center;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(34,197,94,.18);
  color: var(--text);
  font-weight: 600;
  font-size: .85rem;
  animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.35); }
  50%       { box-shadow: 0 0 8px 4px rgba(34,197,94,.18); }
}

.card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.grid   { display: grid; gap: 1rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.row   { display: flex; gap: .6rem; flex-wrap: wrap; }
.muted { color: var(--muted); }
.tiny  { font-size: .9rem; }

/* ===== Header / Nav ===== */
/* FIX: removed duplicate header block that was overriding sticky with fixed.
   Single source of truth here; fixed + glass effect + scrolled variant. */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  backdrop-filter: saturate(140%) blur(12px);
  background: linear-gradient(to bottom, rgba(10,18,14,.92), rgba(10,18,14,.64));
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background var(--speed), box-shadow var(--speed);
}

header.scrolled {
  background: linear-gradient(to bottom, rgba(10,18,14,.98), rgba(10,18,14,.82));
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
}

/* Light mode header */
.light header {
  background: linear-gradient(to bottom, rgba(255,255,255,.96), rgba(255,255,255,.88));
  border-bottom: 1px solid rgba(16,24,20,.10);
  box-shadow: 0 6px 22px rgba(16,24,20,.08);
}
.light header.scrolled {
  background: linear-gradient(to bottom, rgba(255,255,255,.98), rgba(255,255,255,.94));
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 0;
}

.brand { display: flex; align-items: center; gap: .8rem; font-weight: 800; }

.brand-logo {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: conic-gradient(from 0deg, var(--brand), var(--brand-2), var(--brand));
  box-shadow: 0 0 0 4px rgba(34,197,94,.15);
  /* IMPROVEMENT: subtle spin on hover */
  transition: transform 600ms ease, box-shadow var(--speed);
}
.brand:hover .brand-logo {
  transform: rotate(90deg);
  box-shadow: 0 0 0 6px rgba(34,197,94,.25);
}

.brand-name { font-weight: 800; letter-spacing: .2px; }

.nav-links { display: flex; gap: 1rem; align-items: center; }

.nav-links a {
  padding: .55rem .8rem;
  border-radius: 10px;
  font-weight: 600;
  color: var(--muted);
  transition: color var(--speed), background var(--speed);
  position: relative;
}
/* FIX: underline indicator */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: var(--brand);
  border-radius: 999px;
  transition: width 300ms ease-out, left 300ms ease-out;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: calc(100% - 1.6rem);
  left: .8rem;
}
.nav-links a.active,
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.06); }
/* FIX: active underline in light mode */
.light .nav-links a { color: var(--text); }
.light .nav-links a:hover,
.light .nav-links a.active {
  color: var(--text);
  background: rgba(16,24,20,.08);
}

/* FIX: focus-visible for keyboard nav */
.nav-links a:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.theme-toggle {
  background: transparent;
  border: 1px solid rgba(255,255,255,.15);
  color: var(--text);
  padding: .5rem .8rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--speed), border-color var(--speed), transform var(--speed);
}
.theme-toggle:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--brand);
  /* IMPROVEMENT: spin on toggle */
  transform: rotate(20deg) scale(1.1);
}
.theme-toggle:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

.hamburger {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  color: var(--text);
  padding: .5rem .7rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background var(--speed), border-color var(--speed);
}
.hamburger:hover { background: rgba(255,255,255,.08); border-color: var(--brand); }
.hamburger:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

@media (max-width: 900px) {
  .hamburger { display: inline-flex; }
  .nav-links {
    position: fixed;
    top: calc(var(--header-h) + 8px);
    right: 16px;
    left: auto;
    z-index: 1001;
    display: none;
    flex-direction: column;
    gap: .35rem;
    background: var(--panel);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: .6rem;
    box-shadow: var(--shadow);
    /* IMPROVEMENT: slide-in from top */
    transform: translateY(-8px);
    opacity: 0;
    transition: opacity var(--speed), transform var(--speed);
    pointer-events: none;
  }
  .nav-links.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .light .nav-links {
    background: #fff;
    border-color: rgba(16,24,20,.12);
    box-shadow: 0 18px 32px rgba(16,24,20,.10);
  }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  /* FIX: top padding accounts for fixed header */
  padding: calc(var(--header-h) + 3.5rem) 0 4rem;
  overflow: hidden;
  background:
    radial-gradient(600px 240px at 20% -10%, rgba(34,197,94,.22), transparent 60%),
    radial-gradient(700px 260px at 90% 10%, rgba(16,163,74,.18), transparent 60%);
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 900px) { .hero-wrap { grid-template-columns: 1fr; } }

.kicker { display: inline-flex; gap: .6rem; align-items: center; }

.hero h1 { font-size: clamp(1.9rem, 3.8vw, 3.2rem); margin: .6rem 0; }
.hero p  { color: var(--muted); max-width: 60ch; }

.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1rem; }

.hero-media {
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0));
  border: 1px solid rgba(255,255,255,.08);
  padding: 10px;
  position: relative;
  /* IMPROVEMENT: subtle float animation */
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(from 180deg, transparent, rgba(34,197,94,.28), transparent 30%);
  filter: blur(18px);
  z-index: -1;
}

.hero-video {
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  display: block;
}

.grad-text {
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  /* FIX: use transparent not var(--brand) so gradient shows */
  color: transparent;
}

/* Animated name shimmer + glow */
.vitalisa-anim {
  background-size: 200% 200%;
  animation: gradient-pan 8s ease-in-out infinite, glow 3.6s ease-in-out infinite alternate;
}
@keyframes gradient-pan {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes glow {
  0%   { text-shadow: 0 0 0 rgba(34,197,94,0); }
  100% { text-shadow: 0 0 22px rgba(34,197,94,.35); }
}

/* ===== Sections / Headings ===== */
section {
  padding: 3.5rem 0;
  transition: background-color var(--speed);
}
section .head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.head h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  transition: color var(--speed);
}

/* ===== Stats ===== */
.stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); } }

.stat {
  padding: 1.1rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0));
  border: 1px solid rgba(255,255,255,.08);
  text-align: center;
  transition: transform var(--speed), box-shadow var(--speed), border-color var(--speed);
}
.stat:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.15);
  box-shadow: 0 12px 30px rgba(34,197,94,.15);
}
.stat b {
  font-size: 1.8rem;
  display: block;
  color: var(--brand);
  animation: counter-pop 600ms ease-out;
}
@keyframes counter-pop {
  0%   { transform: scale(.8); opacity: 0; }
  100% { transform: scale(1);  opacity: 1; }
}

/* ===== Video Cards ===== */
.video-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
  transition: transform var(--speed), box-shadow var(--speed), filter var(--speed), border-color var(--speed);
  cursor: pointer;
  will-change: transform;
}

/* FIX: play button overlay — was positioned wrong (inset on non-flex container) */
.video-card::before {
  content: '▶';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0);
  background: rgba(0,0,0,0);
  z-index: 10;
  transition: color var(--speed), background var(--speed), font-size var(--speed);
  pointer-events: none;
}
.video-card:hover::before {
  color: rgba(255,255,255,.9);
  background: rgba(0,0,0,.4);
  /* IMPROVEMENT: icon grows slightly on hover */
  font-size: 3.4rem;
}
.video-card:hover {
  transform: translateY(-6px);
  filter: saturate(1.05);
  border-color: rgba(255,255,255,.15);
  box-shadow: 0 16px 40px rgba(34,197,94,.2);
}
/* FIX: focus-visible for keyboard users */
.video-card:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.video-thumb {
  aspect-ratio: 16/9;
  width: 100%;
  background: #1b231f;
  overflow: hidden;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
}

/* Ken Burns — plays when card is revealed */
.thumb-kenburns {
  animation: kenburns 14s ease-in-out infinite alternate paused;
}
.reveal.visible .thumb-kenburns {
  animation-play-state: running;
}
@keyframes kenburns {
  0%   { transform: scale(1.05); }
  100% { transform: scale(1.14); }
}

.video-meta { padding: 1rem; }

.chip {
  display: inline-block;
  font-size: .75rem;
  padding: .25rem .55rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  color: var(--muted);
}

/* ===== Hover-lift utility ===== */
.hover-lift {
  transition: transform var(--speed), box-shadow var(--speed), border-color var(--speed);
  border: 1px solid rgba(255,255,255,.08);
}
.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(34,197,94,.25);
  border-color: rgba(255,255,255,.15);
}

/* ===== Blog Cards ===== */
.blog-card {
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--speed), box-shadow var(--speed);
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(34,197,94,.25);
}
.blog-card img {
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.blog-card:hover img { transform: scale(1.08); }
.blog-card .body {
  padding: 1rem;
  transition: background var(--speed);
}
.blog-card:hover .body { background: rgba(255,255,255,.04); }

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: background var(--speed), border-color var(--speed), box-shadow var(--speed);
}
.faq-item:hover {
  border-color: rgba(255,255,255,.15);
  background: rgba(255,255,255,.02);
}
/* IMPROVEMENT: highlight open item */
.faq-item.open {
  border-color: rgba(34,197,94,.3);
  box-shadow: 0 0 0 1px rgba(34,197,94,.12);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 1rem;
  background: transparent;
  color: var(--text);
  border: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--speed);
  font-weight: 600;
  font-size: 1rem;
}
.faq-q:hover { color: var(--brand); }
.faq-q:focus-visible { outline: 2px solid var(--brand); outline-offset: -2px; }

.faq-q span {
  font-size: 1.5rem;
  transition: transform var(--speed);
  /* FIX: prevent the icon from being selectable */
  user-select: none;
}
.faq-item.open .faq-q span { transform: rotate(45deg); }

/* FIX: use grid for smooth height animation instead of max-height hack */
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms ease, padding 300ms ease;
  color: var(--muted);
}
.faq-a > * { overflow: hidden; }
.faq-item.open .faq-a {
  grid-template-rows: 1fr;
  padding-bottom: 1rem;
}
.faq-a p { padding: 0 1rem; margin: 0; }

/* ===== Forms ===== */
.input {
  width: 100%;
  padding: .9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: var(--text);
  transition: border-color var(--speed), background var(--speed), box-shadow var(--speed);
  font-size: 16px;
  outline: none;
  /* FIX: inherit font from body */
  font-family: inherit;
}
.input:hover {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
}
.input:focus {
  border-color: var(--brand);
  background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 3px rgba(34,197,94,.15);
}
.input::placeholder {
  color: rgba(255,255,255,.35);
  transition: color var(--speed);
}
.input:focus::placeholder { color: rgba(255,255,255,.2); }

/* FIX: light mode inputs need dark text */
.light .input {
  border-color: rgba(16,24,20,.18);
  background: rgba(16,24,20,.04);
  color: var(--text);
}
.light .input::placeholder { color: rgba(16,24,20,.4); }
.light .input:focus {
  border-color: var(--brand-2);
  box-shadow: 0 0 0 3px rgba(22,163,74,.15);
}

textarea.input { resize: vertical; min-height: 120px; }

/* ===== Footer ===== */
footer { padding: 2rem 0; color: var(--muted); }

/* ===== Back to top ===== */
#toTop {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 4000;
  /* FIX: use visibility + opacity instead of display:none so transition works */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  padding: .7rem .85rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  background: var(--panel);
  color: var(--text);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform var(--speed), background var(--speed), box-shadow var(--speed), opacity var(--speed), visibility var(--speed);
}
#toTop.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  animation: slideInUp 400ms ease-out;
}
#toTop:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.15);
  box-shadow: 0 12px 30px rgba(34,197,94,.2);
}

/* ===== Modal ===== */
.modal {
  position: fixed;
  inset: 0;
  /* FIX: use visibility + opacity so animation works; display:none skips transition */
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.75);
  z-index: 5000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 300ms ease, visibility 300ms ease;
}
.modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal-content {
  width: min(900px, 92%);
  padding: .6rem;
  background: #000;
  position: relative;
  border-radius: 16px;
  transform: translateY(20px);
  transition: transform 300ms ease;
}
.modal.open .modal-content {
  transform: translateY(0);
}
#modalFrame {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  border-radius: 12px;
  display: block;
}
#closeModal {
  position: absolute;
  right: 10px; top: 10px;
  transition: transform var(--speed), background var(--speed);
}
#closeModal:hover { transform: rotate(90deg); }

/* ===== Floating Subscribe FAB ===== */
.fab-subscribe {
  position: fixed;
  right: 16px; bottom: 78px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #051009;
  font-weight: 800;
  box-shadow: var(--shadow);
  transition: transform var(--speed), box-shadow var(--speed);
  animation: slideInUp 600ms ease-out;
}
.fab-subscribe:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(34,197,94,.35);
}

/* ===== Keyframes ===== */
@keyframes slideInUp {
  from { transform: translateY(60px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ===== Reveal on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* Staggered reveal for grid children */
.grid > .reveal:nth-child(2) { transition-delay: 100ms; }
.grid > .reveal:nth-child(3) { transition-delay: 200ms; }
.grid > .reveal:nth-child(4) { transition-delay: 300ms; }
.grid > .reveal:nth-child(5) { transition-delay: 400ms; }
.grid > .reveal:nth-child(6) { transition-delay: 500ms; }

/* ===== Tilt ===== */
.tilt { transform-style: preserve-3d; perspective: 800px; }

/* ===== Social Links ===== */
.socials a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .7rem;
  border-radius: 8px;
  transition: background var(--speed), transform var(--speed), color var(--speed), border-color var(--speed);
  border: 1px solid rgba(255,255,255,.1);
  font-size: .9rem;
}
.socials a:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
  border-color: var(--brand);
  color: var(--brand);
}

/* ===== List link hover ===== */
ul li a {
  transition: color var(--speed), padding-left var(--speed), border-left-color var(--speed);
  border-left: 2px solid transparent;
  padding-left: .5rem;
  display: inline-block;
}
ul li a:hover {
  color: var(--brand);
  border-left-color: var(--brand);
  padding-left: .8rem;
}