/* ==========================================================================
   VHMX Owner Portal — dashboard shell
   Loads after styles.css (reuses brand tokens, fonts, buttons)
   ========================================================================== */

.dash {
  background: #11184e;          /* navy frame behind the curved notch */
  min-height: 100vh;
}

/* ---- Top bar ------------------------------------------------------------- */
.topbar {
  position: fixed; inset: 0 0 auto 0; height: 62px; z-index: 60;
  background: #11184e;
  display: flex; align-items: center; gap: 18px;
  padding-right: 24px;
}
.topbar__logo {
  flex: 0 0 auto; height: 100%;
  display: flex; align-items: center;
  padding-left: clamp(20px, 2.5vw, 34px); padding-right: 12px;
}
.topbar__logo img { height: 34px; width: auto; display: block; }
.topbar__crumb {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
}
.topbar__crumb .sep { color: rgba(255,255,255,0.3); }
.topbar__crumb b { color: #fff; font-weight: 600; }
.topbar__right { margin-left: auto; display: flex; align-items: center; gap: 20px; }
.topbar__icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center; color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.04);
  cursor: pointer; transition: color .15s ease, background .15s ease;
}
.topbar__icon:hover { color: #fff; background: rgba(255,255,255,0.1); }
.topbar__profile { position: relative; }
.topbar__user {
  display: flex; align-items: center; gap: 11px; cursor: pointer;
  background: transparent; border: 0; padding: 4px; border-radius: 10px;
  transition: background .15s ease;
}
.topbar__user:hover { background: rgba(255,255,255,0.06); }
.topbar__user .who { display: flex; flex-direction: column; text-align: left; }
.topbar__user .caret { color: rgba(255,255,255,0.55); transition: transform .18s ease; }
.topbar__user[aria-expanded="true"] .caret { transform: rotate(180deg); }
@media (max-width: 560px) { .topbar__user .who { display: none; } }

/* Profile dropdown */
.profile-menu {
  position: absolute; top: calc(100% + 10px); right: 0; z-index: 70;
  width: 256px; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; box-shadow: 0 24px 50px -18px rgba(11,17,56,0.4);
  padding: 8px; opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: opacity .16s ease, transform .16s ease;
}
.profile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
.profile-menu__head {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 12px 14px; margin-bottom: 6px; border-bottom: 1px solid var(--line-soft);
}
.profile-menu__head .avatar {
  width: 38px; height: 38px; border-radius: 10px; flex: 0 0 auto;
  background: var(--green-500); color: var(--navy-900);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 0.82rem;
}
.profile-menu__head .nm { font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.profile-menu__head .em { font-size: 0.78rem; color: var(--slate-400); }
.profile-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px; border-radius: 9px;
  font-size: 0.92rem; font-weight: 500; color: var(--slate-700);
  transition: background .14s ease, color .14s ease;
}
.profile-menu a svg { width: 18px; height: 18px; color: var(--slate-400); }
.profile-menu a:hover { background: var(--surface-soft); color: var(--ink); }
.profile-menu a:hover svg { color: var(--navy-600); }
.profile-menu a.is-danger { color: #c0392b; }
.profile-menu a.is-danger svg { color: #c0392b; }
.profile-menu a.is-danger:hover { background: #fdecea; }
.profile-menu__sep { height: 1px; background: var(--line-soft); margin: 6px 4px; }
.topbar__user .avatar {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--green-500); color: var(--navy-900);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.82rem;
}
.topbar__user .nm { color: #fff; font-size: 0.85rem; font-weight: 600; line-height: 1.15; }
.topbar__user .rl { color: rgba(255,255,255,0.5); font-size: 0.74rem; line-height: 1.15; }

/* ---- Left rail (hover to expand) ----------------------------------------- */
.sidebar {
  position: fixed; left: 0; top: 62px; bottom: 0; z-index: 55;
  width: 76px; background: #11184e; overflow: hidden;
  padding: 16px 0; transition: width .22s cubic-bezier(.4,0,.2,1);
  border-right: 1px solid rgba(255,255,255,0.06);
}
.sidebar:hover { width: 248px; box-shadow: 24px 0 60px -24px rgba(0,0,0,.5); }
.side-item {
  display: flex; align-items: center; gap: 18px;
  height: 50px; padding: 0 27px; white-space: nowrap;
  color: rgba(255,255,255,0.66); cursor: pointer;
  transition: color .15s ease, background .15s ease;
}
.side-item svg { flex: 0 0 auto; width: 22px; height: 22px; }
.side-item .lbl {
  font-family: var(--font-display); font-size: 0.92rem; font-weight: 500;
  opacity: 0; transition: opacity .18s ease;
}
.sidebar:hover .side-item .lbl { opacity: 1; }
.side-item:hover { color: #fff; background: rgba(255,255,255,0.05); }
.side-item.active { color: #fff; box-shadow: inset 3px 0 0 var(--green-500); background: rgba(255,255,255,0.04); }
.side-sep { height: 1px; background: rgba(255,255,255,0.08); margin: 12px 22px; }

/* ---- Main panel ---------------------------------------------------------- */
.dash-main {
  margin-left: 76px; margin-top: 62px;
  min-height: calc(100vh - 62px);
  background: #eef0f6;
  border-top-left-radius: 30px;
  padding: 34px clamp(24px, 7vw, 160px) 72px;
}

/* ---- Welcome row --------------------------------------------------------- */
.welcome-grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 24px;
}
@media (max-width: 1000px) { .welcome-grid { grid-template-columns: 1fr; } }

.wcard {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 130% at 100% 0%, #2a3170 0%, #161d56 45%, #11184e 100%);
  border-radius: 24px; padding: clamp(26px, 3vw, 38px); color: #fff;
  display: flex; gap: 24px; justify-content: space-between;
}
.wcard__grain {
  position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: radial-gradient(120% 120% at 100% 0%, #000, transparent 70%);
}
.wcard__body { position: relative; z-index: 1; max-width: 60%; }
.wcard--wide .wcard__body { max-width: 70%; }
.wcard--wide .wcard__desc { max-width: 70ch; }
@media (max-width: 560px) { .wcard__body, .wcard--wide .wcard__body { max-width: 100%; } }
.wcard__pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 13px; border-radius: 999px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.88); font-family: var(--font-display);
  margin-bottom: 20px;
}
.wcard__pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-500); }
.wcard h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.3rem); line-height: 1.08; }
.wcard h2 span { color: var(--green-500); }
.wcard__desc { color: rgba(255,255,255,0.72); font-size: 0.96rem; margin-top: 14px; max-width: 46ch; }
.wstats { display: flex; gap: clamp(20px, 3vw, 38px); margin-top: 26px; }
.wstats .s .v { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; }
.wstats .s .v small { font-size: 0.95rem; color: rgba(255,255,255,0.6); font-weight: 600; }
.wstats .s .k { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 3px; }

.wplay {
  position: relative; z-index: 1; flex: 0 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  align-self: center; cursor: pointer; text-decoration: none;
}
.wplay .circ {
  width: 66px; height: 66px; border-radius: 50%;
  border: 2px solid var(--green-500); color: var(--green-500);
  display: grid; place-items: center; transition: background .15s ease, color .15s ease;
}
.wplay:hover .circ { background: var(--green-500); color: var(--navy-900); }
.wplay .t { font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.14em; color: #fff; font-weight: 600; }
@media (max-width: 560px) { .wplay { display: none; } }

.acard {
  background: #fff; border-radius: 24px; padding: 22px;
  box-shadow: 0 18px 40px -22px rgba(17,24,78,0.25);
  display: flex; flex-direction: column;
}
.acard__img {
  flex: 1; display: grid; place-items: center;
  min-height: 220px; padding: 8px;
}
.acard__img img { max-height: 260px; width: auto; object-fit: contain; }
.acard__foot { display: flex; justify-content: space-between; align-items: flex-end; padding: 8px 6px 4px; }
.acard__est { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate-400); font-weight: 600; }
.acard__val { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: var(--ink); }

/* ---- What's inside ------------------------------------------------------- */
.inside-head { display: flex; align-items: center; gap: 12px; margin: 40px 0 20px; }
.inside-head .ic {
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(179,211,75,0.2); color: var(--green-700);
  display: grid; place-items: center;
}
.inside-head h3 {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate-500);
}

.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1100px) { .tiles { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .tiles { grid-template-columns: 1fr; } }
.tile {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 22px;
  transition: transform .16s ease, box-shadow .2s ease;
  cursor: pointer;
}
.tile:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -20px rgba(17,24,78,0.28); }
.tile__ic {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 30px;
  background: var(--surface-tint); color: var(--navy-700);
}
.tile h4 { font-family: var(--font-display); font-size: 1.02rem; margin-bottom: 7px; }
.tile p { font-size: 0.85rem; color: var(--slate-500); line-height: 1.5; }
.tag-badge {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--font-display); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.08em; padding: 4px 9px; border-radius: 999px;
}
.tag-badge--live { background: rgba(179,211,75,0.2); color: var(--green-700); }
.tag-badge--beta { background: #e6edff; color: #3b5bdb; }
.tag-badge--concept { background: #fdeede; color: #b5650f; }

/* ---- Primary action cards ------------------------------------------------ */
.action-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1180px) { .action-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) { .action-grid { grid-template-columns: 1fr; } }
.action-card {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  padding: clamp(30px, 3.2vw, 44px); display: flex; flex-direction: column;
  min-height: clamp(420px, 46vh, 520px);
  transition: transform .16s ease, box-shadow .2s ease, border-color .2s ease;
}
.action-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -26px rgba(17,24,78,0.34); }
.action-card--accent { border-color: rgba(179,211,75,0.6); background: linear-gradient(160deg, #f9fce9, #ffffff 58%); }
.action-card--amber  { border-color: rgba(214,138,46,0.42); background: linear-gradient(160deg, #fff6ea, #ffffff 58%); }
.action-card--purple { border-color: rgba(103,65,217,0.34); background: linear-gradient(160deg, #f3eefc, #ffffff 58%); }
.action-card__glow {
  position: absolute; inset: -30% -20% auto auto; width: 60%; height: 85%;
  filter: blur(10px); pointer-events: none;
  background: radial-gradient(circle, rgba(179,211,75,0.22), transparent 70%);
}
.action-card--amber  .action-card__glow { background: radial-gradient(circle, rgba(232,151,52,0.22), transparent 70%); }
.action-card--purple .action-card__glow { background: radial-gradient(circle, rgba(103,65,217,0.20), transparent 70%); }
.action-card .a-ic {
  width: 68px; height: 68px; border-radius: 18px; margin-bottom: 22px;
  display: grid; place-items: center; position: relative; z-index: 1;
}
.action-card .a-ic svg { width: 32px; height: 32px; }
.action-card h3 { font-size: clamp(1.5rem, 2.2vw, 1.9rem); margin-bottom: 10px; position: relative; z-index: 1; }
.action-card p { color: var(--slate-500); font-size: 1.04rem; line-height: 1.6; max-width: 46ch; position: relative; z-index: 1; }
.action-card .a-foot { margin-top: auto; padding-top: 28px; position: relative; z-index: 1; }

.inline-search { display: flex; gap: 10px; }
.inline-search input {
  flex: 1; min-width: 0; font-family: inherit; font-size: 0.95rem; color: var(--ink);
  border: 1px solid var(--line); border-radius: 12px; padding: 13px 15px; background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.inline-search input:focus { outline: none; border-color: var(--green-600); box-shadow: var(--ring); }
@media (max-width: 440px) { .inline-search { flex-wrap: wrap; } .inline-search input, .inline-search .btn { width: 100%; justify-content: center; } }
.quick-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; position: relative; z-index: 1; }
.quick-chips a {
  font-size: 0.8rem; font-weight: 500; color: var(--slate-700);
  padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; background: #fff;
  transition: border-color .15s ease, color .15s ease;
}
.quick-chips a:hover { border-color: var(--navy-500); color: var(--navy-700); }

/* ---- KPI row ------------------------------------------------------------- */
.kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 820px) { .kpi-row { grid-template-columns: 1fr 1fr; } }
.kpi { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px 22px; }
.kpi .v { font-family: var(--font-display); font-weight: 700; font-size: 1.85rem; color: var(--ink); }
.kpi .k { font-size: 0.82rem; color: var(--slate-500); margin-top: 2px; }
.kpi .d { font-size: 0.76rem; font-weight: 600; color: var(--green-700); margin-top: 10px; display: inline-flex; align-items: center; gap: 5px; }

/* ---- Activity list ------------------------------------------------------- */
.activity { background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.activity__row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center;
  padding: 16px 22px; border-top: 1px solid var(--line-soft);
}
.activity__row:first-child { border-top: 0; }
.activity__ic { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; flex: 0 0 auto; }
.activity__t { font-weight: 600; font-size: 0.92rem; }
.activity__s { font-size: 0.8rem; color: var(--slate-400); }
.activity__meta { font-size: 0.8rem; color: var(--slate-400); white-space: nowrap; }

/* ==========================================================================
   App pages (sidebar destinations)
   ========================================================================== */
.page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 26px; }
.page-head .eyebrow { color: var(--green-700); }
.page-head h1 { font-size: clamp(1.6rem, 2.6vw, 2.15rem); margin-top: 6px; }
.page-head p { color: var(--slate-500); margin-top: 8px; max-width: 64ch; }
.page-head__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.app-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: clamp(20px, 2.4vw, 30px); }
.app-card + .app-card { margin-top: 20px; }
.app-card__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.app-card__head h3 { font-family: var(--font-display); font-size: 1.15rem; }
.app-card__head .sub { font-size: 0.85rem; color: var(--slate-400); }

.app-split { display: grid; grid-template-columns: 1.5fr 1fr; gap: 20px; align-items: start; }
@media (max-width: 960px) { .app-split { grid-template-columns: 1fr; } }

/* Data table */
.table-wrap { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; min-width: 560px; }
.data-table th { text-align: left; font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate-400); padding: 0 16px 12px; border-bottom: 1px solid var(--line); white-space: nowrap; }
.data-table td { padding: 15px 16px; border-bottom: 1px solid var(--line-soft); vertical-align: middle; }
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table tbody tr { transition: background .12s ease; }
.data-table tbody tr:hover { background: var(--surface-soft); }
.data-table .strong { font-weight: 600; color: var(--ink); }
.data-table .sub { font-size: 0.8rem; color: var(--slate-400); margin-top: 2px; }
.data-table .t-num { font-family: var(--font-display); font-weight: 600; color: var(--ink); }
.data-table .right { text-align: right; }

/* Status pills */
.pill { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.03em; padding: 5px 11px; border-radius: 999px; white-space: nowrap; }
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: .8; }
.pill--green { background: rgba(179,211,75,0.2); color: var(--green-700); }
.pill--amber { background: #fdeede; color: #b5650f; }
.pill--blue  { background: #e6edff; color: #3b5bdb; }
.pill--purple{ background: #efe9ff; color: #6741d9; }
.pill--grey  { background: var(--surface-soft); color: var(--slate-500); }
.pill--red   { background: #fdecea; color: #c0392b; }

/* Filters / toolbar */
.toolbar { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 22px; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; }
.filters .f { padding: 8px 15px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-size: 0.85rem; font-weight: 500; color: var(--slate-700); cursor: pointer; transition: border-color .14s ease, color .14s ease; }
.filters .f:hover { border-color: var(--navy-500); }
.filters .f.is-on { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.search-input { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 11px 15px; flex: 1; min-width: 240px; }
.search-input svg { color: var(--slate-400); flex: 0 0 auto; }
.search-input input { border: 0; outline: 0; flex: 1; min-width: 0; font-family: inherit; font-size: 0.95rem; color: var(--ink); background: transparent; }

/* Provider cards (Mx network) */
.prov-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 1100px) { .prov-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px)  { .prov-grid { grid-template-columns: 1fr; } }
.prov-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px; display: flex; flex-direction: column; transition: transform .16s ease, box-shadow .2s ease; }
.prov-card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -22px rgba(17,24,78,0.26); }
.prov-card__top { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; }
.prov-card__logo { width: 46px; height: 46px; border-radius: 12px; flex: 0 0 auto; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; background: var(--surface-tint); color: var(--navy-700); }
.prov-card h4 { font-family: var(--font-display); font-size: 1.05rem; }
.prov-card .loc { font-size: 0.8rem; color: var(--slate-400); }
.prov-card p { font-size: 0.88rem; color: var(--slate-500); line-height: 1.55; }
.prov-card__foot { margin-top: auto; padding-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.rating { display: inline-flex; align-items: center; gap: 5px; font-weight: 600; font-size: 0.85rem; color: var(--ink); }
.rating svg { color: var(--green-600); width: 15px; height: 15px; }

/* Definition rows (forms / summaries) */
.dl { display: grid; gap: 0; }
.dl__row { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-size: 0.92rem; }
.dl__row:last-child { border-bottom: 0; }
.dl__row .k { color: var(--slate-500); }
.dl__row .v { font-weight: 600; color: var(--ink); text-align: right; }

/* ---- Virtual Hangar logo (hero) ------------------------------------------ */
.vh-logo {
  position: relative; z-index: 1; flex: 0 0 auto; align-self: center;
  width: clamp(200px, 22vw, 290px); height: auto; display: block;
  border-radius: 24px; box-shadow: 0 18px 40px -18px rgba(0,0,0,0.5);
}
@media (max-width: 640px) { .vh-logo { display: none; } }

/* ---- Service cards ------------------------------------------------------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1100px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px)  { .svc-grid { grid-template-columns: 1fr; } }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 28px; display: flex; flex-direction: column; min-height: 240px;
  transition: transform .16s ease, box-shadow .2s ease;
}
.svc-card:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -22px rgba(17,24,78,0.28); }
.svc-card__ic {
  width: 50px; height: 50px; border-radius: 14px; margin-bottom: 22px;
  display: grid; place-items: center;
  background: rgba(179,211,75,0.18); color: var(--green-700);
}
.svc-card h3 { font-family: var(--font-display); font-size: 1.18rem; margin-bottom: 8px; }
.svc-card p { color: var(--slate-500); font-size: 0.92rem; line-height: 1.58; }
.svc-card__foot { margin-top: auto; padding-top: 20px; }
.svc-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.09em; padding: 6px 12px; border-radius: 999px;
  background: var(--surface-soft); color: var(--slate-500);
}
.svc-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--slate-400); }
.svc-badge--live { background: rgba(179,211,75,0.18); color: var(--green-700); }
.svc-badge--live .dot { background: var(--green-600); }
.svc-badge--info { background: var(--surface-tint); color: var(--navy-700); }
.svc-badge--info .dot { background: var(--navy-600); }

/* ---- Data spine section -------------------------------------------------- */
.vh-spine { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: clamp(28px, 4vw, 44px); }
.vh-spine h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.vh-spine > p { color: var(--slate-500); font-size: 1.02rem; max-width: 70ch; margin-top: 12px; }
.vh-spine__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
@media (max-width: 760px) { .vh-spine__grid { grid-template-columns: 1fr; gap: 18px; } }
.vh-spine__item { display: flex; gap: 13px; align-items: flex-start; }
.vh-spine__item .tk {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(179,211,75,0.2); color: var(--green-700);
  display: grid; place-items: center; margin-top: 2px;
}
.vh-spine__item h4 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 3px; }
.vh-spine__item p { font-size: 0.88rem; color: var(--slate-500); line-height: 1.5; }

/* Icon tint variants for tiles */
.ic-green  { background: rgba(179,211,75,0.2);  color: var(--green-700); }
.ic-amber  { background: #fdeede;               color: #b5650f; }
.ic-blue   { background: #e6edff;               color: #3b5bdb; }
.ic-purple { background: #efe9ff;               color: #6741d9; }
.ic-teal   { background: #e3f5f1;               color: #0c8577; }
.ic-pink   { background: #fde8ef;               color: #c2255c; }
