/* ==========================================================================
   Work Visa Sponsors public site design system
   Brand: red #f12229 · navy #232d39 · ink #1e1e1e
   Built on top of Bootstrap 4.3 (grid, collapse, dropdown, alerts only).
   ========================================================================== */

:root {
  --wvs-red: #f12229;
  --wvs-red-dark: #c9131a;
  --wvs-red-soft: #fff1f2;
  --wvs-red-tint: rgba(241, 34, 41, 0.12);
  --wvs-coral: #f9735b;
  --wvs-navy: #232d39;
  --wvs-navy-2: #2f3b4a;
  --wvs-navy-3: #1a222c;
  --wvs-ink: #1e1e1e;

  --wvs-text: #1f2937;
  --wvs-text-2: #4b5563;
  --wvs-muted: #6b7280;
  --wvs-placeholder: #9ca3af;
  --wvs-line: #e6e8ec;
  --wvs-line-2: #f0f1f4;
  --wvs-line-strong: #dfe2e8;
  --wvs-bg: #ffffff;
  --wvs-bg-soft: #f7f7f8;
  --wvs-bg-tint: #fbf7f7;
  --wvs-surface: #ffffff;          /* cards, inputs, dropdowns */
  --wvs-header-bg: rgba(255, 255, 255, 0.86);

  /* Status tints (chips, alerts, avatar monograms) */
  --wvs-green-bg: #ecfdf5;  --wvs-green-fg: #047857;  --wvs-green-line: #a7f3d0;
  --wvs-amber-bg: #fffbeb;  --wvs-amber-fg: #b45309;  --wvs-amber-line: #fde68a;
  --wvs-blue-bg: #eff6ff;   --wvs-blue-fg: #1d4ed8;
  --wvs-rose-bg: #fff1f2;   --wvs-rose-fg: #be123c;
  --wvs-indigo-bg: #eef2ff; --wvs-indigo-fg: #3730a3;
  --wvs-orange-bg: #fff7ed; --wvs-orange-fg: #c2410c;
  --wvs-sky-bg: #f0f9ff;    --wvs-sky-fg: #0369a1;
  --wvs-violet-bg: #f5f3ff; --wvs-violet-fg: #6d28d9;
  --wvs-danger-bg: #fef2f2; --wvs-danger-fg: #991b1b; --wvs-danger-line: #fecaca;

  color-scheme: light;

  --wvs-font-head: "Plus Jakarta Sans", "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --wvs-font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --wvs-radius-sm: 10px;
  --wvs-radius: 16px;
  --wvs-radius-lg: 24px;
  --wvs-radius-pill: 999px;

  --wvs-shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.06), 0 1px 3px rgba(17, 24, 39, 0.05);
  --wvs-shadow: 0 6px 18px -6px rgba(17, 24, 39, 0.12), 0 2px 6px -2px rgba(17, 24, 39, 0.06);
  --wvs-shadow-lg: 0 24px 48px -16px rgba(17, 24, 39, 0.22);
  --wvs-shadow-red: 0 12px 28px -10px rgba(241, 34, 41, 0.55);

  --wvs-nav-h: 76px;
  --wvs-container: 1200px;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--wvs-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--wvs-text);
  background: var(--wvs-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4 {
  font-family: var(--wvs-font-head);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--wvs-ink);
  line-height: 1.15;
}
h1, .h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); letter-spacing: -0.03em; }
h2, .h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3, .h3 { font-size: 1.375rem; }
h4, .h4 { font-size: 1.125rem; }
h1 em, h2 em, h3 em, .h1 em, .h2 em, .h3 em { font-style: normal; color: var(--wvs-red); }
p { margin-bottom: 1rem; }
a { color: var(--wvs-red-dark); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--wvs-red); text-decoration: none; }
img { max-width: 100%; height: auto; }
::selection { background: var(--wvs-red); color: #fff; }
:focus-visible { outline: 3px solid rgba(241, 34, 41, 0.35); outline-offset: 2px; }
.container { max-width: var(--wvs-container); }

.wvs-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--wvs-font-head); font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--wvs-red);
  margin-bottom: .75rem;
}
.wvs-eyebrow--center { justify-content: center; }
.wvs-eyebrow--light { color: #fff; }
.wvs-lead { font-size: 1.125rem; color: var(--wvs-text-2); }
.wvs-muted { color: var(--wvs-muted); }
.wvs-accent { color: var(--wvs-red); }
.wvs-section { padding: 88px 0; }
.wvs-section--tight { padding: 56px 0; }
.wvs-section--flush { padding-top: 0; }
.wvs-section--soft { background: var(--wvs-bg-soft); }
.wvs-section--tint { background: linear-gradient(180deg, var(--wvs-bg-tint) 0%, var(--wvs-bg) 100%); }
.wvs-section-head { max-width: 680px; margin-bottom: 2.75rem; }
.wvs-section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.wvs-section-head h2 { margin-bottom: .75rem; }
.wvs-section-head p { color: var(--wvs-text-2); margin-bottom: 0; font-size: 1.05rem; }
.wvs-section-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; max-width: none; flex-wrap: wrap; }
.wvs-section-head--row > div { max-width: 640px; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.wvs-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .8rem 1.5rem; border-radius: var(--wvs-radius-pill);
  font-family: var(--wvs-font-head); font-weight: 700; font-size: .95rem; line-height: 1.2;
  border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  text-decoration: none !important;
}
.wvs-btn:active { transform: translateY(1px); }
.wvs-btn--primary { background: var(--wvs-red); color: #fff !important; box-shadow: var(--wvs-shadow-red); }
.wvs-btn--primary:hover { background: var(--wvs-red-dark); color: #fff; transform: translateY(-1px); }
.wvs-btn--dark { background: var(--wvs-navy); color: #fff !important; }
.wvs-btn--dark:hover { background: var(--wvs-ink); }
.wvs-btn--light { background: #fff; color: var(--wvs-ink) !important; box-shadow: var(--wvs-shadow-sm); }
.wvs-btn--light:hover { background: #fff; transform: translateY(-1px); box-shadow: var(--wvs-shadow); }
.wvs-btn--outline { background: transparent; color: var(--wvs-ink) !important; border-color: var(--wvs-line); }
.wvs-btn--outline:hover { border-color: var(--wvs-ink); }
.wvs-btn--outline-light { background: transparent; color: #fff !important; border-color: rgba(255, 255, 255, 0.45); }
.wvs-btn--outline-light:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }
.wvs-btn--ghost { background: transparent; color: var(--wvs-red-dark) !important; padding-left: .5rem; padding-right: .5rem; }
.wvs-btn--ghost:hover { color: var(--wvs-red) !important; }
.wvs-btn--sm { padding: .55rem 1.05rem; font-size: .85rem; }
.wvs-btn--lg { padding: 1rem 1.9rem; font-size: 1.05rem; }
.wvs-btn--block { width: 100%; }
.wvs-btn .fa { font-size: .95em; }
.wvs-btn-row { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }

/* --------------------------------------------------------------------------
   Chips, badges, avatars
   -------------------------------------------------------------------------- */
.wvs-chip {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .28rem .7rem; border-radius: var(--wvs-radius-pill);
  font-size: .78rem; font-weight: 600; line-height: 1.3;
  background: var(--wvs-bg-soft); color: var(--wvs-text-2); border: 1px solid var(--wvs-line-2);
}
.wvs-chip--red { background: var(--wvs-red-soft); color: var(--wvs-red-dark); border-color: transparent; }
.wvs-chip--navy { background: var(--wvs-navy); color: #fff; border-color: transparent; }
.wvs-chip--green { background: var(--wvs-green-bg); color: var(--wvs-green-fg); border-color: transparent; }
.wvs-chip--amber { background: var(--wvs-amber-bg); color: var(--wvs-amber-fg); border-color: transparent; }
.wvs-sponsor--delisted { opacity: .8; }
.wvs-sponsor--delisted .wvs-avatar { filter: grayscale(1); }
.wvs-chip--blue { background: var(--wvs-blue-bg); color: var(--wvs-blue-fg); border-color: transparent; }
.wvs-chip--outline { background: transparent; }
.wvs-chip-row { display: flex; flex-wrap: wrap; gap: .4rem; }
a.wvs-chip:hover { border-color: var(--wvs-red); color: var(--wvs-red-dark); }
.wvs-chip.is-active { background: var(--wvs-red); color: #fff; border-color: var(--wvs-red); }

.wvs-avatar {
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
  width: 56px; height: 56px; border-radius: 14px;
  font-family: var(--wvs-font-head); font-weight: 800; font-size: 1.1rem; letter-spacing: .02em;
  color: var(--wvs-red-dark); background: var(--wvs-red-soft);
  overflow: hidden;
}
.wvs-avatar img { width: 100%; height: 100%; object-fit: cover; }
.wvs-avatar--lg { width: 88px; height: 88px; border-radius: 22px; font-size: 1.75rem; }
.wvs-avatar--sm { width: 44px; height: 44px; border-radius: 12px; font-size: .9rem; }
.wvs-avatar--t1 { background: var(--wvs-rose-bg); color: var(--wvs-rose-fg); }
.wvs-avatar--t2 { background: var(--wvs-indigo-bg); color: var(--wvs-indigo-fg); }
.wvs-avatar--t3 { background: var(--wvs-green-bg); color: var(--wvs-green-fg); }
.wvs-avatar--t4 { background: var(--wvs-orange-bg); color: var(--wvs-orange-fg); }
.wvs-avatar--t5 { background: var(--wvs-sky-bg); color: var(--wvs-sky-fg); }
.wvs-avatar--t6 { background: var(--wvs-violet-bg); color: var(--wvs-violet-fg); }

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */
.wvs-header {
  position: sticky; top: 0; z-index: 1030;
  background: var(--wvs-header-bg);
  -webkit-backdrop-filter: saturate(180%) blur(14px); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.wvs-header.is-scrolled { border-bottom-color: var(--wvs-line); box-shadow: 0 6px 24px -18px rgba(17, 24, 39, 0.35); }
.wvs-nav { display: flex; align-items: center; justify-content: space-between; min-height: var(--wvs-nav-h); gap: 1rem; }
.wvs-nav__logo img { height: 34px; width: auto; display: block; }
.wvs-nav__links { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.wvs-nav__links > li { position: relative; }
.wvs-nav__links a.wvs-nav__link, .wvs-nav__links .wvs-nav__link {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .55rem .85rem; border-radius: var(--wvs-radius-pill);
  font-family: var(--wvs-font-head); font-weight: 600; font-size: .92rem; color: var(--wvs-text);
  background: transparent; border: 0; cursor: pointer; transition: background .15s ease, color .15s ease;
}
.wvs-nav__link { white-space: nowrap; }
.wvs-nav__link:hover { background: var(--wvs-bg-soft); color: var(--wvs-ink); }
@media (min-width: 992px) and (max-width: 1199.98px) {
  .wvs-nav__links a.wvs-nav__link, .wvs-nav__links .wvs-nav__link { padding: .5rem .6rem; font-size: .86rem; }
  .wvs-nav__cta .wvs-btn--sm { padding-left: .85rem; padding-right: .85rem; }
  .wvs-nav__logo img { height: 30px; }
}
.wvs-nav__link.active { color: var(--wvs-red); background: var(--wvs-red-soft); font-weight: 700; position: relative; }
.wvs-nav__link.active::before { content: ""; position: absolute; left: .85rem; right: .85rem; bottom: -14px; height: 3px; border-radius: 3px; background: var(--wvs-red); }
.wvs-nav .dropdown-toggle::after { display: none; }
.wvs-nav__cta .wvs-btn--outline.active { border-color: var(--wvs-red); color: var(--wvs-red) !important; }
.wvs-nav__link .fa-angle-down { font-size: .85rem; opacity: .7; }
.wvs-nav .dropdown-menu {
  border: 1px solid var(--wvs-line); border-radius: 14px; box-shadow: var(--wvs-shadow-lg);
  padding: .5rem; margin-top: .5rem; min-width: 240px;
}
.wvs-nav .dropdown-item {
  border-radius: 10px; padding: .6rem .8rem; font-weight: 500; color: var(--wvs-text); font-size: .92rem;
  display: flex; align-items: center; gap: .65rem;
}
.wvs-nav .dropdown-item small { display: block; color: var(--wvs-muted); font-size: .76rem; font-weight: 400; }
.wvs-nav .dropdown-item:hover, .wvs-nav .dropdown-item.active { background: var(--wvs-red-soft); color: var(--wvs-red-dark); }
.wvs-nav .dropdown-item .fa { width: 18px; text-align: center; color: var(--wvs-red); }
.wvs-nav__cta { display: flex; align-items: center; gap: .5rem; }
.wvs-theme-toggle {
  display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 12px;
  border: 1px solid var(--wvs-line); background: var(--wvs-surface); color: var(--wvs-ink); cursor: pointer; font-size: 1rem;
  transition: border-color .15s ease, background .2s ease, color .2s ease;
}
.wvs-theme-toggle:hover { border-color: var(--wvs-ink); }
.wvs-theme-toggle .fa-sun-o { display: none; }
[data-theme="dark"] .wvs-theme-toggle .fa-moon-o { display: none; }
[data-theme="dark"] .wvs-theme-toggle .fa-sun-o { display: inline-block; }
.wvs-nav__logo img.wvs-logo--dark { display: none; }
[data-theme="dark"] .wvs-nav__logo img.wvs-logo--light { display: none; }
[data-theme="dark"] .wvs-nav__logo img.wvs-logo--dark { display: block; }
.wvs-nav__toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--wvs-line);
  background: var(--wvs-surface); align-items: center; justify-content: center; cursor: pointer; color: var(--wvs-ink);
}
.wvs-nav__toggle:hover { border-color: var(--wvs-ink); }
@media (max-width: 991.98px) {
  .wvs-nav__menu { display: none; }
  .wvs-nav__toggle { display: inline-flex; }
  .wvs-nav__cta .wvs-btn--outline { display: none; }
}
/* The logo is never squeezed: it keeps its intrinsic size and the controls
   beside it give up their padding first as the viewport narrows. */
.wvs-nav__logo { flex: 0 0 auto; }
.wvs-nav__logo img { max-width: none; }
.wvs-nav__cta { flex: 0 1 auto; }

@media (max-width: 767.98px) {
  .wvs-nav { gap: .5rem; }
  .wvs-nav__cta { gap: .35rem; }
  .wvs-theme-toggle { width: 36px; height: 36px; border-radius: 10px; font-size: .95rem; }
  .wvs-nav__toggle { width: 38px; height: 38px; border-radius: 10px; }
  .wvs-nav__cta .wvs-btn--sm { padding-left: .6rem; padding-right: .6rem; }
}

@media (max-width: 575.98px) {
  /* The Chrome icon carries the meaning on its own; the button keeps an aria-label. */
  .wvs-nav__cta .wvs-btn--primary .wvs-cta-label { display: none; }
}

@media (max-width: 479.98px) {
  .wvs-nav { gap: .35rem; }
  .wvs-nav__cta { gap: .25rem; }
  .wvs-theme-toggle { width: 32px; height: 32px; border-radius: 9px; font-size: .9rem; }
  .wvs-nav__toggle { width: 34px; height: 34px; border-radius: 9px; }
  /* "Browser extension" is already in the slide-down menu, so the header button
     is the thing to drop rather than the logo. */
  .wvs-nav__cta .wvs-btn--primary { display: none; }
}

@media (max-width: 359.98px) {
  /* The logo is 302x45, so 34px tall is 228px wide. On the very smallest phones
     that plus the two controls will not fit, so step the logo down a little.
     Height only, never a forced width, so it can never distort. */
  .wvs-nav__logo img { height: 30px; }
}

.wvs-mobile-nav { border-top: 1px solid var(--wvs-line); padding: .75rem 0 1rem; }
.wvs-mobile-nav a, .wvs-mobile-nav .wvs-mobile-nav__group { display: block; padding: .7rem .75rem; border-radius: 10px; font-weight: 600; color: var(--wvs-text); font-family: var(--wvs-font-head); }
.wvs-mobile-nav a:hover, .wvs-mobile-nav a.active { background: var(--wvs-red-soft); color: var(--wvs-red-dark); }
.wvs-mobile-nav .wvs-mobile-nav__group { color: var(--wvs-muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; padding-bottom: .25rem; padding-top: 1rem; }
.wvs-mobile-nav .wvs-mobile-nav__sub a { padding-left: 1.5rem; font-weight: 500; }
@media (min-width: 992px) { .wvs-mobile-nav { display: none !important; } }

/* --------------------------------------------------------------------------
   Hero (home)
   -------------------------------------------------------------------------- */
.wvs-hero {
  position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(1100px 600px at 85% -10%, rgba(241, 34, 41, 0.45), transparent 60%),
              radial-gradient(800px 500px at -10% 110%, rgba(249, 115, 91, 0.25), transparent 60%),
              linear-gradient(160deg, var(--wvs-navy-3) 0%, var(--wvs-navy) 55%, #2b3644 100%);
  padding: 96px 0 72px;
}
.wvs-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .35;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(70% 70% at 50% 40%, #000 30%, transparent 100%);
  mask-image: radial-gradient(70% 70% at 50% 40%, #000 30%, transparent 100%);
}
.wvs-hero .container { position: relative; }
.wvs-hero h1 { color: #fff; margin-bottom: 1.1rem; }
.wvs-hero h1 em { font-style: normal; color: var(--wvs-red); position: relative; }
.wvs-hero .wvs-lead { color: rgba(255, 255, 255, 0.78); max-width: 560px; font-size: 1.15rem; }
.wvs-hero__badge {
  display: inline-flex; align-items: center; gap: .5rem; padding: .4rem .9rem .4rem .5rem;
  border-radius: var(--wvs-radius-pill); background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: .82rem; font-weight: 600; color: #fff; margin-bottom: 1.5rem;
}
.wvs-hero__badge span.dot { width: 22px; height: 22px; border-radius: 50%; background: var(--wvs-red); display: inline-flex; align-items: center; justify-content: center; font-size: .7rem; }
.wvs-search {
  display: flex; align-items: center; gap: .5rem; padding: .5rem .5rem .5rem 1.1rem;
  background: #fff; border-radius: var(--wvs-radius-pill); box-shadow: var(--wvs-shadow-lg);
  max-width: 620px; margin-top: 1.75rem;
}
.wvs-search .fa-search { color: var(--wvs-muted); }
.wvs-search input {
  flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; font-size: 1rem; color: var(--wvs-ink);
  padding: .55rem .25rem; font-family: var(--wvs-font-body);
}
.wvs-search input::placeholder { color: var(--wvs-placeholder); }
.wvs-search .wvs-btn { flex: 0 0 auto; }
.wvs-hero__quick { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; margin-top: 1.1rem; font-size: .85rem; color: rgba(255,255,255,.65); }
.wvs-hero__quick a { color: #fff; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.14); padding: .3rem .75rem; border-radius: var(--wvs-radius-pill); font-weight: 600; font-size: .8rem; }
.wvs-hero__quick a:hover { background: rgba(255, 255, 255, 0.18); }
.wvs-hero__stats { display: grid; grid-template-columns: repeat(3, auto); gap: 2.5rem; margin-top: 2.75rem; }
.wvs-hero__stat strong { display: block; font-family: var(--wvs-font-head); font-size: 1.75rem; font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -.02em; }
.wvs-hero__stat span { font-size: .82rem; color: rgba(255, 255, 255, 0.65); }
@media (max-width: 575.98px) {
  .wvs-hero { padding: 64px 0 56px; }
  .wvs-hero__stats { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .wvs-search { border-radius: 20px; flex-wrap: wrap; padding: .75rem; }
  .wvs-search .fa-search { display: none; }
  .wvs-search input { width: 100%; flex: 1 1 100%; padding: .5rem .35rem; }
  .wvs-search .wvs-btn { width: 100%; }
}

/* Floating card stack illustration */
.wvs-hero__art { position: relative; min-height: 420px; }
.wvs-float-card {
  position: absolute; background: #fff; color: var(--wvs-ink); border-radius: 18px; padding: 1rem 1.1rem;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.55); width: 300px;
  animation: wvs-float 7s ease-in-out infinite;
}
.wvs-float-card--1 { top: 8%; right: 6%; animation-delay: 0s; }
.wvs-float-card--2 { top: 42%; right: 30%; animation-delay: -2.5s; }
.wvs-float-card--3 { top: 72%; right: 0; animation-delay: -5s; }
.wvs-float-card__head { display: flex; align-items: center; gap: .75rem; margin-bottom: .6rem; }
.wvs-float-card__head strong { display: block; font-family: var(--wvs-font-head); font-size: .95rem; line-height: 1.2; }
.wvs-float-card__head small { color: var(--wvs-muted); font-size: .76rem; }
.wvs-float-card .wvs-chip { font-size: .7rem; padding: .2rem .55rem; }
.wvs-float-card__badge { position: absolute; top: -12px; left: 16px; background: var(--wvs-red); color: #fff; font-size: .7rem; font-weight: 700; padding: .25rem .6rem; border-radius: var(--wvs-radius-pill); box-shadow: var(--wvs-shadow-red); }
@keyframes wvs-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (max-width: 991.98px) { .wvs-hero__art { display: none; } }

/* Page hero (inner pages) */
.wvs-page-hero {
  position: relative; overflow: hidden; color: #fff; padding: 64px 0 56px;
  background: radial-gradient(900px 400px at 90% 0%, rgba(241, 34, 41, 0.4), transparent 60%),
              linear-gradient(150deg, var(--wvs-navy-3), var(--wvs-navy) 70%);
}
.wvs-page-hero h1 { color: #fff; font-size: clamp(2rem, 3.6vw, 2.9rem); margin-bottom: .6rem; }
.wvs-page-hero h1 em { font-style: normal; color: var(--wvs-red); }
.wvs-page-hero p { color: rgba(255, 255, 255, 0.75); max-width: 640px; margin-bottom: 0; font-size: 1.05rem; }
.wvs-page-hero .wvs-search { margin-top: 1.5rem; }
.wvs-page-hero--compact { padding: 44px 0 40px; }
.wvs-breadcrumb { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 1rem; }
.wvs-breadcrumb a { color: rgba(255,255,255,.85); }
.wvs-breadcrumb a:hover { color: #fff; }
.wvs-breadcrumb .sep { opacity: .5; }

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.wvs-card {
  background: var(--wvs-surface); border: 1px solid var(--wvs-line); border-radius: var(--wvs-radius);
  box-shadow: var(--wvs-shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
}
.wvs-card--hover:hover { transform: translateY(-3px); box-shadow: var(--wvs-shadow); border-color: var(--wvs-line-strong); }
.wvs-card__body { padding: 1.35rem; }
.wvs-card--pad { padding: 1.5rem; }
.wvs-card--flat { box-shadow: none; }
.wvs-card__link { position: absolute; inset: 0; z-index: 1; border-radius: inherit; }

/* Feature / step cards */
.wvs-feature { height: 100%; padding: 1.75rem; }
.wvs-feature__icon {
  width: 52px; height: 52px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--wvs-red-soft); color: var(--wvs-red); font-size: 1.25rem; margin-bottom: 1.1rem;
}
.wvs-feature h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.wvs-feature p { color: var(--wvs-text-2); margin-bottom: 0; font-size: .95rem; }
.wvs-step__num { font-family: var(--wvs-font-head); font-weight: 800; font-size: 2.5rem; color: var(--wvs-red-tint); line-height: 1; margin-bottom: .5rem; }

/* Sponsor card */
.wvs-sponsor { display: flex; flex-direction: column; height: 100%; }
.wvs-sponsor .wvs-card__body { display: flex; flex-direction: column; gap: .9rem; height: 100%; }
.wvs-sponsor__head { display: flex; align-items: center; gap: .9rem; }
.wvs-sponsor__name { font-size: 1.02rem; margin: 0; line-height: 1.3; overflow-wrap: anywhere; }
.wvs-sponsor__name a { color: var(--wvs-ink); }
.wvs-sponsor__meta { color: var(--wvs-muted); font-size: .82rem; display: flex; flex-wrap: wrap; gap: .35rem .9rem; }
.wvs-sponsor__meta .fa { color: var(--wvs-red); margin-right: .25rem; }
.wvs-sponsor__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: .5rem; padding-top: .75rem; border-top: 1px solid var(--wvs-line-2); font-size: .85rem; }
.wvs-sponsor__foot .wvs-btn--ghost { padding: 0; font-size: .85rem; }

/* Job card */
.wvs-job { height: 100%; }
.wvs-job .wvs-card__body { display: flex; flex-direction: column; gap: .75rem; height: 100%; }
.wvs-job__top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: .6rem .75rem; }
.wvs-job__head { display: flex; align-items: flex-start; gap: .85rem; min-width: 0; flex: 1 1 220px; }
.wvs-job__title { font-size: 1.08rem; margin: 0 0 .2rem; line-height: 1.3; font-weight: 800; }
.wvs-job__title a { color: var(--wvs-ink); }
.wvs-job__title a:hover { color: var(--wvs-red-dark); }
.wvs-job__company { display: flex; align-items: baseline; gap: .4rem; color: var(--wvs-muted); font-size: .86rem; font-weight: 500; margin: 0; }
.wvs-job__company .fa { color: var(--wvs-red); font-size: .85rem; flex: 0 0 auto; }
.wvs-job__meta { display: flex; flex-wrap: wrap; gap: .35rem 1rem; color: var(--wvs-muted); font-size: .84rem; }
.wvs-job__meta .fa { color: var(--wvs-red); margin-right: .3rem; }
.wvs-job__desc { color: var(--wvs-text-2); font-size: .92rem; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.wvs-job__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding-top: .85rem; border-top: 1px solid var(--wvs-line-2); }
.wvs-job__date { font-size: .8rem; color: var(--wvs-muted); }
.wvs-job__top .wvs-chip { flex: 0 0 auto; white-space: nowrap; }
.wvs-job__actions { display: flex; align-items: center; gap: .4rem; }
.wvs-source {
  display: inline-flex; align-items: center; gap: .35rem; font-size: .76rem; font-weight: 600; color: var(--wvs-muted);
  padding: .22rem .6rem; border-radius: 6px; background: var(--wvs-bg-soft); flex: 0 0 auto;
}
.wvs-job--featured { border-color: rgba(241, 34, 41, 0.35); background: linear-gradient(180deg, var(--wvs-surface) 0%, var(--wvs-bg-tint) 100%); }

/* Job filters */
.wvs-filters { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.wvs-filters__label { font-size: .85rem; color: var(--wvs-muted); font-weight: 600; margin-right: .25rem; }
.wvs-filter { position: relative; }
.wvs-filter__btn {
  display: inline-flex; align-items: center; gap: .45rem; padding: .5rem .95rem; border-radius: var(--wvs-radius-pill);
  background: var(--wvs-surface); border: 1px solid var(--wvs-line); font-size: .86rem; font-weight: 600; color: var(--wvs-text); cursor: pointer;
  font-family: var(--wvs-font-head);
}
.wvs-filter__btn:hover { border-color: var(--wvs-ink); }
.wvs-filter__btn.is-active { background: var(--wvs-navy); color: #fff; border-color: var(--wvs-navy); }
.wvs-filter__btn .fa-angle-down { opacity: .6; font-size: .8rem; }
.wvs-filter .dropdown-menu { border: 1px solid var(--wvs-line); border-radius: 12px; box-shadow: var(--wvs-shadow-lg); padding: .4rem; min-width: 190px; }
.wvs-filter .dropdown-item { border-radius: 8px; padding: .5rem .75rem; font-size: .9rem; display: flex; justify-content: space-between; align-items: center; }
.wvs-filter .dropdown-item.active, .wvs-filter .dropdown-item:active { background: var(--wvs-red-soft); color: var(--wvs-red-dark); }
.wvs-filter .dropdown-item.active::after { content: "\f00d"; font-family: FontAwesome; font-size: .75rem; opacity: .7; }
.wvs-filters__clear { font-size: .85rem; font-weight: 600; color: var(--wvs-muted); margin-left: .25rem; }
.wvs-filters__clear:hover { color: var(--wvs-red); }

/* Sidebar (sectors) */
.wvs-side { position: sticky; top: calc(var(--wvs-nav-h) + 20px); }
.wvs-side__title { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--wvs-muted); margin-bottom: .9rem; }
.wvs-input {
  width: 100%; padding: .7rem .95rem; border-radius: 12px; border: 1px solid var(--wvs-line); background: var(--wvs-surface);
  font-size: .95rem; color: var(--wvs-ink); font-family: var(--wvs-font-body); transition: border-color .15s ease, box-shadow .15s ease;
}
.wvs-input:focus { outline: 0; border-color: var(--wvs-red); box-shadow: 0 0 0 4px rgba(241, 34, 41, 0.12); }
.wvs-input--icon { padding-left: 2.4rem; }
.wvs-input-wrap { position: relative; }
.wvs-input-wrap .fa { position: absolute; left: .95rem; top: 50%; transform: translateY(-50%); color: var(--wvs-muted); }
.wvs-sector-list { list-style: none; margin: .75rem 0 0; padding: 0; max-height: 520px; overflow: auto; scrollbar-width: thin; }
.wvs-sector-list li a {
  display: flex; justify-content: space-between; align-items: center; gap: .5rem;
  padding: .55rem .7rem; border-radius: 10px; color: var(--wvs-text); font-size: .9rem; font-weight: 500;
}
.wvs-sector-list li a:hover { background: var(--wvs-bg-soft); color: var(--wvs-ink); }
.wvs-sector-list li a.is-active { background: var(--wvs-red-soft); color: var(--wvs-red-dark); font-weight: 600; }
.wvs-sector-list li a span { font-size: .75rem; color: var(--wvs-muted); background: var(--wvs-bg-soft); padding: .1rem .5rem; border-radius: var(--wvs-radius-pill); flex: 0 0 auto; }
.wvs-sector-list li a.is-active span { background: rgba(241, 34, 41, 0.15); color: var(--wvs-red-dark); }
.wvs-side details summary { cursor: pointer; list-style: none; }
.wvs-side details summary::-webkit-details-marker { display: none; }
@media (max-width: 991.98px) {
  .wvs-side { position: static; margin-bottom: 1.5rem; }
  .wvs-sector-list { max-height: 300px; }
}

/* Results header */
.wvs-results-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .75rem; margin-bottom: 1.25rem; }
.wvs-results-bar h2 { font-size: 1.35rem; margin: 0; }
.wvs-results-bar p { margin: 0; color: var(--wvs-muted); font-size: .9rem; }
.wvs-empty { text-align: center; padding: 3.5rem 1.5rem; border: 1px dashed var(--wvs-line); border-radius: var(--wvs-radius); color: var(--wvs-muted); }
.wvs-empty .fa { font-size: 2rem; color: var(--wvs-red); margin-bottom: .75rem; display: block; }

/* --------------------------------------------------------------------------
   Pagination
   -------------------------------------------------------------------------- */
.wvs-pagination { display: flex; justify-content: center; margin-top: 2.5rem; }
.wvs-pagination ul { display: flex; flex-wrap: wrap; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.wvs-pagination a, .wvs-pagination span {
  display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 .75rem;
  border-radius: 12px; border: 1px solid var(--wvs-line); background: var(--wvs-surface); color: var(--wvs-text); font-weight: 600; font-size: .9rem;
}
.wvs-pagination a:hover { border-color: var(--wvs-ink); color: var(--wvs-ink); }
.wvs-pagination li.active a { background: var(--wvs-red); border-color: var(--wvs-red); color: #fff; }

/* --------------------------------------------------------------------------
   Bands / CTA / testimonials
   -------------------------------------------------------------------------- */
.wvs-band {
  position: relative; overflow: hidden; border-radius: var(--wvs-radius-lg); color: #fff; padding: 3.5rem;
  background: radial-gradient(700px 300px at 100% 0%, rgba(241, 34, 41, 0.5), transparent 60%), linear-gradient(140deg, var(--wvs-navy-3), var(--wvs-navy));
}
.wvs-band h2 { color: #fff; }
.wvs-band p { color: rgba(255, 255, 255, 0.78); }
.wvs-band--red { background: linear-gradient(135deg, var(--wvs-red) 0%, #d31a22 60%, #b3121a 100%); }
.wvs-band--red p { color: rgba(255, 255, 255, 0.85); }
.wvs-band ul.wvs-checks { list-style: none; padding: 0; margin: 1.25rem 0 0; display: grid; gap: .6rem; }
.wvs-band ul.wvs-checks li { display: flex; align-items: flex-start; gap: .6rem; color: rgba(255, 255, 255, 0.9); }
.wvs-band ul.wvs-checks .fa { color: var(--wvs-red); background: #fff; border-radius: 50%; width: 22px; height: 22px; font-size: .7rem; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; margin-top: .2rem; }
.wvs-band--red ul.wvs-checks .fa { color: var(--wvs-red); }
@media (max-width: 767.98px) { .wvs-band { padding: 2rem 1.5rem; border-radius: var(--wvs-radius); } }

.wvs-logos { display: flex; flex-wrap: wrap; gap: .75rem; }
.wvs-logos span { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem .9rem; border-radius: 12px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.14); font-weight: 600; font-size: .9rem; color: #fff; }

.wvs-testimonial { height: 100%; }
.wvs-testimonial .wvs-card__body { display: flex; flex-direction: column; gap: 1rem; height: 100%; }
.wvs-testimonial__quote { font-size: 1.4rem; color: var(--wvs-red); line-height: 1; }
.wvs-testimonial p { color: var(--wvs-text-2); font-size: .98rem; margin: 0; flex: 1; }
.wvs-testimonial__who { display: flex; align-items: center; gap: .75rem; }
.wvs-testimonial__who strong { display: block; font-family: var(--wvs-font-head); font-size: .95rem; }
.wvs-testimonial__who span { color: var(--wvs-muted); font-size: .8rem; }

/* Stats strip */
.wvs-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.wvs-stat { padding: 1.4rem 1.25rem; border-radius: var(--wvs-radius); background: var(--wvs-surface); border: 1px solid var(--wvs-line); }
.wvs-stat strong { display: block; font-family: var(--wvs-font-head); font-size: 1.85rem; font-weight: 800; letter-spacing: -.02em; color: var(--wvs-ink); }
.wvs-stat span { color: var(--wvs-muted); font-size: .85rem; }
@media (max-width: 767.98px) { .wvs-stats { grid-template-columns: 1fr 1fr; } }
.wvs-stats--about { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.wvs-stat--rich { padding: 1.6rem 1.5rem; box-shadow: var(--wvs-shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.wvs-stat--rich:hover { transform: translateY(-3px); box-shadow: var(--wvs-shadow); }
.wvs-stat__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: var(--wvs-red-soft); color: var(--wvs-red); font-size: 1.1rem; margin-bottom: 1rem; }
.wvs-stat--rich strong { font-size: 2.1rem; margin-bottom: .1rem; }
.wvs-stat__label { display: block; font-family: var(--wvs-font-head); font-weight: 700; font-size: .95rem; color: var(--wvs-ink); margin-bottom: .45rem; }
.wvs-stat--rich p { margin: 0; font-size: .88rem; color: var(--wvs-muted); line-height: 1.5; }
@media (max-width: 575.98px) { .wvs-stats--about { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Blog
   -------------------------------------------------------------------------- */
.wvs-post { height: 100%; overflow: hidden; display: flex; flex-direction: column; }
.wvs-post__media { position: relative; aspect-ratio: 16 / 9; background: var(--wvs-bg-soft); overflow: hidden; }
.wvs-post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.wvs-post:hover .wvs-post__media img { transform: scale(1.04); }
.wvs-post .wvs-card__body { display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.wvs-post__meta { display: flex; flex-wrap: wrap; gap: .35rem .9rem; font-size: .8rem; color: var(--wvs-muted); }
.wvs-post__meta .fa { margin-right: .3rem; color: var(--wvs-red); }
.wvs-post__title { font-size: 1.15rem; margin: 0; line-height: 1.35; }
.wvs-post__title a { color: var(--wvs-ink); }
.wvs-post__title a:hover { color: var(--wvs-red-dark); }
.wvs-post__excerpt { color: var(--wvs-text-2); font-size: .93rem; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.wvs-post__more { margin-top: auto; padding-top: .5rem; font-weight: 700; font-size: .88rem; display: inline-flex; align-items: center; gap: .4rem; }
.wvs-post--featured { flex-direction: row; }
.wvs-post--featured .wvs-post__media { flex: 0 0 55%; aspect-ratio: auto; min-height: 360px; }
.wvs-post--featured .wvs-card__body { padding: 2.25rem; justify-content: center; }
.wvs-post--featured .wvs-post__title { font-size: clamp(1.4rem, 2.4vw, 2rem); }
.wvs-post--featured .wvs-post__excerpt { -webkit-line-clamp: 4; font-size: 1rem; }
@media (max-width: 991.98px) {
  .wvs-post--featured { flex-direction: column; }
  .wvs-post--featured .wvs-post__media { aspect-ratio: 16 / 9; min-height: 0; flex-basis: auto; }
}
.wvs-post-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .25rem; }
.wvs-post-list li a { display: flex; gap: .85rem; align-items: flex-start; padding: .65rem .5rem; border-radius: 12px; color: var(--wvs-text); }
.wvs-post-list li a:hover { background: var(--wvs-bg-soft); }
.wvs-post-list__num { font-family: var(--wvs-font-head); font-weight: 800; color: var(--wvs-red-tint); font-size: 1.4rem; line-height: 1; min-width: 28px; }
.wvs-post-list strong { display: block; font-size: .92rem; font-weight: 600; line-height: 1.35; color: var(--wvs-ink); }
.wvs-post-list span { font-size: .78rem; color: var(--wvs-muted); }

/* Article */
/* Article: breadcrumb, title, cover and body share one centred column so their edges line up. */
.wvs-article { max-width: 800px; margin: 0 auto; }
/* With a cover image the hero gets extra bottom padding and the cover is pulled up into it (72px gap on desktop, 48px on phones). */
.wvs-page-hero--article { padding-bottom: 168px; }
.wvs-page-hero .wvs-article .wvs-breadcrumb { margin-bottom: 1.5rem; }
.wvs-article__cover { border-radius: var(--wvs-radius-lg); overflow: hidden; box-shadow: var(--wvs-shadow-lg); margin: -96px 0 2.5rem; position: relative; z-index: 2; background: var(--wvs-surface); }
.wvs-article__cover img { width: 100%; display: block; aspect-ratio: 16 / 9; object-fit: cover; }
.wvs-article__share { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding-bottom: 1.25rem; margin-bottom: 2rem; border-bottom: 1px solid var(--wvs-line); font-size: .9rem; }
@media (max-width: 767.98px) {
  .wvs-page-hero--article { padding-bottom: 112px; }
  .wvs-article__cover { margin-top: -64px; }
}
.wvs-prose { font-size: 1.08rem; line-height: 1.8; color: var(--wvs-text); }
.wvs-prose p { margin-bottom: 1.35rem; }
.wvs-prose img { border-radius: 12px; margin: 1rem 0; }
.wvs-prose h2, .wvs-prose h3, .wvs-prose h4 { margin-top: 2.2rem; margin-bottom: .8rem; }
.wvs-prose ul, .wvs-prose ol { padding-left: 1.4rem; margin-bottom: 1.35rem; }
.wvs-prose li { margin-bottom: .4rem; }
.wvs-prose blockquote { border-left: 4px solid var(--wvs-red); padding: .5rem 0 .5rem 1.25rem; color: var(--wvs-text-2); font-style: italic; margin: 1.5rem 0; }
.wvs-prose a { text-decoration: underline; text-underline-offset: 3px; }
.wvs-prose figure { margin: 1.5rem 0; overflow-x: auto; }
.wvs-prose table { width: 100%; margin-bottom: 1.5rem; border-collapse: collapse; }
.wvs-prose table td, .wvs-prose table th { border: 1px solid var(--wvs-line); padding: .6rem .75rem; }
.wvs-share { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.wvs-share__btn {
  display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--wvs-line); color: var(--wvs-text); background: var(--wvs-surface); font-size: 1rem; cursor: pointer;
}
.wvs-share__btn:hover { border-color: var(--wvs-ink); color: var(--wvs-ink); }
.wvs-article__author { display: flex; align-items: center; gap: 1rem; padding: 1.25rem; border-radius: var(--wvs-radius); background: var(--wvs-bg-soft); }
.wvs-article__author strong { display: block; font-family: var(--wvs-font-head); }
.wvs-article__author span { color: var(--wvs-muted); font-size: .85rem; }
.wvs-legal { max-width: 820px; margin: 0 auto; }
.wvs-legal h2 { font-size: 1.3rem; margin-top: 2.2rem; margin-bottom: .6rem; }
.wvs-legal h2:first-child { margin-top: 0; }
.wvs-legal p, .wvs-legal li { color: var(--wvs-text-2); }
.wvs-toc { position: sticky; top: calc(var(--wvs-nav-h) + 20px); }
.wvs-toc a { display: block; padding: .4rem .75rem; border-left: 2px solid var(--wvs-line); color: var(--wvs-muted); font-size: .88rem; }
.wvs-toc a:hover { color: var(--wvs-red-dark); border-color: var(--wvs-red); }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.wvs-form label { font-weight: 600; font-size: .88rem; color: var(--wvs-ink); margin-bottom: .4rem; display: block; }
.wvs-form .wvs-field { margin-bottom: 1.1rem; }
.wvs-form textarea.wvs-input { min-height: 150px; resize: vertical; }
.wvs-form select.wvs-input { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round'/></svg>"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.wvs-form .g-recaptcha { margin: .5rem 0 1rem; }
.wvs-form .g-recaptcha > div { max-width: 100%; }
.wvs-help { font-size: .82rem; color: var(--wvs-muted); }
.wvs-contact-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; border-radius: var(--wvs-radius); background: var(--wvs-surface); border: 1px solid var(--wvs-line); height: 100%; }
.wvs-contact-item .wvs-feature__icon { margin-bottom: 0; flex: 0 0 auto; }
.wvs-contact-item strong { display: block; font-family: var(--wvs-font-head); font-size: .95rem; margin-bottom: .2rem; }
.wvs-contact-item a, .wvs-contact-item span { color: var(--wvs-text-2); font-size: .95rem; overflow-wrap: anywhere; }
.wvs-map { border-radius: var(--wvs-radius); overflow: hidden; border: 1px solid var(--wvs-line); }
.wvs-map iframe { display: block; width: 100%; height: 100%; min-height: 380px; border: 0; }

/* Alerts (flash) */
.wvs-alert {
  display: flex; gap: .75rem; align-items: flex-start; padding: .95rem 1.1rem; border-radius: 14px; margin-bottom: 1.5rem;
  border: 1px solid; font-size: .95rem;
}
.wvs-alert .fa { margin-top: .2rem; }
.wvs-alert .close { margin-left: auto; opacity: .5; font-size: 1.25rem; line-height: 1; text-shadow: none; }
.wvs-alert--success { background: var(--wvs-green-bg); border-color: var(--wvs-green-line); color: var(--wvs-green-fg); }
.wvs-alert--danger { background: var(--wvs-danger-bg); border-color: var(--wvs-danger-line); color: var(--wvs-danger-fg); }
.wvs-alert--info, .wvs-alert--warning { background: var(--wvs-amber-bg); border-color: var(--wvs-amber-line); color: var(--wvs-amber-fg); }

/* --------------------------------------------------------------------------
   Auth pages
   -------------------------------------------------------------------------- */
.wvs-auth {
  min-height: calc(100vh - var(--wvs-nav-h)); display: flex; align-items: center; padding: 48px 0;
  background: radial-gradient(800px 500px at 100% 0%, rgba(241, 34, 41, 0.18), transparent 60%), linear-gradient(180deg, var(--wvs-bg-soft), var(--wvs-bg));
}
.wvs-auth__card { max-width: 460px; margin: 0 auto; padding: 2.25rem; border-radius: var(--wvs-radius-lg); box-shadow: var(--wvs-shadow-lg); }
.wvs-auth__card h1 { font-size: 1.6rem; margin-bottom: .25rem; }
.wvs-auth__card .wvs-lead { font-size: .95rem; margin-bottom: 1.5rem; }
.wvs-auth__tabs { display: flex; gap: .35rem; padding: .3rem; background: var(--wvs-bg-soft); border-radius: var(--wvs-radius-pill); margin-bottom: 1.75rem; }
.wvs-auth__tabs a { flex: 1; text-align: center; padding: .55rem; border-radius: var(--wvs-radius-pill); font-weight: 700; font-size: .9rem; color: var(--wvs-muted); font-family: var(--wvs-font-head); }
.wvs-auth__tabs a.active { background: var(--wvs-surface); color: var(--wvs-ink); box-shadow: var(--wvs-shadow-sm); }
.wvs-auth__foot { text-align: center; margin-top: 1.5rem; font-size: .85rem; color: var(--wvs-muted); }

/* --------------------------------------------------------------------------
   Sponsor profile
   -------------------------------------------------------------------------- */
.wvs-profile-head { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.wvs-profile-head h1 { margin-bottom: .35rem; }
.wvs-profile-nav { display: flex; gap: .5rem; }
.wvs-profile-nav a { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 12px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); color: #fff; }
.wvs-profile-nav a:hover { background: var(--wvs-surface); color: var(--wvs-ink); }
.wvs-kv { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem 1.5rem; }
.wvs-kv dt { font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--wvs-muted); margin-bottom: .2rem; }
.wvs-kv dd { margin: 0; color: var(--wvs-text); overflow-wrap: anywhere; }
.wvs-kv dd .fa { color: var(--wvs-red); }
.wvs-locked { position: relative; }
.wvs-locked__blur { filter: blur(6px); pointer-events: none; user-select: none; opacity: .6; }
.wvs-locked__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .75rem; text-align: center; padding: 1rem; }
.wvs-locked__overlay .fa-lock { font-size: 1.5rem; color: var(--wvs-red); }
@media (max-width: 575.98px) { .wvs-kv { grid-template-columns: 1fr; } }

/* FAQ */
.wvs-faq details { border: 1px solid var(--wvs-line); border-radius: 14px; background: var(--wvs-surface); margin-bottom: .75rem; overflow: hidden; }
.wvs-faq summary { cursor: pointer; list-style: none; padding: 1.1rem 1.25rem; font-family: var(--wvs-font-head); font-weight: 700; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.wvs-faq summary::-webkit-details-marker { display: none; }
.wvs-faq summary::after { content: "\f067"; font-family: FontAwesome; font-size: .8rem; color: var(--wvs-red); transition: transform .2s ease; }
.wvs-faq details[open] summary::after { content: "\f068"; }
.wvs-faq details[open] summary { border-bottom: 1px solid var(--wvs-line-2); }
.wvs-faq .wvs-faq__body { padding: 1rem 1.25rem 1.25rem; color: var(--wvs-text-2); }
.wvs-faq .wvs-faq__body p:last-child { margin-bottom: 0; }

/* Pricing */
.wvs-price { text-align: center; padding: 2rem; border: 2px solid var(--wvs-red); border-radius: var(--wvs-radius-lg); position: relative; background: var(--wvs-surface); }
.wvs-price__tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--wvs-red); color: #fff; font-weight: 700; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; padding: .3rem .8rem; border-radius: var(--wvs-radius-pill); }
.wvs-price__amount { font-family: var(--wvs-font-head); font-size: 3rem; font-weight: 800; letter-spacing: -.03em; color: var(--wvs-ink); line-height: 1; margin: .75rem 0 .25rem; }
.wvs-price__period { color: var(--wvs-muted); font-size: .9rem; margin-bottom: 1.25rem; }
.wvs-price__old { font-size: 1.35rem; font-weight: 600; color: var(--wvs-muted); margin-right: .35rem; vertical-align: .55em; text-decoration-color: var(--wvs-red); }
.wvs-price ul { list-style: none; padding: 0; margin: 0 0 1.5rem; text-align: left; display: grid; gap: .5rem; }
.wvs-price ul li { display: flex; gap: .6rem; align-items: flex-start; color: var(--wvs-text-2); font-size: .93rem; }
.wvs-price ul li .fa { color: var(--wvs-red); margin-top: .25rem; }

/* Team */
.wvs-person { text-align: center; padding: 2rem 1.5rem; }
.wvs-person .wvs-avatar { margin: 0 auto 1rem; }
.wvs-person h3 { font-size: 1.1rem; margin-bottom: .15rem; }
.wvs-person__role { color: var(--wvs-red); font-weight: 600; font-size: .85rem; margin-bottom: .75rem; display: block; }
.wvs-person p { color: var(--wvs-text-2); font-size: .92rem; }
.wvs-person a.wvs-social { display: inline-flex; width: 38px; height: 38px; border-radius: 10px; align-items: center; justify-content: center; border: 1px solid var(--wvs-line); color: var(--wvs-text); }
.wvs-person a.wvs-social:hover { border-color: var(--wvs-ink); color: var(--wvs-ink); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.wvs-footer { background: var(--wvs-navy-3); color: rgba(255, 255, 255, 0.72); padding: 72px 0 0; margin-top: 0; }
.wvs-footer a { color: rgba(255, 255, 255, 0.75); }
.wvs-footer a:hover { color: #fff; }
.wvs-footer__brand img { height: 32px; width: auto; margin-bottom: 1.1rem; }
.wvs-footer__brand p { font-size: .93rem; max-width: 340px; }
.wvs-footer h4 { color: #fff; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 700; }
.wvs-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.wvs-footer ul a { font-size: .93rem; }
.wvs-footer__social { display: flex; gap: .5rem; margin-top: 1.25rem; }
.wvs-footer__social a { display: inline-flex; width: 40px; height: 40px; border-radius: 12px; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.1); color: #fff; }
.wvs-footer__social a:hover { background: var(--wvs-red); border-color: var(--wvs-red); }
.wvs-footer__bottom { margin-top: 56px; padding: 1.5rem 0; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: .85rem; }
.wvs-footer__bottom .row { align-items: center; }
.wvs-footer__legal { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; text-align: right; }
.wvs-footer__legal a { display: inline-flex; align-items: center; }
.wvs-footer__legal a + a::before { content: "\00b7"; margin: 0 .85rem; color: rgba(255, 255, 255, 0.35); font-weight: 700; }
@media (max-width: 767.98px) { .wvs-footer { padding-top: 48px; } .wvs-footer__legal { justify-content: flex-start; text-align: left; margin-top: .75rem; } .wvs-footer__bottom { margin-top: 32px; } }

/* Cookie banner */
.wvs-cookie {
  position: fixed; left: 20px; bottom: 20px; z-index: 1050; max-width: 380px; padding: 1.1rem 1.25rem; border-radius: 18px;
  background: var(--wvs-ink); color: rgba(255, 255, 255, 0.85); box-shadow: var(--wvs-shadow-lg); display: none; font-size: .9rem;
}
.wvs-cookie.is-visible { display: block; animation: wvs-rise .35s ease; }
.wvs-cookie p { margin: 0 0 .85rem; }
.wvs-cookie a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
@keyframes wvs-rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@media (max-width: 575.98px) { .wvs-cookie { left: 12px; right: 12px; bottom: 12px; max-width: none; } }

/* 404 */
.wvs-404 { text-align: center; padding: 110px 0; }
.wvs-404 .wvs-404__code { font-family: var(--wvs-font-head); font-size: clamp(5rem, 14vw, 9rem); font-weight: 800; line-height: 1; letter-spacing: -.05em; color: var(--wvs-red-tint); }

/* Utilities */
.wvs-grid { display: grid; gap: 1.25rem; }
.wvs-grid--2 { grid-template-columns: repeat(2, 1fr); }
.wvs-grid--3 { grid-template-columns: repeat(3, 1fr); }
.wvs-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 991.98px) { .wvs-grid--3, .wvs-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px) { .wvs-grid--2, .wvs-grid--3, .wvs-grid--4 { grid-template-columns: 1fr; } }
.wvs-divider { height: 1px; background: var(--wvs-line); margin: 2rem 0; }
.wvs-mt-0 { margin-top: 0 !important; }
.wvs-inline-link { font-weight: 700; display: inline-flex; align-items: center; gap: .35rem; }
.wvs-inline-link .fa { transition: transform .15s ease; font-size: .85em; }
.wvs-inline-link:hover .fa { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   Dark theme. <html data-theme="dark"> is set by the inline script in header.php
   (stored choice, else the system preference). Tokens do most of the work;
   the rules below cover surfaces that were fixed white/pastel in the light theme.
   -------------------------------------------------------------------------- */
:root[data-theme="dark"] {
  color-scheme: dark;
  --wvs-red: #f5303a;
  --wvs-red-dark: #ff6b70;
  --wvs-red-soft: rgba(241, 34, 41, 0.16);
  --wvs-red-tint: rgba(241, 34, 41, 0.22);
  --wvs-ink: #f3f4f6;
  --wvs-text: #e5e7eb;
  --wvs-text-2: #b7bec8;
  --wvs-muted: #8b95a3;
  --wvs-placeholder: #6b7280;
  --wvs-line: #2a3441;
  --wvs-line-2: #222c37;
  --wvs-line-strong: #3a4656;
  --wvs-bg: #0f151b;
  --wvs-bg-soft: #151c24;
  --wvs-bg-tint: #171a1f;
  --wvs-surface: #1a222c;
  --wvs-header-bg: rgba(15, 21, 27, 0.86);
  --wvs-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
  --wvs-shadow: 0 8px 22px -8px rgba(0, 0, 0, 0.6), 0 2px 6px -2px rgba(0, 0, 0, 0.4);
  --wvs-shadow-lg: 0 24px 48px -16px rgba(0, 0, 0, 0.7);
  --wvs-green-bg: rgba(16, 185, 129, 0.16);  --wvs-green-fg: #6ee7b7;  --wvs-green-line: rgba(16, 185, 129, 0.35);
  --wvs-amber-bg: rgba(245, 158, 11, 0.16);  --wvs-amber-fg: #fcd34d;  --wvs-amber-line: rgba(245, 158, 11, 0.35);
  --wvs-blue-bg: rgba(59, 130, 246, 0.16);   --wvs-blue-fg: #93c5fd;
  --wvs-rose-bg: rgba(244, 63, 94, 0.16);    --wvs-rose-fg: #fda4af;
  --wvs-indigo-bg: rgba(99, 102, 241, 0.16); --wvs-indigo-fg: #a5b4fc;
  --wvs-orange-bg: rgba(249, 115, 22, 0.16); --wvs-orange-fg: #fdba74;
  --wvs-sky-bg: rgba(14, 165, 233, 0.16);    --wvs-sky-fg: #7dd3fc;
  --wvs-violet-bg: rgba(139, 92, 246, 0.16); --wvs-violet-fg: #c4b5fd;
  --wvs-danger-bg: rgba(239, 68, 68, 0.14);  --wvs-danger-fg: #fca5a5; --wvs-danger-line: rgba(239, 68, 68, 0.35);
}
[data-theme="dark"] .wvs-header.is-scrolled { box-shadow: 0 6px 24px -18px rgba(0, 0, 0, 0.8); }
[data-theme="dark"] .dropdown-menu { background: var(--wvs-surface); color: var(--wvs-text); }
[data-theme="dark"] .dropdown-item { color: var(--wvs-text); }
[data-theme="dark"] .dropdown-item:hover, [data-theme="dark"] .dropdown-item:focus { background: var(--wvs-red-soft); color: var(--wvs-red-dark); }
[data-theme="dark"] .wvs-hero { background: radial-gradient(1100px 600px at 85% -10%, rgba(241, 34, 41, 0.35), transparent 60%), radial-gradient(800px 500px at -10% 110%, rgba(249, 115, 91, 0.18), transparent 60%), linear-gradient(160deg, #0c1117 0%, #182029 55%, #1f2935 100%); }
[data-theme="dark"] .wvs-page-hero { background: radial-gradient(900px 400px at 90% 0%, rgba(241, 34, 41, 0.32), transparent 60%), linear-gradient(150deg, #0c1117, #182029 70%); border-bottom: 1px solid var(--wvs-line); }
[data-theme="dark"] .wvs-search { background: var(--wvs-surface); border: 1px solid var(--wvs-line-strong); }
[data-theme="dark"] .wvs-float-card { background: #fff; color: #1e1e1e; }
[data-theme="dark"] .wvs-float-card strong { color: #1e1e1e; }
[data-theme="dark"] .wvs-float-card small { color: #6b7280; }
[data-theme="dark"] .wvs-float-card .wvs-chip { background: #f7f7f8; color: #4b5563; border-color: #f0f1f4; }
[data-theme="dark"] .wvs-float-card .wvs-chip--green { background: #ecfdf5; color: #047857; }
[data-theme="dark"] .wvs-float-card .wvs-chip--red { background: #fff1f2; color: #c9131a; }
[data-theme="dark"] .wvs-btn--light, [data-theme="dark"] .wvs-btn--light:hover { color: #1e1e1e !important; }
[data-theme="dark"] .wvs-btn--dark { background: var(--wvs-navy-2); }
[data-theme="dark"] .wvs-btn--dark:hover { background: #3a4656; }
[data-theme="dark"] .wvs-chip--navy { background: var(--wvs-navy-2); border: 1px solid var(--wvs-line-strong); }
[data-theme="dark"] .wvs-filter__btn.is-active { background: var(--wvs-red); border-color: var(--wvs-red); }
[data-theme="dark"] .wvs-band { background: radial-gradient(700px 300px at 100% 0%, rgba(241, 34, 41, 0.45), transparent 60%), linear-gradient(140deg, #182029, #232d39); border: 1px solid var(--wvs-line); }
[data-theme="dark"] .wvs-footer { background: #0b1015; border-top: 1px solid var(--wvs-line); }
[data-theme="dark"] .wvs-cookie { background: var(--wvs-surface); color: var(--wvs-text); border: 1px solid var(--wvs-line-strong); }
[data-theme="dark"] .wvs-cookie a { color: var(--wvs-ink); }
[data-theme="dark"] .wvs-prose img, [data-theme="dark"] .wvs-article__cover img { opacity: .92; }
[data-theme="dark"] .wvs-sponsor--delisted .wvs-avatar { filter: grayscale(1) brightness(.8); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
