/* ==================================================================
   GatEvo Console — design system
   Shared by the installer portal shell and the sign-in screens.
   Everything is token driven so `:root[data-theme="light"]` is the
   only place light mode has to be described.
   ================================================================== */

:root {
    --sans: "Geist", "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
    --mono: "Geist Mono", "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

    --bg:        oklch(0.165 0.014 262);
    --sunk:      oklch(0.185 0.014 262);
    --surface:   oklch(0.213 0.015 262);
    --raise:     oklch(0.245 0.016 262);
    --line:      oklch(0.285 0.016 262);
    --line-soft: oklch(0.245 0.014 262);

    --text:  oklch(0.975 0.004 262);
    --muted: oklch(0.685 0.014 262);
    --faint: oklch(0.545 0.014 262);

    --accent:      oklch(0.635 0.205 254);
    --accent-ink:  oklch(0.99 0 0);
    --accent-wash: oklch(0.635 0.205 254 / 0.15);
    --logo-1:      oklch(0.585 0.215 254);
    --logo-2:      oklch(0.72 0.155 244);

    --good:      oklch(0.74 0.155 158);
    --good-wash: oklch(0.74 0.155 158 / 0.14);
    --warn:      oklch(0.80 0.145 82);
    --warn-wash: oklch(0.80 0.145 82 / 0.14);
    --bad:       oklch(0.66 0.185 22);
    --bad-wash:  oklch(0.66 0.185 22 / 0.14);

    --shadow: 0 1px 2px oklch(0 0 0 / 0.4), 0 8px 24px -12px oklch(0 0 0 / 0.6);
    --pop-shadow: var(--shadow), 0 22px 48px -18px oklch(0 0 0 / 0.5);
    --grid: oklch(1 0 0 / 0.05);
}

:root[data-theme="light"] {
    --bg:        oklch(0.975 0.005 262);
    --sunk:      oklch(0.955 0.006 262);
    --surface:   oklch(1 0 0);
    --raise:     oklch(0.985 0.004 262);
    --line:      oklch(0.905 0.008 262);
    --line-soft: oklch(0.94 0.006 262);

    --text:  oklch(0.245 0.022 262);
    --muted: oklch(0.515 0.018 262);
    --faint: oklch(0.635 0.016 262);

    --accent:      oklch(0.545 0.225 255);
    --accent-ink:  oklch(1 0 0);
    --accent-wash: oklch(0.545 0.225 255 / 0.10);
    --logo-1:      oklch(0.505 0.225 255);
    --logo-2:      oklch(0.63 0.17 245);

    --good:      oklch(0.58 0.145 158);
    --good-wash: oklch(0.58 0.145 158 / 0.10);
    --warn:      oklch(0.64 0.135 72);
    --warn-wash: oklch(0.64 0.135 72 / 0.12);
    --bad:       oklch(0.56 0.19 22);
    --bad-wash:  oklch(0.56 0.19 22 / 0.10);

    --shadow: 0 1px 2px oklch(0.25 0.02 262 / 0.06), 0 10px 28px -16px oklch(0.25 0.02 262 / 0.22);
    --pop-shadow: var(--shadow), 0 22px 48px -18px oklch(0.25 0.02 262 / 0.28);
    --grid: oklch(0.25 0.02 262 / 0.06);
}

/* ── Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html, body { height: 100%; }

body.gv-body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    font-size: 14px;
    letter-spacing: -0.006em;
    -webkit-font-smoothing: antialiased;
}

.gv-body a { color: var(--accent); text-decoration: none; }
.gv-body a:hover { color: var(--text); }
.gv-body ::selection { background: var(--accent-wash); }
.gv-body :focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.gv-body h1, .gv-body h2, .gv-body h3, .gv-body p, .gv-body ul, .gv-body figure { margin: 0; }
.gv-body ul { padding: 0; list-style: none; }
.gv-body input, .gv-body select, .gv-body textarea, .gv-body button { font-family: inherit; }
.gv-body img { display: block; }
.gv-body svg { flex: none; }

/* The document stays hidden until the shell script runs, so nothing
   flashes unstyled while fonts and the stylesheet settle. */
.gv-body { opacity: 0; transition: opacity 0.18s ease; }
.gv-body.loaded { opacity: 1; }

.gv-hidden, .hidden { display: none !important; }
.gv-sr {
    position: absolute; width: 1px; height: 1px; margin: -1px;
    padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ── Motion ─────────────────────────────────────────────────────── */
@keyframes gv-draw   { from { stroke-dashoffset: var(--len); } to { stroke-dashoffset: 0; } }
@keyframes gv-fade   { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
@keyframes gv-lift   { 0%, 84%, 100% { transform: translateY(0); } 90% { transform: translateY(-2px); } }
@keyframes gv-key    { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
@keyframes gv-slide  { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes gv-grow   { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes gv-pulse  { 0% { r: 5; opacity: 0.35; } 70%, 100% { r: 13; opacity: 0; } }
@keyframes gv-pop    { from { opacity: 0; transform: translateY(-6px) scale(0.985); } to { opacity: 1; transform: none; } }
@keyframes gv-breathe{ 0%, 100% { opacity: 0.35; } 50% { opacity: 0.75; } }
@keyframes gv-sweep  { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes gv-spin   { to { transform: rotate(360deg); } }
@keyframes gv-shimmer{ from { background-position: -180% 0; } to { background-position: 180% 0; } }

.gv-in { opacity: 0; }
.gv-in.in-view { animation: gv-fade 0.5s cubic-bezier(0.2, 0.9, 0.3, 1) both; }
.gv-spin { animation: gv-spin 0.9s linear infinite; }

@media (prefers-reduced-motion: reduce) {
    .gv-body *, .gv-body *::before, .gv-body *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
    .gv-in { opacity: 1; }
}

/* ── Scrollbars ─────────────────────────────────────────────────── */
.gv-scroll { scrollbar-width: thin; scrollbar-color: var(--line) transparent; }
.gv-scroll::-webkit-scrollbar { width: 8px; height: 8px; }
.gv-scroll::-webkit-scrollbar-track { background: transparent; }
.gv-scroll::-webkit-scrollbar-thumb { background: var(--line); border-radius: 99px; }
.gv-scroll::-webkit-scrollbar-thumb:hover { background: var(--faint); }

/* ==================================================================
   Shell
   ================================================================== */
.gv-shell {
    display: grid;
    grid-template-columns: 244px minmax(0, 1fr);
    min-height: 100vh;
    background: radial-gradient(70% 55% at 78% 0%, var(--accent-wash) 0%, transparent 58%), var(--bg);
    transition: grid-template-columns 0.22s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.gv-rail {
    position: sticky;
    top: 0;
    align-self: start;
    height: 100vh;
    z-index: 40;
    display: flex;
    flex-direction: column;
    padding: 18px 14px;
    background: radial-gradient(88% 60% at 12% 4%, var(--accent-wash) 0%, transparent 62%), var(--sunk);
    border-right: 1px solid var(--line-soft);
    transition: padding 0.22s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.gv-rail-nav { flex: 1; min-height: 0; overflow-y: auto; display: flex; flex-direction: column; gap: 4px; margin: 0 -4px; padding: 0 4px; }

.gv-main { min-width: 0; display: flex; flex-direction: column; }

.gv-header {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    /* Frosted glass — content scrolling underneath stays readable */
    background: color-mix(in oklab, var(--bg) 52%, transparent);
    backdrop-filter: blur(18px) saturate(1.35);
    -webkit-backdrop-filter: blur(18px) saturate(1.35);
    border-bottom: 1px solid var(--line-soft);
}
:root[data-theme="light"] .gv-header {
    background: color-mix(in oklab, var(--bg) 62%, transparent);
}

.gv-page {
    padding: 26px 28px 56px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gv-overlay {
    position: fixed;
    inset: 0;
    z-index: 35;
    background: oklch(0.12 0.01 262 / 0.6);
    backdrop-filter: blur(2px);
}

/* ── Sidebar ────────────────────────────────────────────────────── */
.gv-brand { display: flex; align-items: center; gap: 10px; padding: 6px 8px 18px; }
.gv-brand-name { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; color: var(--text); }
.gv-brand-sub { font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em; color: var(--faint); }

.gv-navlabel {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--faint);
    padding: 0 8px 6px;
}
.gv-navlabel + .gv-navlabel, .gv-navitem + .gv-navlabel { padding-top: 14px; }

.gv-navitem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 9px 10px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: var(--muted);
    font-family: var(--sans);
    font-size: 13.5px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}
a.gv-navitem { color: var(--muted); }
a.gv-navitem:hover { color: var(--text); }
.gv-navitem:hover { background: var(--surface); color: var(--text); }
.gv-navitem.is-active { background: var(--accent-wash); color: var(--text); font-weight: 600; }
.gv-navitem-lead {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.gv-navitem-lead svg { flex: none; opacity: 0.85; }
.gv-navitem.is-active .gv-navitem-lead svg { opacity: 1; color: var(--accent); }
.gv-navitem-meta { font-family: var(--mono); font-size: 10.5px; color: var(--faint); }
.gv-navitem.is-active .gv-navitem-meta { color: var(--accent); }
.gv-navitem-dot { width: 6px; height: 6px; border-radius: 99px; background: var(--warn); flex: none; }

/* Not-yet-shipped areas — clickable, open the Coming Soon modal. */
.gv-navitem--soon { color: var(--faint); }
.gv-navitem--soon:hover { color: var(--muted); background: var(--surface); }
.gv-navitem--soon .gv-navitem-lead svg { opacity: 0.55; }

.gv-rule { height: 1px; background: var(--line-soft); margin: 14px 8px; }

.gv-soon-toggle {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 8px 10px; border: 0; border-radius: 9px;
    background: transparent; color: var(--faint);
    font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em; cursor: pointer;
}
.gv-soon-toggle:hover { color: var(--muted); }
.gv-soon-item {
    display: flex; align-items: center; gap: 10px;
    padding: 7px 10px; border-radius: 8px;
    color: var(--faint); font-size: 12.5px; cursor: default;
}
.gv-soon-item span { width: 5px; height: 5px; border-radius: 99px; border: 1px solid var(--line); flex: none; }

/* Installer status / promo card at the foot of the rail */
.gv-rail-promo {
    position: relative;
    margin: 8px 0 0;
    padding: 16px 14px 14px;
    border-radius: 14px;
    background:
        radial-gradient(120% 90% at 100% 0%, oklch(0.80 0.145 82 / 0.35) 0%, transparent 55%),
        linear-gradient(145deg, var(--logo-1) 0%, var(--accent) 55%, var(--logo-2) 100%);
    color: var(--accent-ink);
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow: hidden;
}
.gv-rail-promo-title { font-size: 13px; font-weight: 600; letter-spacing: -0.01em; }
.gv-rail-promo-sub { font-size: 11px; opacity: 0.78; margin-bottom: 6px; }
.gv-rail-promo-list {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.gv-rail-promo-list li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    opacity: 0.92;
}
.gv-rail-promo-list li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 99px;
    background: currentColor;
    opacity: 0.7;
    flex: none;
}
.gv-rail-promo-cta {
    display: block;
    text-align: center;
    padding: 8px 10px;
    border-radius: 9px;
    background: oklch(1 0 0 / 0.95);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}
.gv-rail-promo-cta:hover { background: oklch(1 0 0); color: var(--logo-1); }
.gv-rail-promo.is-dismissed { display: none; }

.gv-rail-user {
    display: flex; align-items: center; gap: 9px;
    margin-top: 12px; padding: 12px;
    border-radius: 12px; background: var(--surface); border: 1px solid var(--line-soft);
}
.gv-rail-user-name { font-size: 12.5px; font-weight: 600; color: var(--text); }
.gv-rail-user-role { font-size: 10.5px; color: var(--faint); }

/* Desktop icon rail — labels hide, counts become tooltips */
@media (min-width: 1001px) {
    .gv-shell.is-rail-collapsed {
        grid-template-columns: 76px minmax(0, 1fr);
    }
    .gv-rail.is-collapsed {
        padding: 18px 8px;
        align-items: stretch;
    }
    .gv-rail.is-collapsed .gv-brand {
        justify-content: center;
        padding: 6px 0 14px;
    }
    .gv-rail.is-collapsed .gv-brand-copy,
    .gv-rail.is-collapsed .gv-navlabel,
    .gv-rail.is-collapsed .gv-navitem-lead > span,
    .gv-rail.is-collapsed .gv-navitem-meta,
    .gv-rail.is-collapsed .gv-soon,
    .gv-rail.is-collapsed .gv-navitem-dot,
    .gv-rail.is-collapsed .gv-rail-promo,
    .gv-rail.is-collapsed .gv-rail-user-copy,
    .gv-rail.is-collapsed .gv-rail-user .gv-iconbtn {
        display: none !important;
    }
    .gv-rail.is-collapsed .gv-navitem {
        justify-content: center;
        padding: 10px 0;
    }
    .gv-rail.is-collapsed .gv-navitem-lead {
        justify-content: center;
        gap: 0;
    }
    .gv-rail.is-collapsed .gv-rail-user {
        justify-content: center;
        padding: 10px 0;
    }
    .gv-rail.is-collapsed #railClose { display: none !important; }
}

.gv-collapse-btn { display: none; }
@media (min-width: 1001px) {
    .gv-collapse-btn { display: grid; }
}

.gv-avatar {
    flex: none;
    display: grid; place-items: center;
    width: 28px; height: 28px; border-radius: 99px;
    background: linear-gradient(150deg, var(--logo-2), var(--logo-1));
    color: var(--accent-ink);
    font-size: 11.5px; font-weight: 600;
}
.gv-avatar--lg { width: 34px; height: 34px; font-size: 13px; }
.gv-account-head .gv-avatar--lg { width: 44px; height: 44px; font-size: 15px; border-radius: 99px; }

/* ── Header controls ────────────────────────────────────────────── */
.gv-scope {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
    max-width: 620px;
}
.gv-scope > .gv-pop {
    flex: 1;
    min-width: 0;
    max-width: 300px;
}
.gv-picker {
    display: flex; align-items: center; gap: 9px;
    width: 100%; padding: 7px 11px;
    border-radius: 10px; background: var(--surface); border: 1px solid var(--line-soft);
    color: var(--text); text-align: left; cursor: pointer;
    transition: border-color 0.15s ease;
}
.gv-picker:hover, .gv-picker[aria-expanded="true"] { border-color: var(--accent); }
.gv-picker-label { font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.16em; color: var(--faint); line-height: 1.4; }
.gv-picker-value { font-size: 13px; font-weight: 600; line-height: 1.35; }
.gv-picker[aria-expanded="true"] .gv-caret { transform: rotate(180deg); }
.gv-caret { transition: transform 0.18s ease; }

.gv-icon-btn {
    position: relative;
    display: grid; place-items: center;
    width: 34px; height: 34px; flex: none;
    border-radius: 10px; background: var(--surface); border: 1px solid var(--line-soft);
    color: var(--muted); cursor: pointer;
    transition: color 0.15s ease, border-color 0.15s ease;
}
.gv-icon-btn:hover { color: var(--text); border-color: var(--accent); }
.gv-icon-btn .gv-badge-dot {
    position: absolute; top: 6px; right: 7px;
    width: 6px; height: 6px; border-radius: 99px;
    background: var(--warn); box-shadow: 0 0 0 2px var(--surface);
}

.gv-userbtn {
    display: flex; align-items: center; gap: 9px;
    padding: 4px 10px 4px 4px;
    border: 1px solid var(--line-soft); border-radius: 99px;
    background: var(--surface); color: var(--text);
    font-size: 13px; font-weight: 600; cursor: pointer;
    transition: border-color 0.15s ease;
}
.gv-userbtn:hover, .gv-userbtn[aria-expanded="true"] { border-color: var(--accent); }
.gv-userbtn-name { font-size: 12.5px; font-weight: 600; line-height: 1.25; }
.gv-userbtn-role { font-size: 10px; font-weight: 400; color: var(--faint); line-height: 1.25; }

/* ── Popover menus ──────────────────────────────────────────────── */
.gv-pop { position: relative; }
.gv-menu {
    position: absolute;
    top: calc(100% + 7px);
    left: 0;
    z-index: 60;
    display: none;
    width: 290px;
    max-height: 340px;
    overflow-y: auto;
    padding: 6px;
    border-radius: 13px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--pop-shadow);
}
.gv-menu.is-open { display: block; animation: gv-pop 0.16s cubic-bezier(0.2, 0.9, 0.3, 1) both; }
.gv-menu--right { left: auto; right: 0; }
.gv-menu-label {
    display: block; padding: 7px 10px 6px;
    font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.16em; color: var(--faint);
}
.gv-menu-item {
    display: flex; align-items: center; gap: 10px;
    width: 100%; padding: 9px 10px;
    border: 0; border-radius: 9px; background: transparent;
    color: var(--text); font-size: 13px; font-weight: 500;
    text-align: left; cursor: pointer; text-decoration: none;
}
a.gv-menu-item { color: var(--text); }
.gv-menu-item:hover { background: var(--raise); color: var(--text); }
.gv-menu-item.is-selected { background: var(--accent-wash); font-weight: 600; color: var(--text); }
.gv-menu-item.is-selected svg { color: var(--accent); }
.gv-menu-item svg { flex: none; color: var(--faint); }
.gv-menu-item:hover svg { color: var(--muted); }
.gv-menu-item-dot { flex: none; width: 6px; height: 6px; border-radius: 99px; background: var(--line); }
.gv-menu-item.is-selected .gv-menu-item-dot { background: var(--accent); }
.gv-menu-item-count { flex: none; font-family: var(--mono); font-size: 10.5px; color: var(--faint); }
.gv-menu-sep { height: 1px; background: var(--line-soft); margin: 5px 4px; }

/* Account mega-menu — richer profile card opened on hover / click */
.gv-menu--account {
    width: min(320px, calc(100vw - 2rem));
    max-height: none;
    padding: 0;
    overflow: hidden;
    background: color-mix(in oklab, var(--surface) 82%, transparent);
    backdrop-filter: blur(18px) saturate(1.3);
    -webkit-backdrop-filter: blur(18px) saturate(1.3);
    box-shadow: var(--pop-shadow), 0 22px 48px -18px oklch(0 0 0 / 0.45);
}
.gv-account-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid var(--line-soft);
    background:
        radial-gradient(90% 120% at 0% 0%, var(--accent-wash) 0%, transparent 60%),
        var(--surface);
}
.gv-account-nav {
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding: 8px 6px;
}
.gv-account-nav .gv-menu-item { padding: 9px 12px; }
.gv-account-foot {
    padding: 6px;
    border-top: 1px solid var(--line-soft);
    background: var(--sunk);
}
.gv-menu-item--danger { color: var(--bad); }
.gv-menu-item--danger svg { color: var(--bad); }
.gv-menu-item--danger:hover {
    background: var(--bad-wash);
    color: var(--bad);
}
.gv-menu-item--danger:hover svg { color: var(--bad); }

.gv-avatar--grad {
    background: linear-gradient(150deg, var(--logo-2), var(--logo-1), oklch(0.80 0.145 82));
    color: var(--accent-ink);
    border: 0;
}

/* ==================================================================
   Typography
   ================================================================== */
.gv-eyebrow {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--faint);
}
.gv-h1 { font-size: clamp(24px, 2.2vw, 34px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; }
.gv-h2 { font-size: 14.5px; font-weight: 600; }
.gv-lede { font-size: 13.5px; color: var(--muted); }
.gv-note { font-size: 11.5px; color: var(--muted); }
.gv-faint { font-size: 11.5px; color: var(--faint); }
.gv-mono { font-family: var(--mono); font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }

.gv-num {
    font-family: var(--mono);
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--text);
}
.gv-num--xl { font-size: 42px; letter-spacing: -0.045em; }
.gv-num--lg { font-size: 30px; letter-spacing: -0.045em; }
.gv-num--md { font-size: 24px; }
.gv-num--sm { font-size: 17px; letter-spacing: -0.03em; }

.t-good { color: var(--good); }
.t-warn { color: var(--warn); }
.t-bad { color: var(--bad); }
.t-accent { color: var(--accent); }
.t-muted { color: var(--muted); }
.t-faint { color: var(--faint); }
.t-text { color: var(--text); }

/* ==================================================================
   Surfaces
   ================================================================== */
.gv-card {
    position: relative;
    border-radius: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.gv-card--soft { border-color: var(--line-soft); box-shadow: none; }
.gv-card--sunk { background: var(--sunk); border-color: var(--line-soft); box-shadow: none; }
.gv-card--pad { padding: 18px; }
.gv-card--pad-lg { padding: 20px 22px; }

/* Faint blueprint grid used on hero surfaces. */
.gv-gridwash::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: radial-gradient(120% 90% at 90% 0%, #000, transparent 70%);
    -webkit-mask-image: radial-gradient(120% 90% at 90% 0%, #000, transparent 70%);
    pointer-events: none;
    border-radius: inherit;
}

.gv-hero {
    position: relative;
    overflow: hidden;
    padding: 30px 32px;
    border-radius: 20px;
    background: linear-gradient(105deg, var(--accent-wash) 0%, transparent 46%),
                linear-gradient(255deg, var(--good-wash) 0%, transparent 40%),
                var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.gv-hero-title {
    font-size: clamp(21px, 2vw, 34px);
    line-height: 1.14;
    font-weight: 600;
    letter-spacing: -0.035em;
    text-wrap: balance;
}
.gv-grad-text {
    background: linear-gradient(96deg, var(--logo-2), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Stat column separated by hairlines, used in hero headers. */
.gv-statset { display: flex; flex-wrap: wrap; gap: 0; }
.gv-stat { display: flex; flex-direction: column; gap: 5px; padding: 0 22px; border-left: 1px solid var(--line-soft); }
.gv-stat:first-child { padding-left: 0; border-left: 0; }

/* ==================================================================
   Buttons
   ================================================================== */
.gv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 15px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.gv-btn:hover { color: var(--text); border-color: var(--accent); }
.gv-btn:active { transform: translateY(1px); }
.gv-btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

.gv-btn--primary {
    border-color: var(--accent);
    background: var(--accent-wash);
    color: var(--accent);
    font-weight: 600;
}
.gv-btn--primary:hover { background: transparent; color: var(--accent); }

.gv-btn--solid { border-color: var(--accent); background: var(--accent); color: var(--accent-ink); font-weight: 600; }
.gv-btn--solid:hover { filter: brightness(1.08); color: var(--accent-ink); }

.gv-btn--soft { background: var(--sunk); border-color: var(--line-soft); color: var(--muted); font-weight: 600; }
.gv-btn--soft:hover { color: var(--text); border-color: var(--accent); }

.gv-btn--danger { border-color: var(--bad); background: var(--bad-wash); color: var(--bad); font-weight: 600; }
.gv-btn--danger:hover { background: transparent; color: var(--bad); }

.gv-btn--warn { border: 0; background: var(--warn); color: var(--bg); font-weight: 600; }
.gv-btn--warn:hover { filter: brightness(1.08); color: var(--bg); }

.gv-btn--sm { padding: 6px 11px; font-size: 11.5px; border-radius: 8px; }
.gv-btn--lg { padding: 13px 16px; font-size: 13.5px; border-radius: 12px; }
.gv-btn--block { width: 100%; }

.gv-iconbtn {
    display: grid;
    place-items: center;
    width: 28px; height: 28px; flex: none;
    border-radius: 8px;
    border: 1px solid var(--line-soft);
    background: transparent;
    color: var(--faint);
    cursor: pointer;
    transition: color 0.15s ease, border-color 0.15s ease;
}
.gv-iconbtn:hover { color: var(--text); border-color: var(--accent); }
.gv-iconbtn--danger:hover { color: var(--bad); border-color: var(--bad); }
.gv-iconbtn--lg { width: 30px; height: 30px; border-radius: 9px; }

.gv-soon {
    font-family: var(--mono);
    font-size: 8.5px;
    letter-spacing: 0.1em;
    padding: 2px 5px;
    border-radius: 4px;
    background: var(--accent);
    color: var(--accent-ink);
    font-weight: 600;
}

/* ==================================================================
   Pills, chips, segmented controls
   ================================================================== */
.gv-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 9px;
    border-radius: 7px;
    background: var(--line-soft);
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}
.gv-pill i { width: 5px; height: 5px; border-radius: 99px; background: currentColor; flex: none; }
.gv-pill--good { background: var(--good-wash); color: var(--good); }
.gv-pill--warn { background: var(--warn-wash); color: var(--warn); }
.gv-pill--bad { background: var(--bad-wash); color: var(--bad); }
.gv-pill--accent { background: var(--accent-wash); color: var(--accent); }
.gv-pill--mono { font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; }
.gv-pill--lg { padding: 5px 11px; font-size: 12px; border-radius: 8px; }

.gv-live {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 5px 10px; border-radius: 99px;
    background: var(--good-wash); color: var(--good);
    font-family: var(--mono); font-size: 9.5px; font-weight: 600; letter-spacing: 0.12em;
}
.gv-live i { width: 6px; height: 6px; border-radius: 99px; background: var(--good); box-shadow: 0 0 9px var(--good); }

.gv-seg {
    display: flex;
    gap: 2px;
    padding: 3px;
    border-radius: 10px;
    background: var(--sunk);
    border: 1px solid var(--line-soft);
    flex-wrap: wrap;
}
.gv-seg-btn {
    display: flex; align-items: center; gap: 6px;
    border: 0; cursor: pointer;
    padding: 6px 12px;
    border-radius: 7px;
    background: transparent;
    color: var(--faint);
    font-size: 12.5px;
    font-weight: 600;
    transition: background 0.15s ease, color 0.15s ease;
}
.gv-seg-btn:hover { color: var(--muted); }
.gv-seg-btn.is-on { background: var(--raise); color: var(--text); }
.gv-seg-btn .gv-seg-count { font-family: var(--mono); font-size: 10px; color: var(--faint); }
.gv-seg-btn.is-on .gv-seg-count { color: var(--accent); }

/* ==================================================================
   Forms
   ================================================================== */
.gv-flabel {
    display: flex; align-items: center; gap: 5px;
    font-family: var(--mono); font-size: 9px; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--faint);
}
.gv-flabel span.req { color: var(--accent); }

.gv-field {
    width: 100%;
    padding: 10px 12px;
    border-radius: 11px;
    background: var(--sunk);
    border: 1px solid var(--line-soft);
    color: var(--text);
    font-size: 13.5px;
    line-height: 1.35;
    transition: border-color 0.15s ease, background 0.15s ease;
}
.gv-field::placeholder { color: var(--faint); }
.gv-field:hover { border-color: var(--line); }
.gv-field:focus { outline: none; border-color: var(--accent); background: var(--surface); }
.gv-field.is-invalid { border-color: var(--bad); }
textarea.gv-field { resize: vertical; min-height: 76px; }
select.gv-field {
    appearance: none;
    padding-right: 30px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'><path d='M3 4.8 6 7.8l3-3' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    cursor: pointer;
}
select.gv-field:focus { background-color: var(--surface); }

.field-error { display: block; margin-top: 5px; font-size: 11px; color: var(--bad); }

/* Input with a leading icon (search boxes, sign-in fields) */
.gv-inputgroup {
    display: flex; align-items: center; gap: 9px;
    padding: 9px 13px;
    border-radius: 11px;
    background: var(--surface);
    border: 1px solid var(--line-soft);
    transition: border-color 0.15s ease;
}
.gv-inputgroup:hover { border-color: var(--line); }
.gv-inputgroup:focus-within { border-color: var(--accent); }
.gv-inputgroup.is-invalid { border-color: var(--bad); }
.gv-inputgroup input {
    flex: 1; min-width: 0;
    border: 0; background: transparent; color: var(--text);
    font-size: 13px; outline: none;
}
.gv-inputgroup input::placeholder { color: var(--faint); }
.gv-search { flex: 1; min-width: 200px; max-width: 380px; }

.gv-check {
    display: grid; place-items: center;
    flex: none; width: 17px; height: 17px;
    border-radius: 5px; border: 1px solid var(--line); background: transparent;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.gv-check svg { opacity: 0; transition: opacity 0.15s ease; }
input:checked + .gv-check { background: var(--accent); border-color: var(--accent); }
input:checked + .gv-check svg { opacity: 1; }
input:focus-visible + .gv-check { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ==================================================================
   Tables — CSS grid rows so cells stay aligned without <table>
   ================================================================== */
.gv-table { --cols: minmax(0, 1fr); display: flex; flex-direction: column; }
.gv-thead, .gv-row {
    display: grid;
    grid-template-columns: var(--cols);
    gap: 12px;
    align-items: center;
    padding: 12px 18px;
}
.gv-thead {
    padding-top: 11px;
    padding-bottom: 11px;
    background: var(--sunk);
    border-bottom: 1px solid var(--line-soft);
}
.gv-th {
    display: flex; align-items: center; gap: 5px;
    font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--faint);
    background: none; border: 0; padding: 0; text-align: left;
}
.gv-th--right { justify-content: flex-end; }
button.gv-th { cursor: pointer; }
button.gv-th:hover { color: var(--muted); }
.gv-th .gv-sortcaret { opacity: 0; transition: opacity 0.15s ease, transform 0.15s ease; }
button.gv-th:hover .gv-sortcaret { opacity: 0.5; }
.gv-th[aria-sort="ascending"] { color: var(--accent); }
.gv-th[aria-sort="descending"] { color: var(--accent); }
.gv-th[aria-sort="ascending"] .gv-sortcaret { opacity: 1; transform: rotate(180deg); }
.gv-th[aria-sort="descending"] .gv-sortcaret { opacity: 1; }

.gv-row { border-bottom: 1px solid var(--line-soft); transition: background 0.12s ease; }
.gv-row:hover { background: var(--raise); }
.gv-row:last-of-type { border-bottom: 0; }
[data-row].is-filtered { display: none !important; }

.gv-cell-title { font-size: 13px; font-weight: 600; color: var(--text); }
.gv-cell-sub { font-family: var(--mono); font-size: 10px; color: var(--faint); }
.gv-cell-muted { font-size: 12.5px; color: var(--muted); }
.gv-truncate { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }

.gv-tile {
    flex: none;
    display: grid; place-items: center;
    width: 30px; height: 30px;
    border-radius: 9px;
    background: var(--line-soft);
}
.gv-simchip { width: 10px; height: 14px; border-radius: 2px; border: 1.5px solid currentColor; }
.gv-devchip { width: 11px; height: 11px; border-radius: 3px; border: 1.5px solid currentColor; }

.gv-tablefoot {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; flex-wrap: wrap;
    padding: 14px 18px;
}
.gv-scroll-x { overflow-x: auto; }

.gv-pages { display: flex; align-items: center; gap: 4px; }
.gv-pagebtn {
    min-width: 28px; height: 28px; padding: 0 8px;
    border-radius: 8px; border: 1px solid transparent;
    background: transparent; color: var(--muted);
    font-family: var(--mono); font-size: 11.5px; font-weight: 600;
    cursor: pointer;
}
.gv-pagebtn:hover:not(:disabled) { background: var(--raise); color: var(--text); }
.gv-pagebtn.is-current { background: var(--accent-wash); border-color: var(--accent); color: var(--accent); }
.gv-pagebtn:disabled { color: var(--line); cursor: not-allowed; }
.gv-pagedots { padding: 0 2px; color: var(--faint); font-size: 11px; }

.gv-empty {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 44px 20px;
    border-radius: 15px;
    border: 1px dashed var(--line);
    background: var(--sunk);
    text-align: center;
}

/* ==================================================================
   Meters, bars, sparkline helpers
   ================================================================== */
.gv-meter { display: block; height: 8px; border-radius: 99px; background: var(--sunk); overflow: hidden; }
.gv-meter--thin { height: 4px; }
.gv-meter-fill {
    display: block; height: 100%; border-radius: 99px;
    background: linear-gradient(90deg, var(--logo-2), var(--accent));
    transform-origin: left center;
    animation: gv-slide 0.9s cubic-bezier(0.3, 0.9, 0.3, 1) both;
}
.gv-meter-fill--good { background: var(--good); }
.gv-meter-fill--warn { background: var(--warn); }
.gv-meter-fill--bad { background: var(--bad); }
.gv-meter-fill--accent { background: var(--accent); }

.gv-stack { display: flex; height: 5px; border-radius: 99px; overflow: hidden; background: var(--line-soft); }
.gv-stack > span { display: block; height: 100%; }

.gv-sig { display: flex; align-items: flex-end; gap: 2px; height: 16px; }
.gv-sig i { width: 3px; border-radius: 1px; background: var(--line); display: block; }
.gv-sig i:nth-child(1) { height: 5px; }
.gv-sig i:nth-child(2) { height: 8px; }
.gv-sig i:nth-child(3) { height: 11px; }
.gv-sig i:nth-child(4) { height: 14px; }
.gv-sig i.on { background: var(--good); }
.gv-sig i.warn { background: var(--warn); }

/* ==================================================================
   Modals
   ================================================================== */
.gv-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.gv-modal.is-open { display: flex; }
.gv-modal-backdrop {
    position: absolute;
    inset: 0;
    background: oklch(0.1 0.01 262 / 0.72);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.2s ease;
}
:root[data-theme="light"] .gv-modal-backdrop { background: oklch(0.35 0.02 262 / 0.4); }
.gv-modal.is-shown .gv-modal-backdrop { opacity: 1; }

.gv-modal-panel {
    position: relative;
    width: 100%;
    max-width: 520px;
    max-height: calc(100vh - 32px);
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--pop-shadow);
    opacity: 0;
    transform: scale(0.97) translateY(10px);
    transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
.gv-modal.is-shown .gv-modal-panel { opacity: 1; transform: none; }
.gv-modal-panel--sm { max-width: 400px; }
.gv-modal-panel--lg { max-width: 680px; }

.gv-modal-head {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 18px 18px 14px;
    border-bottom: 1px solid var(--line-soft);
}
.gv-modal-title { font-size: 15px; font-weight: 600; color: var(--text); }
.gv-modal-sub { font-size: 11.5px; color: var(--muted); margin-top: 3px; }
/* Forms wrap head/body/foot, so they have to carry the flex column too. */
.gv-modal-panel > form { display: flex; flex-direction: column; min-height: 0; }
.gv-modal-body { padding: 18px; overflow-y: auto; min-height: 0; display: flex; flex-direction: column; gap: 14px; }
.gv-modal-foot {
    display: flex; align-items: center; justify-content: flex-end; gap: 8px;
    padding: 14px 18px;
    border-top: 1px solid var(--line-soft);
    flex-wrap: wrap;
}
.gv-modal-icon {
    flex: none; display: grid; place-items: center;
    width: 34px; height: 34px; border-radius: 11px;
    background: var(--accent-wash); color: var(--accent);
}

.gv-formgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gv-formgrid--1 { grid-template-columns: 1fr; }
.gv-formrow { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.gv-formrow--full { grid-column: 1 / -1; }
.gv-fieldset-label {
    font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--faint);
    padding-top: 4px;
}

/* ==================================================================
   Toasts
   ================================================================== */
.gv-toasts {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 95;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    pointer-events: none;
}
.gv-toast {
    pointer-events: auto;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    max-width: 360px;
    padding: 12px 14px;
    border-radius: 13px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--pop-shadow);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}
.gv-toast.show { opacity: 1; transform: none; }
.gv-toast-icon {
    flex: none; display: grid; place-items: center;
    width: 26px; height: 26px; border-radius: 8px;
}
.gv-toast-title { font-size: 12.5px; font-weight: 600; color: var(--text); }
.gv-toast-msg { font-size: 11.5px; line-height: 1.45; color: var(--muted); margin-top: 2px; }

/* ==================================================================
   Flash banners
   ================================================================== */
.gv-flash {
    display: flex; align-items: flex-start; gap: 11px;
    padding: 12px 14px;
    border-radius: 13px;
    font-size: 12.5px;
    line-height: 1.45;
    border: 1px solid transparent;
}
.gv-flash--ok { background: var(--good-wash); border-color: var(--good); color: var(--good); }
.gv-flash--bad { background: var(--bad-wash); border-color: var(--bad); color: var(--bad); }
.gv-flash--warn { background: var(--warn-wash); border-color: var(--warn); color: var(--warn); }
.gv-flash--info { background: var(--accent-wash); border-color: var(--accent); color: var(--accent); }
.gv-flash strong { font-weight: 600; }

/* ==================================================================
   Layout helpers used across the pages
   ================================================================== */
.gv-stack-col { display: flex; flex-direction: column; }
.gv-row-between { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.gv-pagehead { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.gv-toolbar { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.gv-cards { display: grid; gap: 13px; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.gv-cards--wide { grid-template-columns: repeat(auto-fill, minmax(268px, 1fr)); }
.gv-split { display: grid; grid-template-columns: minmax(0, 1fr) 306px; gap: 16px; }
.gv-split--hero { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); }

/* ==================================================================
   Sign-in screens — brand rail on the left, form on the right
   ================================================================== */
.gv-auth {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    min-height: 100vh;
    background: var(--bg);
}

.gv-auth-brand {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 34px;
    padding: 44px;
    background: radial-gradient(90% 70% at 18% 8%, var(--accent-wash) 0%, transparent 58%),
                radial-gradient(70% 60% at 96% 100%, var(--accent-wash) 0%, transparent 55%),
                var(--sunk);
}
.gv-auth-brand::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(110% 90% at 20% 0%, #000, transparent 72%);
    -webkit-mask-image: radial-gradient(110% 90% at 20% 0%, #000, transparent 72%);
    pointer-events: none;
}
.gv-auth-radar {
    position: absolute;
    left: 50%;
    top: 44%;
    width: min(78%, 560px);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0.5;
}
.gv-auth-sweep { transform-origin: 200px 200px; animation: gv-sweep 9s linear infinite; }

.gv-auth-copy { position: relative; margin-top: auto; display: flex; flex-direction: column; gap: 16px; }
.gv-auth-title {
    max-width: 15ch;
    font-size: clamp(30px, 3.6vw, 50px);
    line-height: 1.02;
    font-weight: 600;
    letter-spacing: -0.04em;
}
.gv-auth-body { max-width: 44ch; font-size: 14px; line-height: 1.6; color: var(--muted); text-wrap: pretty; }

.gv-auth-props { display: flex; flex-direction: column; gap: 1px; margin-top: 8px; max-width: 430px; }
.gv-auth-prop {
    display: flex; align-items: center; gap: 13px;
    padding: 14px 2px;
    border-top: 1px solid var(--line-soft);
    opacity: 0;
    animation: gv-fade 0.5s ease-out both;
}
.gv-auth-prop-n { flex: none; width: 22px; font-family: var(--mono); font-size: 9.5px; color: var(--accent); }

.gv-auth-meta {
    position: relative;
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
    font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.1em; color: var(--faint);
}
.gv-auth-meta i { width: 3px; height: 3px; border-radius: 99px; background: var(--line); }

.gv-auth-form {
    display: flex;
    flex-direction: column;
    padding: 44px 52px;
    background: var(--bg);
}
.gv-auth-card {
    margin: auto 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
    max-width: 400px;
    padding: 34px 0;
}
.gv-auth-h2 { font-size: 26px; font-weight: 600; letter-spacing: -0.03em; }

.gv-auth-or {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em; color: var(--faint);
}
.gv-auth-or span { flex: 1; height: 1px; background: var(--line-soft); }

.gv-store {
    display: flex; align-items: center; gap: 9px;
    padding: 9px 14px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--line-soft);
    color: var(--text);
}
.gv-store:hover { border-color: var(--accent); color: var(--text); }
.gv-store-sub { font-family: var(--mono); font-size: 8px; letter-spacing: 0.12em; color: var(--faint); }
.gv-store-name { font-size: 12px; font-weight: 600; }

.gv-dot-live { width: 6px; height: 6px; border-radius: 99px; background: var(--good); animation: gv-breathe 2.4s ease-in-out infinite; }

@media (max-width: 900px) {
    .gv-auth { grid-template-columns: 1fr; }
    .gv-auth-brand { min-height: auto; padding: 34px 28px; }
    .gv-auth-props { display: none; }
    .gv-auth-radar { display: none; }
    .gv-auth-form { padding: 28px 24px 48px; }
    .gv-auth-card { margin: 0 auto; padding: 24px 0; }
}

/* ==================================================================
   Responsive
   ================================================================== */
@media (max-width: 1000px) {
    .gv-shell { grid-template-columns: 1fr; }
    .gv-rail {
        position: fixed;
        top: 0; left: 0; bottom: 0;
        width: 268px;
        transform: translateX(-100%);
        transition: transform 0.22s cubic-bezier(0.2, 0.9, 0.3, 1);
    }
    .gv-rail.is-open { transform: none; }
    .gv-menu-btn { display: grid !important; }
    .gv-split, .gv-split--hero { grid-template-columns: 1fr; }
}
@media (min-width: 1001px) {
    .gv-overlay { display: none !important; }
}
@media (max-width: 900px) {
    .gv-hide-md { display: none !important; }
}
@media (max-width: 640px) {
    .gv-header { padding: 10px 16px; }
    .gv-page { padding: 20px 16px 48px; }
    .gv-hide-sm { display: none !important; }
    .gv-hero { padding: 22px 18px; }
    .gv-card--pad-lg { padding: 16px; }
    .gv-formgrid { grid-template-columns: 1fr; }
    .gv-stat { padding: 0 14px; }
    .gv-toasts { left: 12px; right: 12px; align-items: stretch; }
    .gv-toast { max-width: none; }
}
