:root {
    --st-bg: #080c14;
    --st-bg-2: #0b0f17;
    --st-surface: rgba(15, 23, 42, 0.6);
    --st-line: rgba(255, 255, 255, 0.1);
    --st-line-strong: rgba(148, 163, 184, 0.28);
    --st-text: #f1f5f9;
    --st-muted: #cbd5e1;
    --st-dim: #94a3b8;
    --st-accent: #67e8f9;
    --st-indigo: #818cf8;
    --st-emerald: #34d399;
    --st-max: 1160px;
    --st-sans: ui-sans-serif, "Segoe UI", Inter, system-ui, sans-serif;
    --st-radius: 1rem;
}

* { box-sizing: border-box; }

.st-body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(720px 380px at 8% -8%, rgba(0, 242, 254, 0.1), transparent 52%),
        radial-gradient(680px 360px at 92% 6%, rgba(79, 172, 254, 0.1), transparent 50%),
        radial-gradient(560px 280px at 50% 100%, rgba(16, 185, 129, 0.08), transparent 48%),
        var(--st-bg);
    color: var(--st-text);
    font-family: var(--st-sans);
    line-height: 1.5;
    letter-spacing: -0.015em;
}

.st-header, .st-footer, .st-wrap, .st-hero, .st-section, .st-cta-band {
    width: min(var(--st-max), calc(100% - 2rem));
    margin-inline: auto;
}

.st-topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: rgba(8, 12, 20, 0.72);
    border-bottom: 1px solid var(--st-line);
}

.st-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 0.9rem 0;
}

.st-wordmark {
    font-size: 0.84rem;
    font-weight: 650;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--st-text);
}

.st-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
}

.st-nav a, .st-footer a, .st-nav-cta, .st-more {
    color: var(--st-muted);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
}

.st-nav a:hover, .st-footer a:hover, .st-nav-cta:hover {
    color: var(--st-text);
}

.st-nav-cta {
    border: 1px solid var(--st-line);
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    color: var(--st-text);
}

.st-preview-banner {
    background: #0e7490;
    color: #ecfeff;
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem;
}

.st-hero, .st-section {
    padding: 2.75rem 0 2.25rem;
}

@media (min-width: 640px) {
    .st-hero, .st-section { padding: 3.25rem 0 2.5rem; }
}

.st-hero--split {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(17rem, 0.9fr);
    gap: 2.25rem;
    align-items: center;
}

.st-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 1.1rem;
    padding: 0.35rem 0.7rem 0.35rem 0.5rem;
    border: 1px solid var(--st-line);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.55);
    color: var(--st-accent);
    font-size: 0.68rem;
    font-weight: 650;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.st-badge__dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--st-accent);
    box-shadow: 0 0 0 4px rgba(103, 232, 249, 0.16);
}

.st-hero h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.4rem, 6.4vw, 4.6rem);
    font-weight: 650;
    letter-spacing: -0.045em;
    line-height: 1.02;
    background: linear-gradient(180deg, #ffffff 10%, #c7d2fe 55%, #67e8f9 120%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.st-section h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.7rem, 3.6vw, 2.5rem);
    font-weight: 650;
    letter-spacing: -0.035em;
    line-height: 1.12;
}

.st-kicker {
    margin: 0 0 0.7rem;
    color: var(--st-accent);
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.st-lead, .st-muted, .st-fine {
    color: var(--st-muted);
    max-width: 40rem;
}

.st-lead { font-size: 1.08rem; }

.st-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.6rem; }

.st-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.78rem 1.15rem;
    border: 0;
    border-radius: 0.85rem;
    background: linear-gradient(90deg, #14b8a6, #06b6d4);
    color: #020617;
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 700;
    box-shadow: 0 0 0 1px rgba(103, 232, 249, 0.25), 0 12px 28px rgba(6, 182, 212, 0.22);
}

.st-btn:hover {
    background: linear-gradient(90deg, #2dd4bf, #22d3ee);
}

.st-btn--ghost {
    background: rgba(15, 23, 42, 0.55);
    color: var(--st-text);
    border: 1px solid var(--st-line);
    box-shadow: none;
}

.st-btn--ghost:hover { border-color: var(--st-line-strong); }

.st-glass, .st-card, .st-stack, .st-feature__card, .st-board {
    background: var(--st-surface);
    backdrop-filter: blur(14px);
    border: 1px solid var(--st-line);
    border-radius: var(--st-radius);
}

.st-card, .st-feature__card, .st-console, .st-venture {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(20px);
}

.st-card, .st-feature__card {
    padding: 1.1rem 1.1rem 1.05rem;
    transition: border-color 300ms ease, box-shadow 300ms ease, transform 300ms ease;
}

.st-card:hover, .st-feature__card:hover, .st-console:hover, .st-venture:hover {
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.15);
    transform: translateY(-2px);
}

.st-card h3, .st-feature__card h3 {
    margin: 0 0 0.45rem;
    font-size: 1.12rem;
    font-weight: 650;
}

.st-card a, .st-more {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.85rem;
    color: var(--st-accent);
    font-size: 0.84rem;
    font-weight: 600;
}

.st-card a:hover .st-arrow, .st-more:hover { transform: translateX(3px); }
.st-arrow { display: inline-block; transition: transform 160ms ease; }

.st-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.1rem;
}

.st-bento {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.st-bento > * { grid-column: span 6; }

.st-card--cyan { box-shadow: inset 0 1px 0 rgba(103, 232, 249, 0.35); }
.st-card--indigo { box-shadow: inset 0 1px 0 rgba(129, 140, 248, 0.4); }
.st-card--emerald { box-shadow: inset 0 1px 0 rgba(52, 211, 153, 0.35); }

.st-icon {
    width: 2.1rem;
    height: 2.1rem;
    margin-bottom: 0.85rem;
    color: var(--st-accent);
}

.st-icon--indigo { color: var(--st-indigo); }
.st-icon--emerald { color: var(--st-emerald); }

.st-board {
    padding: 1rem;
    box-shadow: 0 20px 60px rgba(2, 6, 23, 0.35);
}

.st-board__bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.85rem;
    color: var(--st-dim);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.st-board__live {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--st-emerald);
}

.st-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.st-metric {
    padding: 0.75rem;
    border-radius: 0.8rem;
    background: rgba(8, 12, 20, 0.55);
    border: 1px solid var(--st-line);
}

.st-metric strong {
    display: block;
    font-size: 1.05rem;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, #fff, #67e8f9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.st-metric span {
    color: var(--st-dim);
    font-size: 0.72rem;
}

.st-arch {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 1fr);
    gap: 1.5rem;
    align-items: center;
    margin-top: 1.5rem;
}

.st-principle {
    display: flex;
    gap: 0.75rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--st-line);
}

.st-principle:last-child { border-bottom: 0; }

.st-principle__dot {
    width: 0.55rem;
    height: 0.55rem;
    margin-top: 0.4rem;
    border-radius: 50%;
    background: var(--st-accent);
    flex: 0 0 auto;
}

.st-nodes {
    min-height: 16rem;
    position: relative;
    overflow: hidden;
}

.st-nodes svg { width: 100%; height: 16rem; display: block; }

.st-node {
    fill: rgba(15, 23, 42, 0.85);
    stroke: rgba(255, 255, 255, 0.16);
}

.st-cta-band {
    margin: 0.5rem auto 1.75rem;
    padding: 1.85rem 1.6rem;
    border-radius: 1.4rem;
    border: 1px solid var(--st-line);
    background:
        radial-gradient(420px 160px at 18% 0%, rgba(0, 242, 254, 0.14), transparent 62%),
        radial-gradient(380px 140px at 90% 100%, rgba(79, 172, 254, 0.1), transparent 55%),
        rgba(15, 23, 42, 0.7);
}

.st-console, .st-venture__preview {
    padding: 0.9rem;
    border: 1px solid var(--st-line);
    border-radius: var(--st-radius);
    box-shadow: 0 16px 40px rgba(2, 6, 23, 0.35);
}

.st-console__chrome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    color: var(--st-dim);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.st-console__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0.75rem 0;
}

.st-console__pills span {
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    border: 1px solid var(--st-line);
    color: var(--st-dim);
    font-size: 0.68rem;
}

.st-console__pills span.is-on {
    color: #a5f3fc;
    border-color: rgba(6, 182, 212, 0.35);
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.18);
}

.st-term {
    margin-top: 0.75rem;
    padding: 0.75rem 0.85rem;
    border-radius: 0.75rem;
    background: #05080e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-family: ui-monospace, Consolas, monospace;
    font-size: 0.7rem;
    line-height: 1.55;
    color: #94a3b8;
}

.st-term p { margin: 0; }
.st-term .ok { color: #34d399; }
.st-term b { color: #67e8f9; font-weight: 650; }

.st-venture {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 1.25rem;
    align-items: center;
    margin-top: 1.1rem;
    padding: 1rem;
    border: 1px solid var(--st-line);
    border-radius: 1.15rem;
}

.st-venture h3 {
    margin: 0 0 0.4rem;
    font-size: 1.45rem;
    letter-spacing: -0.03em;
}

.st-spec {
    margin: 0.85rem 0 0;
    padding-left: 1.05rem;
    color: var(--st-muted);
    font-size: 0.88rem;
}

.st-spec li { margin: 0.28rem 0; }

.st-dash--lg { min-height: 7.5rem; }
.st-dash--lg .st-dash__bars { height: 4.4rem; grid-template-columns: repeat(6, 1fr); }
.st-dash--lg .st-dash__bars i:nth-child(5) { height: 54%; }
.st-dash--lg .st-dash__bars i:nth-child(6) { height: 72%; }

.st-hero--glow { position: relative; }
.st-method { padding-right: 0.2rem; }
.st-edge { stroke-dasharray: 8 10; animation: st-dashmove 8s linear infinite; }

@keyframes st-dashmove {
    to { stroke-dashoffset: -72; }
}

.st-footer-shell {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #0b0f17;
}

.st-footer {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    padding: 2.6rem 0 2rem;
}

.st-footer h3 {
    margin: 0 0 1rem;
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e2e8f0;
}

.st-footer-blurb {
    max-width: 22rem;
    margin: 0.7rem 0 1rem;
    color: #94a3b8;
    font-size: 0.88rem;
}

.st-footer-links { display: grid; gap: 0.55rem; }

.st-footer-links a {
    color: #94a3b8;
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 160ms ease;
}

.st-footer-links a:hover { color: #ffffff; }

.st-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #34d399;
    font-size: 0.75rem;
    text-decoration: none;
    transition: color 160ms ease;
}

.st-status-pill:hover { color: #6ee7b7; }

.st-status-pill__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #10b981;
    animation: st-pulse 1.8s ease-in-out infinite;
}

@keyframes st-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(0.85); }
}

.st-footer-legal {
    width: min(var(--st-max), calc(100% - 2rem));
    margin: 0 auto;
    padding: 1.1rem 0 1.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.st-footer-legal p {
    margin: 0;
    color: #94a3b8;
    font-size: 0.78rem;
}

.st-status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--st-emerald);
    font-size: 0.8rem;
}

.st-status i {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--st-emerald);
    display: inline-block;
}

.st-prose { max-width: 42rem; }
.st-prose p { color: var(--st-muted); }
.st-list { padding-left: 1.1rem; color: var(--st-muted); }
.st-form { display: grid; gap: 0.85rem; max-width: 32rem; }
.st-form input, .st-form textarea, .st-form select, .st-va-calc select {
    width: 100%;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid var(--st-line);
    color: var(--st-text);
    border-radius: 0.75rem;
    padding: 0.75rem;
    font: inherit;
}
.st-form button { justify-self: start; }
.st-hp { position: absolute; left: -9999px; }
.st-fine { font-size: 0.75rem; color: var(--st-dim); }

.st-dash {
    margin: 1rem 0 0;
    padding: 0.85rem;
    border-radius: 0.85rem;
    background: rgba(8, 12, 20, 0.62);
    border: 1px solid var(--st-line);
}

.st-dash__row {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.7rem;
}

.st-dash__row span {
    height: 0.45rem;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.28);
}

.st-dash__row span:first-child { width: 42%; background: rgba(103, 232, 249, 0.35); }
.st-dash__row span:last-child { width: 18%; }

.st-dash__bars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.4rem;
    align-items: end;
    height: 3.2rem;
}

.st-dash__bars i {
    display: block;
    border-radius: 0.3rem 0.3rem 0 0;
    background: linear-gradient(180deg, rgba(103, 232, 249, 0.7), rgba(129, 140, 248, 0.25));
}

.st-dash__bars i:nth-child(1) { height: 46%; }
.st-dash__bars i:nth-child(2) { height: 78%; }
.st-dash__bars i:nth-child(3) { height: 62%; }
.st-dash__bars i:nth-child(4) { height: 90%; }

.st-skip {
    position: absolute;
    left: 0.75rem;
    top: -3rem;
    z-index: 40;
    padding: 0.5rem 0.75rem;
    border-radius: 0.6rem;
    background: #ecfeff;
    color: #082f36;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
}

.st-skip:focus { top: 0.75rem; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, label.st-tab-btn:focus-visible {
    outline: 2px solid var(--st-accent);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
}

.st-crumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem 0.55rem;
    margin: 0 0 1.1rem;
    color: var(--st-dim);
    font-size: 0.76rem;
    letter-spacing: 0.04em;
}

.st-crumb a { color: var(--st-muted); text-decoration: none; }
.st-crumb a:hover { color: var(--st-text); }
.st-crumb__live { margin-left: 0.35rem; }

.st-kpis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.st-browser {
    padding: 0.85rem;
    background: var(--st-surface);
    backdrop-filter: blur(14px);
    border: 1px solid var(--st-line);
    border-radius: 1.1rem;
    box-shadow: 0 20px 60px rgba(2, 6, 23, 0.35);
}

.st-browser__chrome {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.85rem;
    color: var(--st-dim);
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.st-browser__dots {
    width: 2.4rem;
    height: 0.55rem;
    border-radius: 999px;
    background: radial-gradient(circle at 0.28rem 50%, #f87171 0.22rem, transparent 0.24rem),
        radial-gradient(circle at 1.05rem 50%, #fbbf24 0.22rem, transparent 0.24rem),
        radial-gradient(circle at 1.82rem 50%, #34d399 0.22rem, transparent 0.24rem);
}

.st-tabs { position: relative; }
.st-tab-input { position: absolute; opacity: 0; pointer-events: none; }

.st-tab-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.85rem;
}

.st-tab-btn {
    padding: 0.4rem 0.65rem;
    border: 1px solid var(--st-line);
    border-radius: 999px;
    color: var(--st-muted);
    font-size: 0.72rem;
    cursor: pointer;
}

.st-tab-panel {
    display: none;
    padding: 0.9rem;
    border: 1px solid var(--st-line);
    border-radius: 0.85rem;
    background: rgba(8, 12, 20, 0.55);
    min-height: 8.5rem;
}

.st-tab-input:nth-of-type(1):checked ~ .st-tab-bar label:nth-of-type(1),
.st-tab-input:nth-of-type(2):checked ~ .st-tab-bar label:nth-of-type(2),
.st-tab-input:nth-of-type(3):checked ~ .st-tab-bar label:nth-of-type(3),
.st-tab-input:nth-of-type(4):checked ~ .st-tab-bar label:nth-of-type(4) {
    color: #082f36;
    background: var(--st-accent);
    border-color: transparent;
}

.st-tab-input:nth-of-type(1):checked ~ .st-tab-panels .st-tab-panel:nth-child(1),
.st-tab-input:nth-of-type(2):checked ~ .st-tab-panels .st-tab-panel:nth-child(2),
.st-tab-input:nth-of-type(3):checked ~ .st-tab-panels .st-tab-panel:nth-child(3),
.st-tab-input:nth-of-type(4):checked ~ .st-tab-panels .st-tab-panel:nth-child(4) {
    display: block;
}

.st-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.1rem;
}

.st-pills span {
    padding: 0.4rem 0.7rem;
    border: 1px solid var(--st-line);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.55);
    color: var(--st-muted);
    font-size: 0.78rem;
}

.st-mini-nodes {
    width: 100%;
    height: 5.5rem;
    margin-bottom: 0.85rem;
}

.st-feature__card:hover { border-color: rgba(103, 232, 249, 0.45); }

.st-badge__dot--emerald {
    background: var(--st-emerald);
    box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.18);
}

.st-va-title {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 650;
    letter-spacing: -0.04em;
    line-height: 1.05;
    background: linear-gradient(180deg, #ffffff 10%, #c7d2fe 55%, #67e8f9 120%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.st-va-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1.1rem;
    margin: 1.15rem 0 0;
    padding: 0;
    list-style: none;
}

.st-va-trust li {
    color: var(--st-muted);
    font-size: 0.78rem;
}

.st-va-trust li::before {
    content: "✓ ";
    color: var(--st-emerald);
    font-weight: 700;
}

.st-va-grid4, .st-va-services {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.1rem;
}

.st-va-services { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.st-va-svc { position: relative; }
.st-va-svc:hover { transform: scale(1.02); box-shadow: 0 0 36px rgba(6, 182, 212, 0.22); }
.st-va-open {
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    font: inherit;
}

.st-va-ico {
    display: block;
    width: 2.1rem;
    height: 2.1rem;
    margin-bottom: 0.75rem;
    border-radius: 0.7rem;
    background:
        radial-gradient(circle at 30% 30%, rgba(103, 232, 249, 0.55), transparent 55%),
        rgba(8, 12, 20, 0.8);
    border: 1px solid rgba(103, 232, 249, 0.28);
    box-shadow: 0 0 16px rgba(6, 182, 212, 0.18);
}

.st-va-calc {
    margin-top: 1.2rem;
    padding: 1.25rem;
    border: 1px solid var(--st-line);
    border-radius: var(--st-radius);
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(20px);
}

.st-va-calc input[type="range"] {
    width: min(100%, 28rem);
    accent-color: var(--st-accent);
    margin: 0.7rem 0 0.35rem;
}

.st-va-calc select {
    width: min(100%, 20rem);
    margin: 0.45rem 0 1rem;
}

.st-va-hours { margin: 0 0 1rem; color: var(--st-text); }
.st-va-rec { box-shadow: inset 0 1px 0 rgba(103, 232, 249, 0.45), 0 0 28px rgba(6, 182, 212, 0.12); }

.st-va-dialog {
    width: min(32rem, calc(100% - 2rem));
    padding: 1.35rem;
    border: 1px solid var(--st-line);
    border-radius: 1.1rem;
    background: rgba(8, 12, 20, 0.94);
    color: var(--st-text);
}

.st-va-dialog::backdrop { background: rgba(2, 6, 23, 0.72); }
.st-va-dialog .st-form { max-width: none; }
.st-va-dialog h3 { margin: 0 0 0.5rem; }

@media (max-width: 1100px) {
    .st-va-grid4, .st-va-services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
    .st-hero--split, .st-arch, .st-footer, .st-grid, .st-kpis, .st-venture, .st-va-hero, .st-va-grid4, .st-va-services { grid-template-columns: 1fr; }
    .st-bento > * { grid-column: span 12; }
    .st-nav-cta { display: none; }
}

@media (max-width: 720px) {
    .st-header { flex-wrap: wrap; }
    .st-metrics { grid-template-columns: 1fr; }
}
