/* ==========================================================================
   NEVES LICENSING AUTHORITY — GLOBAL STYLESHEET
   --------------------------------------------------------------------------
   1. Variables & base
   2. Layout helpers
   3. Header (top bar + nav)
   4. Buttons
   5. Homepage sections
   6. Footer
   7. Verify page
   8. Responsive
   ========================================================================== */

/* 1. VARIABLES & BASE ----------------------------------------------------- */
:root {
  --primary: #102a5c;
  --bg: #f4f6fb;
  --text: #0f172a;
  --muted: #4b5563;
  --border: #e5e7eb;
  --gold: #d4a548;
  --dark: #020617;
  --white: #ffffff;
  --soft: #f9fafb;

  /* Verify-page palette */
  --nla-navy: #051426;
  --nla-navy-soft: #0c223e;
  --nla-gold: #d4a548;
  --nla-gold-soft: #f5e2bf;
  --nla-bg: #f5f7fb;
  --nla-border: #dde2ee;
  --nla-text: #1f2933;
  --nla-muted: #64748b;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* 2. LAYOUT HELPERS ------------------------------------------------------- */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

main { flex: 1; }

/* 3. HEADER --------------------------------------------------------------- */
.site-topbar {
  background: #030d19;
  color: #cbd5f5;
  font-size: 13px;
}

.site-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
}

.site-topbar-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar-portal { color: #fff; }
.topbar-portal b { color: var(--gold); }
.topbar-tagline { color: #94a3b8; }

.site-topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-topbar-right a { color: #cbd5f5; }
.site-topbar-right a:hover { color: var(--gold); }

/* Main header bar */
.site-header {
  background: #051426;
  border-bottom: 4px solid var(--gold);
  position: relative;
  z-index: 50;
}

.site-header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.site-logo img {
  height: 52px;
  width: auto;
}

.site-nav { margin-left: auto; }

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a {
  color: #e5ecff;
  font-size: 14px;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}

.nav-menu > li > a:hover { color: var(--gold); }
.nav-menu > li.has-children > a::after {
  content: "▾";
  font-size: 10px;
  opacity: .8;
}

/* Dropdowns */
.sub-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #051426;
  border: 1px solid rgba(212,165,72,.25);
  border-radius: 8px;
  padding: 6px 0;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .15s, transform .15s, visibility .15s;
  z-index: 60;
}

.nav-menu > li.has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li a {
  display: block;
  padding: 9px 16px;
  font-size: 13.5px;
  color: #cbd5e1;
  line-height: 1.4;
}

.sub-menu li a:hover {
  background: rgba(212,165,72,.12);
  color: var(--gold);
}

/* Header CTA buttons */
.header-cta {
  display: flex;
  gap: 8px;
}

.header-btn {
  background: var(--gold);
  color: #111827;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform .08s, box-shadow .2s;
}

.header-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,.3);
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 38px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #fff;
  transition: transform .2s, opacity .2s;
}

/* 4. BUTTONS -------------------------------------------------------------- */
.btn-primary,
.btn-secondary {
  border-radius: 999px;
  font-size: 12px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-weight: 600;
}

.btn-primary {
  background: var(--gold);
  color: #111827;
  border: 1px solid var(--gold);
  box-shadow: 0 12px 26px rgba(15,23,42,.45);
}

.btn-secondary {
  background: transparent;
  color: #f9fafb;
  border: 1px solid rgba(248,250,252,.7);
  box-shadow: 0 8px 20px rgba(15,23,42,.35);
}

.soft-btn {
  background: #fff;
  color: var(--primary);
  border: 1px solid #d1d5db;
  box-shadow: none;
}

/* 5. HOMEPAGE SECTIONS ---------------------------------------------------- */
.hero { padding: 24px 0 22px; }

.hero-inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15,23,42,.18);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.15fr);
  gap: 22px;
  color: #e5e7eb;
  align-items: center;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #cbd5f5;
  margin-bottom: 4px;
}

.hero-title {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 6px;
}

.hero-title span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
}

.hero-text { font-size: 13px; margin-bottom: 8px; }
.hero-text strong { color: var(--gold); }

.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  margin: 10px 0 12px;
}

.hero-points li {
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(248,250,252,.5);
  background: rgba(15,23,42,.5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.hero-note { font-size: 12px; color: #cbd5f5; }

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-emblem-card,
.hero-summary-card {
  background: rgba(15,23,42,.96);
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,.6);
  font-size: 12px;
}

.hero-emblem-card {
  padding: 20px;
  text-align: center;
}

.hero-emblem-img-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 6px;
}

.hero-emblem-img-wrap img { width: 170px; max-width: 100%; }

.hero-emblem-subtitle {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #9ca3af;
  margin-bottom: 3px;
}

.hero-emblem-card h2 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  margin-bottom: 4px;
}

.hero-summary-card {
  padding: 16px;
  text-align: left;
}

.hero-summary-card h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  margin-bottom: 6px;
}

.hero-summary-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.hero-summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(148,163,184,.22);
  padding-top: 8px;
  color: #d1d5db;
}

.hero-summary-list strong { color: #fff; font-weight: 600; }

/* Generic section */
.section { padding: 18px 0; }
.section-header { margin-bottom: 10px; }

.section-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #6b7280;
}

.section-title { font-size: 18px; margin-bottom: 4px; }

.section-lead {
  font-size: 13px;
  color: var(--muted);
  max-width: 760px;
}

.two-col-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 18px;
}

/* Cards */
.card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 14px 16px;
  font-size: 13px;
  color: var(--muted);
  box-shadow: 0 8px 20px rgba(15,23,42,.06);
}

.card h2 { font-size: 16px; margin-bottom: 6px; color: var(--dark); }
.card h3 { font-size: 15px; margin-bottom: 4px; color: var(--dark); }
.card ul { margin-top: 6px; padding-left: 18px; }
.card li { margin-bottom: 4px; }

.acts-link {
  display: inline-flex;
  margin-top: 6px;
  font-size: 12px;
  color: #1d4ed8;
  text-decoration: underline;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 18px;
}

.about-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.about-img {
  border-radius: 10px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Category & acts grids */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.acts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

/* Status cards (homepage) */
.status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.status-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 14px;
  box-shadow: 0 8px 20px rgba(15,23,42,.06);
}

.status-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 8px;
}

.status-label.status-active { background: #e9f8ef; color: #166534; }
.status-label.status-review { background: #fff7e6; color: #9a6700; }
.status-label.status-suspended { background: #fff1f2; color: #b42318; }
.status-label.status-revoked { background: #f4f4f5; color: #52525b; }

.status-card h3 { font-size: 15px; color: var(--dark); margin-bottom: 5px; }
.status-card p { font-size: 13px; color: var(--muted); }

/* Verify panel */
.verify-panel {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(15,23,42,.08);
  overflow: hidden;
}

.verify-panel-inner {
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 18px;
  align-items: center;
}

.verify-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.verify-note { margin-top: 10px; font-size: 12px; color: #6b7280; }

/* Dark strips */
.strip-section {
  background: var(--dark);
  color: #e5e7eb;
  padding: 20px 0;
}

.strip-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.strip-card {
  background: rgba(15,23,42,.96);
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,.5);
  padding: 12px;
  font-size: 12px;
}

.strip-card h3 { font-size: 14px; margin-bottom: 4px; color: #fbbf24; }

.link-pill {
  display: inline-flex;
  align-items: center;
  margin-top: 7px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(248,250,252,.9);
  font-size: 11px;
  color: #f9fafb;
}

.strip-actions {
  margin-top: 7px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* Mandate */
.mandate-section { padding: 20px 0 24px; }

.mandate-inner {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 16px 18px;
  box-shadow: 0 8px 20px rgba(15,23,42,.06);
}

.mandate-header { margin-bottom: 10px; }

.mandate-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}

.mandate-item {
  border-radius: 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 10px;
}

.mandate-icon { font-size: 20px; margin-bottom: 4px; }

.mandate-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--dark);
}

/* Integrity grid */
.integrity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.inline-note { margin-top: 10px; font-size: 12px; color: #6b7280; }

/* 6. FOOTER --------------------------------------------------------------- */
.site-footer {
  background: var(--dark);
  color: #cbd5f5;
  border-top: 2px solid var(--gold);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1.5fr 1.2fr 1.5fr;
  gap: 28px;
  padding-top: 36px;
  padding-bottom: 28px;
}

.footer-col h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
  margin-bottom: 12px;
}

.footer-col p {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 10px;
}

.footer-logo img { height: 60px; width: auto; margin-bottom: 12px; }

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: #94a3b8;
}

.footer-list a { color: #cbd5f5; }
.footer-list a:hover { color: var(--gold); text-decoration: underline; }
.footer-links a { color: #94a3b8; }

.footer-ssl {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid #16a34a;
  font-size: 12px;
  color: #bbf7d0;
  background: rgba(21,128,61,.16);
}

.footer-register-note {
  margin-top: 12px;
  font-size: 12px;
}

.footer-register-note a { color: #fff; text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(148,163,184,.25);
  background: #010309;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 14px;
  padding-bottom: 14px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: #94a3b8;
}

.footer-bottom-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom-links a { text-decoration: underline; }
.footer-bottom-links a:hover { color: var(--gold); }

/* 7. VERIFY PAGE ---------------------------------------------------------- */
main.page--verify { padding-bottom: 3rem; }

.vl-hero-wrapper {
  background: #fff;
  border-bottom: 1px solid var(--nla-border);
}

.vl-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.1rem 20px 2rem;
  display: grid;
  grid-template-columns: minmax(0, 2.5fr) minmax(0, 2fr);
  gap: 2rem;
  align-items: flex-start;
}

.vl-kicker {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--nla-muted);
  margin-bottom: .4rem;
}

.vl-hero-title {
  font-size: 1.9rem;
  line-height: 1.25;
  margin-bottom: .4rem;
  color: var(--nla-navy-soft);
}

.vl-hero-title span { color: var(--nla-gold); }

.vl-hero-subtitle {
  font-size: .9rem;
  color: var(--nla-muted);
  margin-bottom: .7rem;
  max-width: 32rem;
}

.vl-hero-meta {
  font-size: .82rem;
  color: var(--nla-muted);
  margin-bottom: .9rem;
}

.vl-hero-brandchip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .3rem .7rem;
  border-radius: 999px;
  border: 1px solid var(--nla-border);
  font-size: .76rem;
  background: #f9fafb;
  margin-bottom: .6rem;
  color: var(--nla-navy-soft);
}

.vl-hero-brandchip span.logo {
  width: 22px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid var(--nla-gold-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  font-weight: 700;
  background: #fff;
}

.vl-search-card {
  background: #f9fafb;
  border-radius: 14px;
  padding: 1.4rem 1.5rem 1.3rem;
  border: 1px solid var(--nla-border);
  box-shadow: 0 4px 10px rgba(15,23,42,.03);
}

.vl-search-title { font-size: .98rem; margin-bottom: .25rem; }
.vl-search-subtitle { font-size: .84rem; color: var(--nla-muted); margin-bottom: .8rem; }
.vl-search-note { margin-top: .6rem; font-size: .75rem; color: var(--nla-muted); }

.vl-contact-block {
  display: flex;
  flex-direction: column;
  margin: .9rem 0;
  border: 1px solid var(--nla-border);
  border-radius: 10px;
  overflow: hidden;
}

.vl-contact-item {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  padding: .6rem .9rem;
  border-bottom: 1px solid var(--nla-border);
  font-size: .84rem;
}

.vl-contact-item:last-child { border-bottom: none; }

.vl-contact-label {
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--nla-muted);
  white-space: nowrap;
  min-width: 7rem;
}

.vl-contact-value {
  color: #0369a1;
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-all;
}

.vl-side-panel {
  border-radius: 14px;
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--nla-border);
  background: #fdfdfd;
  box-shadow: 0 4px 10px rgba(15,23,42,.02);
  font-size: .85rem;
}

.vl-side-title {
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: .5rem;
  color: var(--nla-navy-soft);
}

.vl-side-text { color: var(--nla-muted); margin-bottom: .7rem; }

.vl-side-list {
  list-style: disc;
  padding-left: 1.1rem;
  color: var(--nla-muted);
  font-size: .83rem;
  margin-bottom: .8rem;
}

.vl-status-legend {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  font-size: .78rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .2rem .75rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .03em;
}

.status-pill::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dot, currentColor);
}

.status-pill.status-active { background: #ecfdf3; color: #15803d; border: 1px solid #bbf7d0; --dot: #16a34a; }
.status-pill.status-under_review { background: #fdf4dd; color: #92400e; border: 1px solid #f5e2b8; --dot: #d4a548; }
.status-pill.status-suspended { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; --dot: #dc2626; }
.status-pill.status-revoked { background: #f3f4f6; color: #4b5563; border: 1px solid #e5e7eb; --dot: #9ca3af; }

.vl-status-meaning-block {
  margin-top: 1rem;
  padding-top: .9rem;
  border-top: 1px solid #e6ebf2;
}

.vl-status-meaning-title {
  font-size: .82rem;
  font-weight: 700;
  color: #08244f;
  margin: 0 0 .5rem;
}

.vl-status-meaning-list { display: grid; gap: .5rem; }
.vl-status-meaning-item { font-size: .78rem; line-height: 1.7; color: var(--nla-muted); }

.vl-registry-note {
  margin-top: .9rem;
  font-size: .75rem;
  line-height: 1.7;
  color: #516072;
  padding-top: .75rem;
  border-top: 1px solid #e6ebf2;
}

.vl-support-card {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  padding: 1.2rem 20px;
  background: #fff;
  border: 1px solid var(--nla-border);
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(15,23,42,.03);
}

.vl-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  margin-top: .7rem;
}

.vl-support-item {
  border: 1px dashed #d6ddea;
  border-radius: 14px;
  background: #fbfcfe;
  padding: .75rem .75rem .6rem;
}

.vl-support-item h3 { margin: 0 0 .3rem; font-size: .82rem; color: #0f172a; }
.vl-support-item p { margin: 0; font-size: .78rem; line-height: 1.65; color: var(--nla-muted); }

/* 8. RESPONSIVE ----------------------------------------------------------- */
@media (max-width: 1024px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #051426;
    border-top: 1px solid rgba(212,165,72,.25);
    margin-left: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }

  .site-nav.open { max-height: 80vh; overflow-y: auto; }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
  }

  .nav-menu > li > a { padding: 12px 20px; }

  .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(255,255,255,.03);
    display: none;
    min-width: 0;
  }

  .nav-menu > li.expanded > .sub-menu { display: block; }

  .header-cta { display: none; }
}

@media (max-width: 900px) {
  .two-col-inner,
  .about-grid,
  .strip-inner,
  .hero-content,
  .verify-panel-inner,
  .integrity-grid { grid-template-columns: minmax(0, 1fr); }

  .category-grid { grid-template-columns: minmax(0, 1fr); }
  .acts-grid,
  .mandate-grid,
  .status-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .site-footer-grid { grid-template-columns: 1fr 1fr; }
  .vl-hero { grid-template-columns: minmax(0, 1fr); }
  .vl-support-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .acts-grid,
  .mandate-grid,
  .status-grid,
  .site-footer-grid { grid-template-columns: minmax(0, 1fr); }

  .hero-content,
  .verify-panel-inner { padding: 18px 16px; }

  .site-topbar-inner { justify-content: center; text-align: center; }
}
