/* ==========================================================================
   InfraCue Landing V5 — "Infrastructure Command Center"
   Test variant served at /test-page-v5. Self-contained: does not depend on
   landing-v3.css. Dark navy command-center world + white operational
   sections, cyan/electric-blue accents, restrained glassmorphism.
   ========================================================================== */

:root {
    --v5-navy-950: #030b14;
    --v5-navy-900: #040d18;
    --v5-navy-850: #071726;
    --v5-navy-800: #0a2035;
    --v5-navy-700: #0d2b45;
    --v5-cyan: #22d3ee;
    --v5-teal: #0ba5b5;
    --v5-blue: #3b82f6;
    --v5-blue-deep: #1d4ed8;
    --v5-green: #34d399;
    --v5-amber: #fbbf24;
    --v5-red: #f87171;
    --v5-ink: #0f172a;
    --v5-slate: #475569;
    --v5-slate-light: #94a3b8;
    --v5-line: #e2e8f0;
    --v5-bg: #f8fafc;
    --v5-bg-soft: #eef2f7;
    --v5-white: #ffffff;
    --v5-glass-bg: rgba(9, 27, 45, 0.62);
    --v5-glass-border: rgba(148, 197, 233, 0.18);
    --v5-glass-highlight: rgba(255, 255, 255, 0.06);
    --v5-font-display: 'Space Grotesk', 'Inter', sans-serif;
    --v5-font-body: 'Inter', -apple-system, sans-serif;
    --v5-font-mono: 'JetBrains Mono', ui-monospace, monospace;
    --v5-radius: 16px;
    --v5-radius-lg: 22px;
    --v5-shadow-card: 0 10px 30px -12px rgba(2, 12, 27, 0.25);
    --v5-shadow-deep: 0 30px 70px -30px rgba(2, 12, 27, 0.65);
    --v5-container: 1180px;
    --v5-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body.v5-page {
    margin: 0;
    font-family: var(--v5-font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--v5-ink);
    background: var(--v5-navy-900);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.v5-page img { max-width: 100%; height: auto; display: block; }

/* The hidden attribute must always win over component display rules. */
.v5-page [hidden] { display: none !important; }

.v5-page h1, .v5-page h2, .v5-page h3, .v5-page h4 {
    font-family: var(--v5-font-display);
    line-height: 1.15;
    margin: 0 0 0.5em;
    letter-spacing: -0.015em;
}

.v5-page :where(p) { margin: 0 0 1em; }

.v5-container {
    width: min(var(--v5-container), calc(100% - 48px));
    margin-inline: auto;
}

.v5-svg-sprite,
.v5-public-nav-sprite { position: absolute; width: 0; height: 0; overflow: hidden; pointer-events: none; }

.v5-page svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* Skip link */
.v5-skip {
    position: absolute; left: 16px; top: -60px; z-index: 300;
    background: var(--v5-cyan); color: var(--v5-navy-900);
    padding: 10px 18px; border-radius: 10px; font-weight: 600; text-decoration: none;
    transition: top 0.2s var(--v5-ease);
}
.v5-skip:focus-visible { top: 12px; }

/* Focus visibility everywhere */
.v5-page a:focus-visible,
.v5-page button:focus-visible,
.v5-page [tabindex]:focus-visible,
.v5-page summary:focus-visible,
.v5-page input:focus-visible,
.v5-page select:focus-visible,
.v5-page textarea:focus-visible {
    outline: 2px solid var(--v5-cyan);
    outline-offset: 2px;
    border-radius: 6px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.v5-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: var(--v5-font-body); font-size: 15.5px; font-weight: 600;
    padding: 13px 24px; min-height: 48px; border-radius: 12px;
    border: 1px solid transparent; cursor: pointer; text-decoration: none;
    transition: transform 0.2s var(--v5-ease), box-shadow 0.2s var(--v5-ease),
        background 0.2s var(--v5-ease), border-color 0.2s var(--v5-ease), color 0.2s var(--v5-ease);
    white-space: nowrap;
}
.v5-btn svg { width: 17px; height: 17px; flex: 0 0 auto; }
.v5-btn-primary {
    background: linear-gradient(120deg, var(--v5-teal), var(--v5-blue));
    color: #fff;
    box-shadow: 0 10px 26px -10px rgba(14, 165, 199, 0.55);
}
.v5-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(14, 165, 199, 0.7); }
.v5-btn-primary:active { transform: translateY(0); }
.v5-btn-ghost-dark {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.22);
    color: #e6f2fa;
}
.v5-btn-ghost-dark:hover { background: rgba(255, 255, 255, 0.11); border-color: rgba(255, 255, 255, 0.4); }
.v5-btn-ghost-light {
    background: #fff; border-color: var(--v5-line); color: var(--v5-ink);
}
.v5-btn-ghost-light:hover { border-color: var(--v5-slate-light); background: var(--v5-bg); }
.v5-btn-large { padding: 16px 30px; font-size: 16.5px; min-height: 54px; }
.v5-btn-plan { width: 100%; background: var(--v5-navy-800); color: #fff; }
.v5-btn-plan:hover { background: var(--v5-navy-700); transform: translateY(-1px); }

/* ==========================================================================
   Navigation
   ========================================================================== */
.v5-nav {
    position: fixed; inset-inline: 0; top: 0; z-index: 200;
    transition: background 0.3s var(--v5-ease), box-shadow 0.3s var(--v5-ease),
        backdrop-filter 0.3s var(--v5-ease);
    background: transparent;
}
.v5-nav.is-stuck {
    background: rgba(4, 13, 24, 0.82);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(148, 197, 233, 0.12), 0 12px 30px -18px rgba(2, 12, 27, 0.7);
}
.v5-nav-inner {
    display: flex; align-items: center; gap: 26px;
    min-height: 88px;
}
.v5-nav-logo { display: inline-flex; align-items: center; flex: 0 0 auto; }
.v5-nav-logo img { width: 180px; height: 46px; }
.v5-nav-menu { display: flex; align-items: center; gap: 4px; margin-inline: auto; }
.v5-nav-item { position: relative; }
.v5-nav-link,
.v5-nav-trigger {
    display: inline-flex; align-items: center; gap: 6px;
    background: none; border: 0; cursor: pointer;
    font: 500 15px/1 var(--v5-font-body); color: #cddcea;
    padding: 12px 14px; border-radius: 10px; text-decoration: none;
    transition: color 0.2s, background 0.2s;
}
.v5-nav-link:hover, .v5-nav-trigger:hover,
.v5-nav-trigger[aria-expanded="true"] { color: #fff; background: rgba(255, 255, 255, 0.07); }
.v5-nav-trigger svg { width: 13px; height: 13px; transition: transform 0.2s var(--v5-ease); }
.v5-nav-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.v5-nav-dropdown {
    position: absolute; top: calc(100% + 8px); left: 0; min-width: 250px;
    background: rgba(7, 23, 38, 0.96);
    -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
    border: 1px solid var(--v5-glass-border); border-radius: 14px;
    padding: 8px; box-shadow: var(--v5-shadow-deep);
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: opacity 0.2s var(--v5-ease), transform 0.2s var(--v5-ease), visibility 0.2s;
}
.v5-nav-item.is-open .v5-nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.v5-nav-dropdown a {
    display: block; padding: 10px 13px; border-radius: 9px;
    color: #cddcea; font-size: 14.5px; font-weight: 500; text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.v5-nav-dropdown a:hover { background: rgba(34, 211, 238, 0.1); color: #fff; }
.v5-nav-dropdown a small { display: block; color: var(--v5-slate-light); font-weight: 400; font-size: 12.5px; margin-top: 1px; }
.v5-nav-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.v5-nav-signin {
    background: none; border: 0; cursor: pointer;
    font: 500 15px/1 var(--v5-font-body); color: #cddcea;
    padding: 12px 14px; border-radius: 10px;
}
.v5-nav-signin:hover { color: #fff; }
.v5-nav-action-link { display: inline-flex; align-items: center; text-decoration: none; }
.v5-nav-cta { padding: 11px 20px; min-height: 44px; font-size: 14.5px; }
.v5-nav-demo { padding: 11px 18px; min-height: 44px; font-size: 14.5px; }
.v5-nav-burger {
    display: none; background: none; border: 0; cursor: pointer;
    width: 46px; height: 46px; border-radius: 10px; color: #e6f2fa;
    align-items: center; justify-content: center;
}
.v5-nav-burger svg { width: 24px; height: 24px; }

/* Mobile menu */
.v5-mobile-menu {
    position: fixed; inset: 0; z-index: 250; display: none;
    background: rgba(4, 13, 24, 0.97);
    -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
    overflow-y: auto; padding: 20px 24px 40px;
}
.v5-mobile-menu.is-open { display: block; }
.v5-mobile-head { display: flex; align-items: center; justify-content: space-between; min-height: 56px; }
.v5-mobile-close { background: none; border: 0; cursor: pointer; color: #e6f2fa; width: 46px; height: 46px; }
.v5-mobile-close svg { width: 24px; height: 24px; }
.v5-mobile-group { border-bottom: 1px solid rgba(148, 197, 233, 0.14); padding: 18px 0; }
.v5-mobile-group h3 {
    font: 600 12.5px/1 var(--v5-font-body); letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--v5-slate-light); margin: 0 0 12px;
}
.v5-mobile-group a {
    display: block; color: #e6f2fa; font-size: 17px; font-weight: 500;
    text-decoration: none; padding: 11px 0;
}
.v5-mobile-group a:hover { color: var(--v5-cyan); }
.v5-mobile-ctas { display: grid; gap: 12px; padding-top: 24px; }
.v5-mobile-ctas .v5-btn { width: 100%; }

/* ==========================================================================
   Hero
   ========================================================================== */
.v5-hero {
    position: relative;
    padding: 158px 0 90px;
    background:
        radial-gradient(900px 480px at 14% -6%, rgba(11, 165, 181, 0.26), transparent 62%),
        radial-gradient(700px 420px at 92% 12%, rgba(59, 130, 246, 0.16), transparent 60%),
        linear-gradient(160deg, var(--v5-navy-950) 0%, var(--v5-navy-900) 45%, var(--v5-navy-800) 100%);
    overflow: hidden;
}
.v5-hero::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(148, 197, 233, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 197, 233, 0.05) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: radial-gradient(1000px 640px at 60% 0%, #000 30%, transparent 78%);
    mask-image: radial-gradient(1000px 640px at 60% 0%, #000 30%, transparent 78%);
}
.v5-hero-net { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: 0.5; }
.v5-hero-net path { stroke: rgba(34, 211, 238, 0.12); stroke-width: 1; }
.v5-hero-net circle { fill: rgba(34, 211, 238, 0.4); stroke: none; }
.v5-hero-inner {
    position: relative; display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 56px; align-items: center;
}
.v5-eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    font: 600 12.5px/1 var(--v5-font-body); letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--v5-cyan); margin-bottom: 22px;
}
.v5-eyebrow::before {
    content: ""; width: 7px; height: 7px; border-radius: 50%;
    background: var(--v5-green); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5);
    animation: v5-pulse 2.4s infinite;
}
@keyframes v5-pulse {
    0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5); }
    70% { box-shadow: 0 0 0 9px rgba(52, 211, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}
.v5-hero h1 {
    font-size: clamp(34px, 4.6vw, 56px);
    font-weight: 700; color: #fff; margin-bottom: 20px;
    text-wrap: balance;
}
.v5-hero h1 .v5-grad {
    background: linear-gradient(100deg, var(--v5-cyan) 10%, #7dd3fc 55%, var(--v5-blue) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.v5-hero-copy { font-size: 18px; color: #b9cbdc; max-width: 54ch; margin-bottom: 30px; }
.v5-hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 18px; }
.v5-hero-micro { display: flex; flex-wrap: wrap; gap: 7px 18px; font-size: 14px; color: #8fa8bd; margin-bottom: 26px; }
.v5-hero-micro span { display: inline-flex; align-items: center; gap: 7px; }
.v5-hero-micro svg { width: 15px; height: 15px; color: var(--v5-green); }
.v5-hero-trustline { font-size: 13.5px; color: #6d87a0; border-top: 1px solid rgba(148, 197, 233, 0.14); padding-top: 18px; margin: 0; }

/* Hero visual: layered command center */
.v5-hero-visual { position: relative; }
.v5-hero-stage { position: relative; transform-style: preserve-3d; }
.v5-hero-shot {
    position: relative; border-radius: var(--v5-radius-lg); overflow: hidden;
    border: 1px solid rgba(148, 197, 233, 0.22);
    box-shadow: var(--v5-shadow-deep), 0 0 80px -30px rgba(34, 211, 238, 0.35);
    background: var(--v5-navy-850);
    transition: transform 0.35s var(--v5-ease);
}
.v5-hero-shot img { width: 100%; aspect-ratio: 1672 / 941; object-fit: cover; }
.v5-hero-shot::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(200deg, rgba(34, 211, 238, 0.08), transparent 42%);
}
.v5-float {
    position: absolute; z-index: 3;
    display: flex; align-items: center; gap: 11px;
    background: var(--v5-glass-bg);
    -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    border: 1px solid var(--v5-glass-border);
    box-shadow: inset 0 1px 0 var(--v5-glass-highlight), 0 18px 40px -18px rgba(2, 12, 27, 0.8);
    border-radius: 14px; padding: 11px 15px;
    color: #e6f2fa; font-size: 13px; line-height: 1.35;
    animation: v5-float 7s ease-in-out infinite;
}
.v5-float strong { display: block; font-size: 13.5px; font-weight: 600; }
.v5-float small { color: #9db4c8; font-size: 12px; }
.v5-float-dot { width: 9px; height: 9px; border-radius: 50%; flex: 0 0 auto; }
.v5-float-dot.is-red { background: var(--v5-red); box-shadow: 0 0 10px rgba(248, 113, 113, 0.8); animation: v5-pulse-red 1.8s infinite; }
.v5-float-dot.is-green { background: var(--v5-green); box-shadow: 0 0 10px rgba(52, 211, 153, 0.7); }
.v5-float-dot.is-amber { background: var(--v5-amber); box-shadow: 0 0 10px rgba(251, 191, 36, 0.7); }
@keyframes v5-pulse-red {
    0%, 100% { opacity: 1; } 50% { opacity: 0.45; }
}
.v5-float-1 { top: -22px; right: 8%; animation-delay: 0s; }
.v5-float-2 { top: 27%; left: -34px; animation-delay: 1.3s; }
.v5-float-3 { bottom: 26%; right: -26px; animation-delay: 2.2s; }
.v5-float-4 { bottom: -20px; left: 10%; animation-delay: 0.7s; }
@keyframes v5-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}
.v5-float-sla { min-width: 168px; }
.v5-float-sla .v5-sla-track {
    width: 100%; height: 4px; border-radius: 4px; margin-top: 6px;
    background: rgba(255, 255, 255, 0.14); overflow: hidden;
}
.v5-float-sla .v5-sla-fill {
    display: block; height: 100%; width: 62%; border-radius: 4px;
    background: linear-gradient(90deg, var(--v5-amber), var(--v5-red));
    animation: v5-sla-drain 9s linear infinite;
}
@keyframes v5-sla-drain { 0% { width: 82%; } 100% { width: 24%; } }

/* Hero capability row */
.v5-cap-row {
    list-style: none; margin: 26px 0 0; padding: 0;
    display: flex; flex-wrap: wrap; gap: 8px;
}
.v5-cap-row li {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(148, 197, 233, 0.16);
    color: #b9cbdc; font-size: 13px; font-weight: 500;
    border-radius: 999px; padding: 8px 13px;
}
.v5-cap-row li svg { width: 14px; height: 14px; color: var(--v5-slate-light); }
.v5-cap-row li.is-pulse {
    background: rgba(34, 211, 238, 0.1); border-color: rgba(34, 211, 238, 0.4); color: var(--v5-cyan);
    font-weight: 600;
}
.v5-cap-row li.is-pulse svg { color: var(--v5-cyan); }

/* Network Pulse hero glass card */
.v5-float-pulse-card {
    display: block; width: min(300px, 78vw);
    animation-duration: 8s;
}
.v5-pulse-card-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 7px; }
.v5-pulse-brand { display: inline-flex; align-items: center; gap: 7px; color: #fff; font: 600 13.5px/1 var(--v5-font-display); }
.v5-pulse-brand svg { width: 15px; height: 15px; color: var(--v5-cyan); }
.v5-pulse-badge {
    display: inline-block;
    background: rgba(251, 191, 36, 0.14); color: var(--v5-amber);
    border: 1px solid rgba(251, 191, 36, 0.35);
    font: 600 10.5px/1 var(--v5-font-body); letter-spacing: 0.07em; text-transform: uppercase;
    padding: 5px 9px; border-radius: 999px; white-space: nowrap; vertical-align: middle;
}
.v5-pulse-counts { margin: 0 0 9px; color: #9db4c8; font: 500 12px/1.4 var(--v5-font-mono); }
.v5-pulse-device {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    background: rgba(4, 13, 24, 0.5); border: 1px solid rgba(148, 197, 233, 0.14);
    border-radius: 10px; padding: 9px 11px; font-size: 12.5px; color: #fff;
}
.v5-pulse-device small { display: block; color: #8fa8bd; font-family: var(--v5-font-mono); font-size: 10.5px; }
.v5-pulse-incident {
    display: flex; align-items: center; gap: 8px; margin: 9px 0 0;
    color: var(--v5-green); font-size: 12px; font-weight: 600;
}
.v5-pulse-incident svg { width: 14px; height: 14px; flex: 0 0 auto; }
.v5-pulse-sim-btn {
    margin-top: 11px; width: 100%; cursor: pointer;
    background: rgba(34, 211, 238, 0.12); border: 1px solid rgba(34, 211, 238, 0.4);
    color: var(--v5-cyan); border-radius: 9px; padding: 10px 12px; min-height: 40px;
    font: 600 12.5px/1 var(--v5-font-body);
    transition: background 0.2s, color 0.2s;
}
.v5-pulse-sim-btn:hover { background: rgba(34, 211, 238, 0.22); }
.v5-pulse-sim-btn.is-reset { background: rgba(255, 255, 255, 0.06); border-color: rgba(148, 197, 233, 0.25); color: #b9cbdc; }

/* Network Pulse section tabs + stats */
.v5-np-switch { margin: 0 0 18px; }
.v5-np-overview {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: rgba(148, 197, 233, 0.1);
}
.v5-np-stat { background: rgba(4, 13, 24, 0.45); padding: 20px 18px; }
.v5-np-stat strong { display: block; font: 700 26px/1.1 var(--v5-font-display); color: #fff; margin-bottom: 4px; }
.v5-np-stat.is-good strong { color: var(--v5-green); }
.v5-np-stat.is-warn strong { color: var(--v5-amber); }
.v5-np-stat.is-bad strong { color: var(--v5-red); }
.v5-np-stat span { color: #8fa8bd; font-size: 12.5px; }
.v5-np-alerts { list-style: none; margin: 0; padding: 8px 0; }
.v5-np-alerts li {
    display: flex; align-items: flex-start; gap: 13px;
    padding: 13px 20px; border-bottom: 1px solid rgba(148, 197, 233, 0.08);
}
.v5-np-alerts li:last-child { border-bottom: 0; }
.v5-np-alerts .v5-chip { flex: 0 0 auto; margin-top: 2px; }
.v5-np-alerts strong { display: block; color: #fff; font-size: 13.5px; }
.v5-np-alerts small { color: #8fa8bd; font-size: 12px; }
.v5-ea-tag {
    display: inline-block; margin-left: 7px; font: 600 10px/1 var(--v5-font-body);
    letter-spacing: 0.07em; text-transform: uppercase; font-style: normal;
    background: rgba(251, 191, 36, 0.14); color: var(--v5-amber);
    border: 1px solid rgba(251, 191, 36, 0.35); padding: 4px 7px; border-radius: 999px;
    vertical-align: middle;
}
.v5-np-facts {
    margin: 24px 0; padding: 16px 18px;
    background: rgba(4, 13, 24, 0.45); border: 1px solid rgba(148, 197, 233, 0.14);
    border-radius: 13px;
}
.v5-np-facts p { margin: 0; color: #a7bccd; font-size: 13.5px; line-height: 1.6; }
.v5-np-facts strong { color: #fff; }

/* ==========================================================================
   Shared section scaffolding
   ========================================================================== */
.v5-section { padding: 92px 0; }
.v5-section-dark { background: var(--v5-navy-900); color: #dbe7f1; }
.v5-section-light { background: var(--v5-white); }
.v5-section-soft { background: var(--v5-bg); }
.v5-kicker {
    display: inline-block;
    font: 600 12.5px/1 var(--v5-font-body); letter-spacing: 0.13em; text-transform: uppercase;
    color: var(--v5-teal); margin-bottom: 14px;
}
.v5-section-dark .v5-kicker { color: var(--v5-cyan); }
.v5-h2 { font-size: clamp(27px, 3.4vw, 40px); font-weight: 700; color: var(--v5-ink); max-width: 26ch; }
.v5-section-dark .v5-h2 { color: #fff; }
.v5-lede { font-size: 17.5px; color: var(--v5-slate); max-width: 62ch; }
.v5-section-dark .v5-lede { color: #a7bccd; }
.v5-center { text-align: center; }
.v5-center .v5-h2, .v5-center .v5-lede { margin-inline: auto; }

/* Scroll reveal */
.v5-reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--v5-ease), transform 0.7s var(--v5-ease); }
.v5-reveal.is-in { opacity: 1; transform: none; }
.v5-reveal-d1 { transition-delay: 0.08s; }
.v5-reveal-d2 { transition-delay: 0.16s; }
.v5-reveal-d3 { transition-delay: 0.24s; }

/* ==========================================================================
   Interactive operations demo
   ========================================================================== */
.v5-demo { position: relative; overflow: hidden; }
.v5-demo::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(720px 400px at 85% 10%, rgba(59, 130, 246, 0.12), transparent 62%);
}
.v5-demo-head { position: relative; margin-bottom: 40px; }
.v5-demo-switch {
    position: relative;
    display: inline-flex; gap: 6px; padding: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(148, 197, 233, 0.18); border-radius: 13px;
    margin-top: 22px;
}
.v5-demo-switch button {
    border: 0; cursor: pointer; border-radius: 9px;
    background: transparent; color: #a7bccd;
    font: 600 14.5px/1 var(--v5-font-body); padding: 12px 20px; min-height: 44px;
    transition: background 0.2s, color 0.2s;
}
.v5-demo-switch button[aria-selected="true"] { background: linear-gradient(120deg, var(--v5-teal), var(--v5-blue)); color: #fff; }
.v5-demo-switch button:not([aria-selected="true"]):hover { color: #fff; }
.v5-demo-grid {
    position: relative;
    display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 34px; align-items: start;
}
.v5-demo-panel {
    background: var(--v5-glass-bg);
    -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
    border: 1px solid var(--v5-glass-border); border-radius: var(--v5-radius-lg);
    box-shadow: inset 0 1px 0 var(--v5-glass-highlight), var(--v5-shadow-deep);
    padding: 28px;
}
.v5-demo-panel h3 { color: #fff; font-size: 19px; margin-bottom: 6px; }
.v5-demo-panel > p { color: #9db4c8; font-size: 14.5px; margin-bottom: 22px; }

/* Device card (monitoring sim) */
.v5-device {
    display: flex; align-items: center; gap: 15px;
    background: rgba(4, 13, 24, 0.55); border: 1px solid rgba(148, 197, 233, 0.16);
    border-radius: 14px; padding: 17px 19px; margin-bottom: 18px;
    transition: border-color 0.4s;
}
.v5-device.is-down { border-color: rgba(248, 113, 113, 0.5); }
.v5-device-icon {
    width: 44px; height: 44px; border-radius: 11px; flex: 0 0 auto;
    display: flex; align-items: center; justify-content: center; line-height: 0;
    background: rgba(34, 211, 238, 0.1); color: var(--v5-cyan);
}
.v5-device-icon svg { width: 22px; height: 22px; }
.v5-device.is-down .v5-device-icon { background: rgba(248, 113, 113, 0.12); color: var(--v5-red); }
.v5-device-meta { flex: 1; min-width: 0; }
.v5-device-meta strong { display: block; color: #fff; font-size: 15px; }
.v5-device-meta small { color: #8fa8bd; font-size: 12.5px; font-family: var(--v5-font-mono); }
.v5-device-state {
    display: inline-flex; align-items: center; gap: 7px;
    font: 600 12.5px/1 var(--v5-font-body); letter-spacing: 0.05em;
    padding: 7px 12px; border-radius: 999px;
}
.v5-device-state.is-online { background: rgba(52, 211, 153, 0.13); color: var(--v5-green); }
.v5-device-state.is-offline { background: rgba(248, 113, 113, 0.14); color: var(--v5-red); }
.v5-device-state i {
    width: 7px; height: 7px; border-radius: 50%; background: currentColor; font-style: normal;
}
.v5-device-state.is-online i { animation: v5-pulse 2.2s infinite; }

/* Employee sim selects */
.v5-sim-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-bottom: 18px; }
.v5-sim-fields label { display: grid; gap: 6px; font: 600 12.5px/1.3 var(--v5-font-body); letter-spacing: 0.06em; text-transform: uppercase; color: #8fa8bd; }
.v5-sim-fields label:last-child { grid-column: 1 / -1; }
.v5-sim-fields select {
    appearance: none;
    background: rgba(4, 13, 24, 0.6) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 13px center / 15px no-repeat;
    border: 1px solid rgba(148, 197, 233, 0.2); border-radius: 11px;
    color: #e6f2fa; font: 500 14.5px/1.3 var(--v5-font-body);
    padding: 13px 38px 13px 14px; min-height: 48px; cursor: pointer;
}
.v5-demo-action { width: 100%; }
.v5-demo-action[disabled] { opacity: 0.55; cursor: not-allowed; transform: none; }
.v5-demo-reset {
    background: none; border: 0; cursor: pointer; color: #8fa8bd;
    font: 500 13.5px/1 var(--v5-font-body); padding: 12px; margin-top: 8px; width: 100%;
    border-radius: 9px;
}
.v5-demo-reset:hover { color: #fff; }
.v5-demo-note { display: flex; align-items: center; gap: 8px; color: #6d87a0; font-size: 12.5px; margin: 18px 0 0; }
.v5-demo-note svg { width: 14px; height: 14px; flex: 0 0 auto; }

/* Demo timeline (right side) */
.v5-demo-flow {
    background: rgba(4, 13, 24, 0.45);
    border: 1px solid rgba(148, 197, 233, 0.14); border-radius: var(--v5-radius-lg);
    padding: 26px 28px;
    min-height: 430px;
    display: flex; flex-direction: column;
}
.v5-demo-wallboard {
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    border-bottom: 1px solid rgba(148, 197, 233, 0.14);
    padding-bottom: 16px; margin-bottom: 8px;
    font-family: var(--v5-font-mono);
}
.v5-demo-wallboard span { color: #8fa8bd; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.v5-demo-wallboard strong { color: #fff; font-size: 21px; transition: color 0.3s; }
.v5-demo-wallboard strong.is-bump { color: var(--v5-amber); }
.v5-steps { list-style: none; margin: 0; padding: 0; flex: 1; }
.v5-step {
    position: relative; display: flex; gap: 15px; padding: 13px 0 13px 2px;
    opacity: 0.32; transition: opacity 0.4s var(--v5-ease);
}
.v5-step.is-active, .v5-step.is-done { opacity: 1; }
.v5-step-dot {
    position: relative; flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; line-height: 0;
    background: rgba(148, 197, 233, 0.1); color: #8fa8bd;
    border: 1px solid rgba(148, 197, 233, 0.22);
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.v5-step-dot svg { width: 14px; height: 14px; }
.v5-step:not(:last-child) .v5-step-dot::after {
    content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    width: 2px; height: 26px; background: rgba(148, 197, 233, 0.16);
}
.v5-step.is-done .v5-step-dot { background: rgba(52, 211, 153, 0.16); border-color: rgba(52, 211, 153, 0.45); color: var(--v5-green); }
.v5-step.is-active .v5-step-dot { background: rgba(34, 211, 238, 0.16); border-color: var(--v5-cyan); color: var(--v5-cyan); }
.v5-step-body { min-width: 0; }
.v5-step-body strong { display: block; color: #fff; font-size: 14.5px; }
.v5-step-body span { display: block; color: #9db4c8; font-size: 13px; }
.v5-step-tag {
    display: inline-block; margin-top: 5px;
    font: 500 12px/1 var(--v5-font-mono);
    background: rgba(34, 211, 238, 0.1); color: var(--v5-cyan);
    border: 1px solid rgba(34, 211, 238, 0.25);
    padding: 5px 9px; border-radius: 7px;
    opacity: 0; transform: translateY(4px);
    transition: opacity 0.35s var(--v5-ease), transform 0.35s var(--v5-ease);
}
.v5-step.is-done .v5-step-tag, .v5-step.is-active .v5-step-tag { opacity: 1; transform: none; }
.v5-demo-after {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
    margin-top: 34px; padding-top: 8px;
}
.v5-demo-after p { margin: 0; color: #a7bccd; font-size: 15px; }

/* ==========================================================================
   Trust / trial strip
   ========================================================================== */
.v5-trust-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
}
.v5-trust-card {
    background: #fff; border: 1px solid var(--v5-line); border-radius: var(--v5-radius);
    padding: 24px 22px; box-shadow: var(--v5-shadow-card);
}
.v5-trust-card strong {
    display: block; font-family: var(--v5-font-display);
    font-size: 27px; font-weight: 700; color: var(--v5-ink); margin-bottom: 5px;
}
.v5-trust-card strong em { font-style: normal; color: var(--v5-teal); }
.v5-trust-card span { color: var(--v5-slate); font-size: 14px; line-height: 1.45; display: block; }

/* ==========================================================================
   Problem → connected
   ========================================================================== */
.v5-problem-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch;
    margin-top: 46px;
}
.v5-chaos, .v5-order {
    border-radius: var(--v5-radius-lg); padding: 30px; position: relative; overflow: hidden;
}
.v5-chaos {
    background: var(--v5-bg); border: 1px dashed #cbd5e1;
}
.v5-chaos h3, .v5-order h3 { font-size: 18px; margin-bottom: 4px; }
.v5-chaos > p, .v5-order > p { font-size: 14.5px; color: var(--v5-slate); margin-bottom: 22px; }
.v5-chaos-cloud { position: relative; display: flex; flex-wrap: wrap; gap: 11px; }
.v5-chaos-item {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; border: 1px solid var(--v5-line); border-radius: 11px;
    padding: 11px 15px; font-size: 13.5px; font-weight: 500; color: var(--v5-slate);
    box-shadow: 0 4px 12px -6px rgba(2, 12, 27, 0.12);
}
.v5-chaos-item svg { width: 15px; height: 15px; color: #b45309; }
.v5-chaos-item:nth-child(odd) { transform: rotate(-1.2deg); }
.v5-chaos-item:nth-child(even) { transform: rotate(1.1deg); }
.v5-chaos-item:nth-child(3n) { transform: rotate(2deg) translateY(3px); }
.v5-chaos-verdict {
    margin-top: 22px; padding-top: 18px; border-top: 1px dashed #cbd5e1;
    color: #b45309; font-size: 14px; font-weight: 500;
    display: flex; gap: 9px; align-items: flex-start;
}
.v5-chaos-verdict svg { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 2px; }
.v5-order {
    background:
        radial-gradient(480px 300px at 80% -10%, rgba(34, 211, 238, 0.16), transparent 65%),
        linear-gradient(155deg, var(--v5-navy-900), var(--v5-navy-800));
    border: 1px solid rgba(148, 197, 233, 0.2);
    color: #dbe7f1;
}
.v5-order h3 { color: #fff; }
.v5-order > p { color: #a7bccd; }
/* Hub-and-spoke web: satellites around the command center, signals flow inward. */
.v5-web { position: relative; width: 100%; aspect-ratio: 600 / 440; }
.v5-web-lines { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; overflow: visible; }
.v5-web-underglow {
    stroke: rgba(34, 211, 238, 0.1); stroke-width: 5; fill: none; stroke-linecap: round;
}
.v5-web-line {
    stroke: rgba(34, 211, 238, 0.45); stroke-width: 1.4; fill: none;
    stroke-dasharray: 5 8; stroke-linecap: round;
    animation: v5-dash 16s linear infinite;
}
@keyframes v5-dash { to { stroke-dashoffset: -260; } }
.v5-web-dot {
    fill: #7ff3ff; stroke: none;
    filter: drop-shadow(0 0 4px rgba(34, 211, 238, 0.9)) drop-shadow(0 0 9px rgba(34, 211, 238, 0.5));
}
.v5-web-node, .v5-web-hub {
    position: absolute; left: var(--wx); top: var(--wy); transform: translate(-50%, -50%);
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    background: rgba(4, 13, 24, 0.72); border: 1px solid rgba(148, 197, 233, 0.2);
    border-radius: 12px; padding: 11px 15px; text-align: center;
    font-size: 12.5px; font-weight: 500; color: #cddcea; line-height: 1.3;
    white-space: nowrap;
}
.v5-web-node svg { width: 18px; height: 18px; color: var(--v5-cyan); display: block; }
.v5-web-hub {
    z-index: 2;
    background: linear-gradient(140deg, rgba(11, 165, 181, 0.32), rgba(59, 130, 246, 0.24));
    border-color: rgba(34, 211, 238, 0.55); color: #fff; font-weight: 600;
    padding: 15px 20px; border-radius: 15px;
    box-shadow: 0 0 34px -6px rgba(34, 211, 238, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.v5-web-hub svg { width: 21px; height: 21px; color: var(--v5-cyan); display: block; }
.v5-web-hub-ring {
    position: absolute; inset: -7px; border-radius: 20px; pointer-events: none;
    border: 1px solid rgba(34, 211, 238, 0.5);
    animation: v5-hub-ring 2.8s ease-out infinite;
}
@keyframes v5-hub-ring {
    0% { transform: scale(0.96); opacity: 0.9; }
    70% { transform: scale(1.12); opacity: 0; }
    100% { transform: scale(1.12); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .v5-web-dot { display: none; }
    .v5-web-hub-ring { animation: none; opacity: 0.4; }
}
.v5-noanim .v5-web-dot { display: none; }
.v5-noanim .v5-web-hub-ring { animation: none; opacity: 0.4; }
.v5-order-verdict {
    margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(148, 197, 233, 0.16);
    color: var(--v5-green); font-size: 14px; font-weight: 500;
    display: flex; gap: 9px; align-items: flex-start;
}
.v5-order-verdict svg { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 2px; }

/* ==========================================================================
   Workflow rail
   ========================================================================== */
.v5-flow-rail {
    display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px; margin-top: 52px;
    position: relative;
}
.v5-flow-rail::before {
    content: ""; position: absolute; top: 27px; left: 4%; right: 4%;
    height: 2px; background: linear-gradient(90deg, transparent, var(--v5-line) 12%, var(--v5-line) 88%, transparent);
}
.v5-flow-stage { position: relative; text-align: center; }
.v5-flow-dot {
    position: relative; z-index: 1;
    width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center; line-height: 0;
    background: #fff; border: 1px solid var(--v5-line); color: var(--v5-teal);
    box-shadow: var(--v5-shadow-card);
    transition: transform 0.3s var(--v5-ease), border-color 0.3s, color 0.3s;
}
.v5-flow-dot svg { width: 23px; height: 23px; display: block; flex: 0 0 auto; }
.v5-flow-stage:hover .v5-flow-dot,
.v5-flow-stage.is-lit .v5-flow-dot { transform: translateY(-4px); border-color: var(--v5-teal); }
.v5-flow-stage strong { display: block; font-family: var(--v5-font-display); font-size: 15.5px; color: var(--v5-ink); margin-bottom: 5px; }
.v5-flow-stage span:not(.v5-flow-dot) { display: block; font-size: 12.8px; line-height: 1.45; color: var(--v5-slate); }

/* ==========================================================================
   Module showcase (tabs)
   ========================================================================== */
.v5-tabs { margin-top: 44px; }
.v5-tablist {
    display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px;
}
.v5-tab {
    border: 1px solid var(--v5-line); background: #fff; cursor: pointer;
    border-radius: 999px; padding: 12px 19px; min-height: 46px;
    font: 600 14px/1 var(--v5-font-body); color: var(--v5-slate);
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.v5-tab:hover { border-color: var(--v5-slate-light); color: var(--v5-ink); }
.v5-tab[aria-selected="true"] {
    background: var(--v5-navy-800); border-color: var(--v5-navy-800); color: #fff;
}
.v5-tabpanel {
    display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 44px; align-items: center;
}
.v5-tabpanel[hidden] { display: none; }
.v5-tab-shot {
    border-radius: var(--v5-radius-lg); overflow: hidden;
    border: 1px solid var(--v5-line);
    box-shadow: var(--v5-shadow-deep);
    animation: v5-tab-in 0.45s var(--v5-ease);
}
.v5-tab-shot img { width: 100%; aspect-ratio: 1672 / 941; object-fit: cover; }
@keyframes v5-tab-in {
    from { opacity: 0; transform: translateY(14px) scale(0.985); }
    to { opacity: 1; transform: none; }
}
.v5-tab-copy h3 { font-size: 24px; color: var(--v5-ink); }
.v5-tab-copy > p { color: var(--v5-slate); font-size: 16px; }
.v5-tab-benefits { list-style: none; margin: 20px 0 26px; padding: 0; display: grid; gap: 11px; }
.v5-tab-benefits li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--v5-ink); }
.v5-tab-benefits svg { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 3px; color: var(--v5-teal); }

/* ==========================================================================
   Monitoring section
   ========================================================================== */
.v5-monitor { position: relative; overflow: hidden; }
.v5-monitor::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(720px 420px at 10% 100%, rgba(11, 165, 181, 0.14), transparent 60%);
}
.v5-monitor-grid {
    position: relative;
    display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 44px; align-items: start; margin-top: 50px;
}
.v5-monitor-intro { text-align: center; }
.v5-monitor-intro .v5-h2 { max-width: 32ch; margin-inline: auto; }
.v5-monitor-intro .v5-lede { max-width: 76ch; margin-inline: auto; }
.v5-monitor-board {
    background: var(--v5-glass-bg);
    -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    border: 1px solid var(--v5-glass-border); border-radius: var(--v5-radius-lg);
    box-shadow: inset 0 1px 0 var(--v5-glass-highlight), var(--v5-shadow-deep);
    overflow: hidden;
}
.v5-monitor-head {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 16px 22px; border-bottom: 1px solid rgba(148, 197, 233, 0.14);
}
.v5-monitor-head strong { color: #fff; font-size: 14.5px; font-family: var(--v5-font-display); }
.v5-monitor-head span { display: inline-flex; align-items: center; gap: 7px; color: var(--v5-green); font: 500 12px/1 var(--v5-font-mono); }
.v5-monitor-head span i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; font-style: normal; animation: v5-pulse 2.2s infinite; }
.v5-monitor-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.v5-monitor-table th {
    text-align: left; font: 600 11px/1 var(--v5-font-body); letter-spacing: 0.09em; text-transform: uppercase;
    color: #7d95ab; padding: 12px 14px; border-bottom: 1px solid rgba(148, 197, 233, 0.12);
}
.v5-monitor-table td {
    padding: 12px 14px; color: #cddcea; border-bottom: 1px solid rgba(148, 197, 233, 0.08);
    font-family: var(--v5-font-mono); font-size: 12.5px; white-space: nowrap;
}
.v5-monitor-table td:first-child { font-family: var(--v5-font-body); font-weight: 500; color: #fff; }
.v5-monitor-table td small { display: block; color: #7d95ab; font-size: 11px; font-family: var(--v5-font-body); }
.v5-chip {
    display: inline-flex; align-items: center; gap: 6px;
    font: 600 11px/1 var(--v5-font-body); letter-spacing: 0.04em;
    padding: 5px 10px; border-radius: 999px;
}
.v5-chip i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; font-style: normal; }
.v5-chip-up { background: rgba(52, 211, 153, 0.13); color: var(--v5-green); }
.v5-chip-warn { background: rgba(251, 191, 36, 0.13); color: var(--v5-amber); }
.v5-chip-down { background: rgba(248, 113, 113, 0.15); color: var(--v5-red); }
.v5-chip-down i { animation: v5-pulse-red 1.6s infinite; }
.v5-monitor-side h3 { color: #fff; font-size: 21px; }
.v5-monitor-side > p { color: #a7bccd; font-size: 15.5px; }
.v5-mini-flow { list-style: none; margin: 26px 0 0; padding: 0; }
.v5-mini-flow li {
    position: relative; display: flex; align-items: center; gap: 13px;
    padding: 10px 0; color: #cddcea; font-size: 14.5px;
}
.v5-mini-flow li::before {
    content: ""; position: absolute; left: 14px; top: 100%; width: 2px; height: 0;
    background: rgba(34, 211, 238, 0.3);
}
.v5-mini-flow li:not(:last-child)::before { height: 6px; top: calc(100% - 8px); }
.v5-mini-flow .v5-mini-dot {
    width: 30px; height: 30px; border-radius: 50%; flex: 0 0 auto;
    display: flex; align-items: center; justify-content: center; line-height: 0;
    background: rgba(34, 211, 238, 0.1); border: 1px solid rgba(34, 211, 238, 0.3); color: var(--v5-cyan);
}
.v5-mini-flow .v5-mini-dot svg { width: 14px; height: 14px; }

/* ==========================================================================
   People band
   ========================================================================== */
.v5-people-grid {
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 50px; align-items: center;
}
.v5-people-photo { position: relative; }
.v5-people-photo > img {
    border-radius: var(--v5-radius-lg);
    aspect-ratio: 4 / 3.4; object-fit: cover; width: 100%;
    box-shadow: var(--v5-shadow-deep);
}
.v5-people-card {
    position: absolute; right: -18px; bottom: 26px; width: min(300px, 82%);
    background: var(--v5-glass-bg);
    -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
    border: 1px solid var(--v5-glass-border); border-radius: 15px;
    box-shadow: inset 0 1px 0 var(--v5-glass-highlight), 0 22px 50px -20px rgba(2, 12, 27, 0.75);
    padding: 17px 18px; color: #e6f2fa;
}
.v5-people-card header { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.v5-people-card header strong { font-size: 13.5px; }
.v5-people-card header .v5-chip { flex: 0 0 auto; }
.v5-people-card dl { margin: 0; display: grid; gap: 6px; font-size: 12.5px; }
.v5-people-card dl div { display: flex; justify-content: space-between; gap: 12px; }
.v5-people-card dt { color: #9db4c8; }
.v5-people-card dd { margin: 0; color: #fff; font-family: var(--v5-font-mono); font-size: 12px; text-align: right; }
.v5-people-copy .v5-tab-benefits li { font-size: 15.5px; }

/* ==========================================================================
   Wallboard
   ========================================================================== */
.v5-wallboard { position: relative; overflow: hidden; }
.v5-wallboard::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(860px 460px at 50% 118%, rgba(11, 165, 181, 0.2), transparent 62%);
    pointer-events: none;
}
.v5-wall-frame {
    position: relative; margin: 52px auto 0; max-width: 940px;
    border-radius: 18px; padding: 14px;
    background: linear-gradient(160deg, #0e1c2c, #050f1b);
    border: 1px solid rgba(148, 197, 233, 0.22);
    box-shadow: var(--v5-shadow-deep), 0 0 90px -30px rgba(34, 211, 238, 0.4);
}
.v5-wall-frame::after {
    content: ""; position: absolute; left: 50%; top: 100%; transform: translateX(-50%);
    width: 130px; height: 34px;
    background: linear-gradient(180deg, rgba(148, 197, 233, 0.24), transparent);
    clip-path: polygon(38% 0, 62% 0, 78% 100%, 22% 100%);
}
.v5-wall-frame img { border-radius: 9px; width: 100%; aspect-ratio: 1672 / 941; object-fit: cover; }
.v5-wall-live {
    position: absolute; top: 26px; right: 30px;
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(4, 13, 24, 0.8); border: 1px solid rgba(248, 113, 113, 0.4);
    color: var(--v5-red); border-radius: 999px; padding: 7px 13px;
    font: 600 11.5px/1 var(--v5-font-mono); letter-spacing: 0.1em;
}
.v5-wall-live i { width: 8px; height: 8px; border-radius: 50%; background: currentColor; font-style: normal; animation: v5-pulse-red 1.5s infinite; }
.v5-wall-points {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 9px 10px;
    margin: 34px auto 0; max-width: 860px; padding: 0; list-style: none;
}
.v5-wall-points li {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(148, 197, 233, 0.18);
    color: #cddcea; font-size: 13.5px; border-radius: 999px; padding: 9px 15px;
}
.v5-wall-points svg { width: 14px; height: 14px; color: var(--v5-cyan); }

/* ==========================================================================
   Roles
   ========================================================================== */
.v5-roles { margin-top: 44px; display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 34px; }
.v5-role-list { display: grid; gap: 8px; align-content: start; }
.v5-role-btn {
    text-align: left; cursor: pointer;
    background: #fff; border: 1px solid var(--v5-line); border-radius: 13px;
    padding: 15px 17px; min-height: 52px;
    font: 600 15px/1.3 var(--v5-font-body); color: var(--v5-slate);
    transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}
.v5-role-btn small { display: block; font-weight: 400; font-size: 12.5px; color: var(--v5-slate-light); margin-top: 3px; }
.v5-role-btn:hover { border-color: var(--v5-slate-light); }
.v5-role-btn[aria-selected="true"] {
    border-color: var(--v5-teal); color: var(--v5-ink);
    background: linear-gradient(120deg, rgba(11, 165, 181, 0.07), rgba(59, 130, 246, 0.05));
    transform: translateX(4px);
}
.v5-role-panel {
    background: var(--v5-navy-900); border-radius: var(--v5-radius-lg);
    border: 1px solid rgba(148, 197, 233, 0.16);
    padding: 30px; color: #dbe7f1;
    animation: v5-tab-in 0.4s var(--v5-ease);
}
.v5-role-panel[hidden] { display: none; }
.v5-role-panel h3 { color: #fff; font-size: 20px; }
.v5-role-panel > p { color: #a7bccd; font-size: 15px; margin-bottom: 22px; }
.v5-role-points { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; }
.v5-role-points li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: #cddcea; }
.v5-role-points svg { width: 16px; height: 16px; flex: 0 0 auto; margin-top: 3px; color: var(--v5-cyan); }

/* ==========================================================================
   Industries
   ========================================================================== */
.v5-industry-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 46px;
}
.v5-industry-card {
    background: #fff; border: 1px solid var(--v5-line); border-radius: var(--v5-radius);
    padding: 26px 24px; box-shadow: var(--v5-shadow-card);
    transition: transform 0.25s var(--v5-ease), box-shadow 0.25s var(--v5-ease), border-color 0.25s;
}
.v5-industry-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px -18px rgba(2, 12, 27, 0.3); border-color: rgba(11, 165, 181, 0.4); }
.v5-industry-card svg { width: 26px; height: 26px; color: var(--v5-teal); margin-bottom: 15px; }
.v5-industry-card h3 { font-size: 17px; color: var(--v5-ink); margin-bottom: 7px; }
.v5-industry-card p { font-size: 14px; color: var(--v5-slate); margin: 0; line-height: 1.55; }

/* ==========================================================================
   Security
   ========================================================================== */
.v5-security-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 46px; }
.v5-security-card {
    background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(148, 197, 233, 0.16);
    border-radius: 14px; padding: 21px 19px;
    transition: border-color 0.25s, background 0.25s;
}
.v5-security-card:hover { border-color: rgba(34, 211, 238, 0.4); background: rgba(34, 211, 238, 0.05); }
.v5-security-card svg { width: 21px; height: 21px; color: var(--v5-cyan); margin-bottom: 12px; }
.v5-security-card strong { display: block; color: #fff; font-size: 14.5px; margin-bottom: 5px; font-family: var(--v5-font-display); }
.v5-security-card span { color: #9db4c8; font-size: 13px; line-height: 1.5; display: block; }

/* ==========================================================================
   Pricing
   ========================================================================== */
.v5-pricing-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; }
.v5-currency {
    display: inline-flex; gap: 5px; padding: 5px;
    background: #fff; border: 1px solid var(--v5-line); border-radius: 11px;
}
.v5-currency button {
    border: 0; cursor: pointer; background: transparent; border-radius: 8px;
    font: 600 13.5px/1 var(--v5-font-body); color: var(--v5-slate);
    padding: 10px 16px; min-height: 40px; transition: background 0.2s, color 0.2s;
}
.v5-currency button[aria-pressed="true"] { background: var(--v5-navy-800); color: #fff; }
.v5-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; align-items: stretch; }
.v5-plan {
    position: relative; display: flex; flex-direction: column;
    background: #fff; border: 1px solid var(--v5-line); border-radius: var(--v5-radius-lg);
    padding: 30px 28px; box-shadow: var(--v5-shadow-card);
}
.v5-plan-reco {
    border: 2px solid var(--v5-teal);
    box-shadow: 0 24px 54px -20px rgba(11, 165, 181, 0.4);
}
.v5-plan-flag {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(120deg, var(--v5-teal), var(--v5-blue)); color: #fff;
    font: 600 11.5px/1 var(--v5-font-body); letter-spacing: 0.09em; text-transform: uppercase;
    padding: 7px 14px; border-radius: 999px; white-space: nowrap;
}
.v5-plan h3 { font-size: 19px; color: var(--v5-ink); margin-bottom: 2px; }
.v5-plan-for { font-size: 13.5px; color: var(--v5-slate); margin-bottom: 18px; }
.v5-plan-price { font-family: var(--v5-font-display); font-size: 34px; font-weight: 700; color: var(--v5-ink); margin-bottom: 4px; }
.v5-plan-price small { font-size: 15px; font-weight: 500; color: var(--v5-slate); }
.v5-plan-trial { font-size: 12.5px; color: var(--v5-teal); font-weight: 600; margin-bottom: 20px; }
.v5-plan ul { list-style: none; margin: 0 0 26px; padding: 18px 0 0; border-top: 1px solid var(--v5-line); display: grid; gap: 10px; flex: 1; }
.v5-plan ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--v5-ink); }
.v5-plan ul svg { width: 15px; height: 15px; flex: 0 0 auto; margin-top: 3.5px; color: var(--v5-teal); }
.v5-plan-note { text-align: center; margin-top: 30px; color: var(--v5-slate); font-size: 15px; }
.v5-plan-note button {
    background: none; border: 0; cursor: pointer; padding: 4px 2px;
    color: var(--v5-teal); font: 600 15px/1.4 var(--v5-font-body);
    text-decoration: underline; text-underline-offset: 3px;
}
.v5-seat-note {
    margin: 48px 0 0; width: 100%; text-align: center;
    background: var(--v5-bg); border: 1px solid var(--v5-line); border-radius: 13px;
    padding: 15px 20px; font-size: 13.5px; color: var(--v5-slate);
}

/* ==========================================================================
   Proof checklist
   ========================================================================== */
.v5-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; }
.v5-proof-card {
    background: #fff; border: 1px solid var(--v5-line); border-radius: var(--v5-radius);
    padding: 22px; display: flex; gap: 14px; align-items: flex-start;
    box-shadow: var(--v5-shadow-card);
}
.v5-proof-num {
    flex: 0 0 auto; width: 34px; height: 34px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(11, 165, 181, 0.1); color: var(--v5-teal);
    font: 700 14px/1 var(--v5-font-display);
}
.v5-proof-card p { margin: 0; font-size: 14.5px; color: var(--v5-ink); line-height: 1.5; }
.v5-proof-foot { margin: 48px 0 0; width: 100%; text-align: center; color: var(--v5-slate); font-size: 15px; }
.v5-proof-foot em { color: var(--v5-teal); font-style: normal; font-weight: 600; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.v5-faq-list { max-width: 780px; margin: 44px auto 0; display: grid; gap: 12px; }
.v5-faq-item {
    background: #fff; border: 1px solid var(--v5-line); border-radius: 14px;
    overflow: hidden; transition: border-color 0.2s;
}
.v5-faq-item[open] { border-color: rgba(11, 165, 181, 0.45); }
.v5-faq-item summary {
    list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 19px 22px; font: 600 15.5px/1.4 var(--v5-font-body); color: var(--v5-ink);
    min-height: 52px;
}
.v5-faq-item summary::-webkit-details-marker { display: none; }
.v5-faq-item summary svg { width: 17px; height: 17px; flex: 0 0 auto; color: var(--v5-teal); transition: transform 0.25s var(--v5-ease); }
.v5-faq-item[open] summary svg { transform: rotate(45deg); }
.v5-faq-item p { margin: 0; padding: 0 22px 20px; color: var(--v5-slate); font-size: 14.5px; }

/* ==========================================================================
   Final CTA
   ========================================================================== */
.v5-final { position: relative; overflow: hidden; padding: 118px 0; }
.v5-final-media { position: absolute; inset: 0; }
.v5-final-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.v5-final-media::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(3, 11, 20, 0.94) 22%, rgba(4, 13, 24, 0.82) 52%, rgba(4, 13, 24, 0.55) 100%);
}
.v5-final-inner { position: relative; max-width: 640px; }
.v5-final-inner h2 { color: #fff; font-size: clamp(28px, 3.6vw, 42px); }
.v5-final-inner > p { color: #b9cbdc; font-size: 17.5px; }
.v5-final-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 16px; }
.v5-final-micro { color: #8fa8bd; font-size: 14px; margin: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.v5-footer { background: var(--v5-navy-950); border-top: 1px solid rgba(148, 197, 233, 0.1); padding: 60px 0 34px; color: #8fa8bd; }
.v5-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 42px; }
.v5-footer-brand img { width: 140px; height: 36px; margin-bottom: 15px; }
.v5-footer-brand p { font-size: 14px; max-width: 30ch; }
.v5-footer-brand a { color: var(--v5-cyan); text-decoration: none; font-size: 14px; }
.v5-footer-col h3 { font: 600 12.5px/1 var(--v5-font-body); letter-spacing: 0.12em; text-transform: uppercase; color: #64809a; margin: 0 0 15px; }
.v5-footer-col a, .v5-footer-col button {
    display: block; background: none; border: 0; cursor: pointer; padding: 6px 0; text-align: left;
    color: #a7bccd; font: 400 14.5px/1.5 var(--v5-font-body); text-decoration: none;
}
.v5-footer-col a:hover, .v5-footer-col button:hover { color: #fff; }
.v5-footer-base {
    border-top: 1px solid rgba(148, 197, 233, 0.1); padding-top: 22px;
    display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
    font-size: 13px; color: #64809a;
}

/* ==========================================================================
   Dialogs (trial/demo + workspace)
   ========================================================================== */
.v5-dialog {
    width: min(600px, calc(100vw - 32px));
    border: 1px solid var(--v5-line); border-radius: 20px; padding: 34px;
    box-shadow: var(--v5-shadow-deep);
}
.v5-dialog::backdrop { background: rgba(3, 11, 20, 0.7); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); }
.v5-dialog img { width: 132px; height: 34px; margin-bottom: 16px; }
.v5-dialog-kicker { font: 600 12px/1 var(--v5-font-body); letter-spacing: 0.12em; text-transform: uppercase; color: var(--v5-teal); margin: 0 0 8px; }
.v5-dialog h2 { font-size: 23px; color: var(--v5-ink); margin-bottom: 6px; }
.v5-dialog > div > p { color: var(--v5-slate); font-size: 14.5px; }
.v5-dialog-close {
    position: absolute; top: 16px; right: 16px;
    background: var(--v5-bg); border: 1px solid var(--v5-line); border-radius: 10px;
    width: 42px; height: 42px; cursor: pointer; color: var(--v5-slate);
    display: flex; align-items: center; justify-content: center; line-height: 0;
}
.v5-dialog-close svg { width: 17px; height: 17px; }
.v5-dialog-close:hover { color: var(--v5-ink); border-color: var(--v5-slate-light); }
.v5-form-switch {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 6px;
    background: var(--v5-bg); border: 1px solid var(--v5-line); border-radius: 12px;
    margin: 18px 0 22px;
}
.v5-form-switch button {
    border: 0; cursor: pointer; background: transparent; border-radius: 9px;
    font: 600 14px/1 var(--v5-font-body); color: var(--v5-slate);
    padding: 11px; min-height: 44px; transition: background 0.2s, color 0.2s;
}
.v5-form-switch button.is-active { background: var(--v5-navy-800); color: #fff; }
.v5-form { display: grid; gap: 15px; }
.v5-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.v5-form label { display: grid; gap: 6px; font: 600 13px/1.3 var(--v5-font-body); color: var(--v5-ink); }
.v5-form input, .v5-form select, .v5-form textarea {
    font: 400 15px/1.4 var(--v5-font-body); color: var(--v5-ink);
    background: #fff; border: 1px solid #cbd5e1; border-radius: 11px;
    padding: 12px 14px; min-height: 48px; width: 100%;
}
.v5-form textarea { resize: vertical; min-height: 76px; }
.v5-form input:focus, .v5-form select:focus, .v5-form textarea:focus {
    border-color: var(--v5-teal); outline: 2px solid rgba(11, 165, 181, 0.25); outline-offset: 0;
}
.v5-honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.v5-form-privacy { display: flex; align-items: center; gap: 8px; color: var(--v5-slate); font-size: 12.5px; margin: 0; }
.v5-form-privacy svg { width: 14px; height: 14px; flex: 0 0 auto; }
.v5-alert { border-radius: 12px; padding: 14px 16px; font-size: 14px; display: grid; gap: 2px; }
.v5-alert strong { font-size: 14.5px; }
.v5-alert-success { background: rgba(52, 211, 153, 0.12); color: #067647; border: 1px solid rgba(52, 211, 153, 0.4); }
.v5-alert-error { background: rgba(248, 113, 113, 0.1); color: #b42318; border: 1px solid rgba(248, 113, 113, 0.35); }
.v5-dialog-progress { text-align: center; padding: 28px 0 12px; }
.v5-progress-spinner {
    width: 46px; height: 46px; margin: 0 auto 18px; border-radius: 50%;
    border: 3px solid var(--v5-line); border-top-color: var(--v5-teal);
    animation: v5-spin 0.9s linear infinite;
}
@keyframes v5-spin { to { transform: rotate(360deg); } }
.v5-progress-track { height: 6px; border-radius: 6px; background: var(--v5-bg-soft); overflow: hidden; margin: 16px 0; }
.v5-progress-track span { display: block; height: 100%; width: 8%; border-radius: 6px; background: linear-gradient(90deg, var(--v5-teal), var(--v5-blue)); transition: width 0.5s var(--v5-ease); }
.v5-dialog-result { text-align: center; padding: 22px 0 8px; }
.v5-result-icon { width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; line-height: 0; }
.v5-result-icon svg { width: 27px; height: 27px; }
.v5-result-icon.is-success { background: rgba(52, 211, 153, 0.14); color: #067647; }
.v5-result-icon.is-error { background: rgba(248, 113, 113, 0.12); color: #b42318; }
.v5-result-icon.is-success [data-v5-result-icon-error],
.v5-result-icon.is-error [data-v5-result-icon-success] { display: none; }
.v5-slug-input { display: flex; align-items: center; gap: 2px; border: 1px solid #cbd5e1; border-radius: 11px; padding-left: 14px; background: var(--v5-bg); }
.v5-slug-input strong { font: 500 14.5px/1 var(--v5-font-mono); color: var(--v5-slate); }
.v5-slug-input input { border: 0; background: transparent; min-height: 46px; padding-left: 2px; }
.v5-slug-input input:focus { outline: none; }
.v5-slug-input:focus-within { border-color: var(--v5-teal); outline: 2px solid rgba(11, 165, 181, 0.25); }
.v5-dialog-error { color: #b42318; font-size: 13px; min-height: 18px; }

/* ==========================================================================
   Mobile sticky CTA
   ========================================================================== */
.v5-sticky-cta {
    position: fixed; inset-inline: 0; bottom: 0; z-index: 180;
    display: none; align-items: center; justify-content: space-between; gap: 14px;
    padding: 12px 18px calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(4, 13, 24, 0.94);
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    border-top: 1px solid rgba(148, 197, 233, 0.18);
    transform: translateY(110%);
    transition: transform 0.35s var(--v5-ease);
}
.v5-sticky-cta.is-shown { transform: translateY(0); }
/* Keep the support chat bubble clear of the sticky bar on small screens. */
@media (max-width: 900px) {
    body.v5-sticky-visible .icsw { bottom: calc(84px + env(safe-area-inset-bottom, 0px)); transition: bottom 0.3s var(--v5-ease); }
}
.v5-sticky-cta span { color: #b9cbdc; font-size: 13px; line-height: 1.35; }
.v5-sticky-cta .v5-btn { flex: 0 0 auto; padding: 12px 20px; min-height: 46px; font-size: 14.5px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1120px) {
    .v5-nav-menu { display: none; }
    .v5-nav-burger { display: inline-flex; }
    .v5-nav-demo { display: none; }
    .v5-hero-inner { grid-template-columns: 1fr; gap: 60px; }
    .v5-hero-copy { max-width: 60ch; }
    .v5-float-2 { left: -8px; }
    .v5-float-3 { right: -8px; }
    .v5-trust-grid { grid-template-columns: repeat(3, 1fr); }
    .v5-security-grid { grid-template-columns: repeat(3, 1fr); }
    .v5-flow-rail { grid-template-columns: repeat(4, 1fr); gap: 26px 14px; }
    .v5-flow-rail::before { display: none; }
}

@media (max-width: 900px) {
    .v5-section { padding: 72px 0; }
    .v5-sticky-cta { display: flex; }
    .v5-hero { padding: 128px 0 66px; }
    .v5-demo-grid, .v5-tabpanel, .v5-monitor-grid, .v5-people-grid, .v5-problem-grid { grid-template-columns: 1fr; }
    .v5-tabpanel { gap: 28px; }
    .v5-roles { grid-template-columns: 1fr; }
    .v5-role-list { grid-template-columns: 1fr 1fr; gap: 8px; }
    .v5-industry-grid { grid-template-columns: 1fr 1fr; }
    .v5-plans { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
    .v5-plan-reco { order: -1; }
    .v5-proof-grid { grid-template-columns: 1fr 1fr; }
    .v5-footer-grid { grid-template-columns: 1fr 1fr; }
    .v5-people-card { right: 8px; }
    .v5-monitor-table th:nth-child(4), .v5-monitor-table td:nth-child(4) { display: none; }
}

@media (max-width: 640px) {
    .v5-container { width: calc(100% - 36px); }
    .v5-hero h1 { font-size: clamp(30px, 8.4vw, 38px); }
    .v5-hero-ctas .v5-btn, .v5-final-actions .v5-btn, .v5-demo-after .v5-btn { width: 100%; }
    .v5-trust-grid { grid-template-columns: 1fr 1fr; }
    .v5-trust-card:last-child { grid-column: 1 / -1; }
    .v5-security-grid { grid-template-columns: 1fr 1fr; }
    .v5-industry-grid, .v5-proof-grid, .v5-role-list, .v5-sim-fields, .v5-form-row { grid-template-columns: 1fr; }
    .v5-flow-rail { grid-template-columns: 1fr 1fr; }
    .v5-float { display: none; }
    .v5-float-1 { display: block; position: relative; inset: auto; margin: 18px auto 0; animation: none; width: min(320px, 100%); }
    .v5-nav-signin { display: none; }
    .v5-nav-inner { gap: 12px; min-height: 74px; }
    .v5-nav-cta { padding: 10px; font-size: 12.5px; }
    .v5-nav-logo img { width: 140px; height: 36px; }
    .v5-tablist { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .v5-tablist::-webkit-scrollbar { display: none; }
    .v5-tab { flex: 0 0 auto; }
    .v5-monitor-table th:nth-child(5), .v5-monitor-table td:nth-child(5) { display: none; }
    .v5-wall-frame { padding: 9px; }
    .v5-dialog { padding: 26px 20px; }
    .v5-demo-panel, .v5-demo-flow { padding: 20px; }
    .v5-web-node { padding: 8px 10px; font-size: 10.5px; gap: 4px; }
    .v5-web-node svg { width: 14px; height: 14px; }
    .v5-web-hub { padding: 10px 13px; font-size: 11px; border-radius: 12px; }
    .v5-web-hub svg { width: 16px; height: 16px; }
    .v5-footer-grid { grid-template-columns: 1fr; gap: 26px; }
}

@media (max-width: 480px) {
    .v5-nav-cta { display: none; }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .v5-page *, .v5-page *::before, .v5-page *::after {
        animation-duration: 0.001s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001s !important;
    }
    .v5-reveal { opacity: 1; transform: none; }
    .v5-float { animation: none; }
}
/* ?noanim=1 QA aid — same effect as prefers-reduced-motion, forced via body class. */
.v5-noanim *, .v5-noanim *::before, .v5-noanim *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
}
.v5-noanim .v5-reveal { opacity: 1; transform: none; }
.v5-noanim .v5-float { animation: none; }
