:root {
    --vcore-motion-fast: 140ms;
    --vcore-motion-base: 240ms;
    --vcore-motion-slow: 480ms;
    --vcore-motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --vcore-motion-distance: 18px;
}

.vcore-public-shell {
    --vcore-shell-max: 82rem;
    --vcore-header-height: 72px;
    background: #ffffff;
}

.vcore-public-shell .glass-nav {
    transition: box-shadow var(--vcore-motion-base) ease,
                background-color var(--vcore-motion-base) ease,
                border-color var(--vcore-motion-base) ease;
}

.vcore-public-shell.vcore-nav-compact .glass-nav {
    background: rgba(255, 255, 255, 0.985);
    border-bottom-color: rgba(148, 163, 184, 0.34);
    box-shadow: 0 0.75rem 2rem rgba(15, 23, 42, 0.1);
}

.vcore-header__inner {
    width: min(calc(100% - 2rem), var(--vcore-shell-max));
    height: 100%;
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(13rem, 1fr) auto minmax(16rem, 1fr);
    align-items: center;
    gap: 1rem;
}

.vcore-header__brand {
    justify-self: start;
    min-width: 0;
}

.vcore-header__nav {
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.7rem, 1.15vw, 1.2rem);
    min-width: 0;
}

.vcore-header__account {
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
}

.vcore-header__menu-button {
    display: none !important;
    justify-self: end;
}

.vcore-public-shell .nav-link-custom {
    position: relative;
    white-space: nowrap;
    padding-block: 0.25rem;
}

.vcore-public-shell .nav-link-custom::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.52rem;
    height: 2px;
    border-radius: 999px;
    background: var(--vcore-brand);
    opacity: 0;
    transform: scaleX(0.42);
    transform-origin: center;
    transition: opacity var(--vcore-motion-fast) ease,
                transform var(--vcore-motion-base) var(--vcore-motion-ease);
}

.vcore-public-shell .nav-link-custom:hover,
.vcore-public-shell .nav-link-custom[aria-current="true"] {
    color: var(--vcore-brand);
}

.vcore-public-shell .nav-link-custom[aria-current="true"]::after {
    opacity: 1;
    transform: scaleX(1);
}

.vcore-page {
    background: #ffffff;
    color: #07111f;
    overflow-x: clip;
}

.vcore-shell {
    width: min(calc(100% - 2rem), var(--vcore-shell-max));
    margin-inline: auto;
}

.vcore-anchor {
    scroll-margin-top: calc(var(--vcore-header-height) + 1rem);
}

.vcore-section {
    position: relative;
    padding: clamp(3rem, 5vw, 5.4rem) 0;
}

.vcore-section--muted {
    background:
        radial-gradient(circle at 10% 5%, rgba(37, 99, 235, 0.055), transparent 28rem),
        #f6f8fb;
    border-block: 1px solid #e5ecf5;
}

.vcore-section-head {
    max-width: 52rem;
    margin-bottom: clamp(1.4rem, 2.8vw, 2.4rem);
}

.vcore-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0 0 0.75rem;
    color: var(--vcore-brand);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.vcore-eyebrow::before {
    content: "";
    width: 1.9rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: left;
}

.vcore-heading {
    max-width: 15ch;
    margin: 0;
    font-size: clamp(2.9rem, 4.8vw, 5rem);
    line-height: 0.98;
    font-weight: 950;
    letter-spacing: -0.045em;
    text-wrap: pretty;
}

.vcore-heading--section {
    max-width: 18ch;
    font-size: clamp(2rem, 3.25vw, 3.5rem);
    line-height: 1.02;
}

.vcore-lead {
    max-width: 44rem;
    margin: 1rem 0 0;
    color: #5d6d83;
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    line-height: 1.62;
}

.vcore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 2.9rem;
    padding: 0.76rem 1.15rem;
    border: 1px solid transparent;
    border-radius: 0.7rem;
    font-size: 0.88rem;
    font-weight: 900;
    text-decoration: none;
    transition: transform var(--vcore-motion-fast) var(--vcore-motion-ease),
                box-shadow var(--vcore-motion-fast) ease,
                border-color var(--vcore-motion-fast) ease,
                background-color var(--vcore-motion-fast) ease,
                color var(--vcore-motion-fast) ease;
}

.vcore-btn:hover {
    transform: translateY(-2px);
}

.vcore-btn:active {
    transform: translateY(0);
}

.vcore-btn .fa-arrow-right {
    transition: transform var(--vcore-motion-fast) var(--vcore-motion-ease);
}

.vcore-btn:hover .fa-arrow-right {
    transform: translateX(4px);
}

.vcore-btn:focus-visible,
.vcore-public-shell a:focus-visible,
.vcore-public-shell button:focus-visible,
.vcore-module summary:focus-visible,
.vcore-card:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.28);
    outline-offset: 3px;
}

.vcore-btn--primary {
    background: #07111f;
    color: #ffffff;
    box-shadow: 0 0.7rem 1.6rem rgba(7, 17, 31, 0.2);
}

.vcore-btn--primary:hover {
    background: var(--vcore-brand);
    color: #ffffff;
}

.vcore-btn--secondary {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.vcore-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.14);
}

.vcore-btn--light {
    border-color: #d8e2ee;
    background: #ffffff;
    color: #07111f;
}

.vcore-hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(560px, 72vh, 760px);
    display: flex;
    align-items: center;
    padding: clamp(3.4rem, 6vw, 6.4rem) 0;
    color: #ffffff;
    background: linear-gradient(128deg, #020711 0%, #07162a 56%, #0b2f5e 100%);
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
    overflow: hidden;
}

.vcore-hero::before {
    content: "";
    position: absolute;
    z-index: -2;
    width: 44rem;
    height: 44rem;
    right: -10rem;
    top: -18rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.35), rgba(14, 165, 233, 0.08) 46%, transparent 72%);
    filter: blur(4px);
    animation: vcore-hero-glow 12s var(--vcore-motion-ease) infinite alternate;
}

.vcore-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to right, transparent 0%, #000 45%, #000 100%);
    animation: vcore-grid-drift 18s linear infinite;
}

.vcore-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(32rem, 0.95fr);
    align-items: center;
    gap: clamp(2.2rem, 5vw, 5.6rem);
}

.vcore-hero__content {
    position: relative;
    z-index: 2;
}

.vcore-hero .vcore-eyebrow {
    color: #b7dcff;
}

.vcore-hero .vcore-lead {
    max-width: 38rem;
    color: #d2ddeb;
}

.vcore-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.45rem;
}

.vcore-hero__signals {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 1rem 0 0;
    padding: 0;
}

.vcore-hero__signals li {
    display: inline-flex;
    align-items: center;
    min-height: 1.85rem;
    padding: 0.38rem 0.58rem;
    border: 1px solid rgba(191, 219, 254, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: #dbeafe;
    font-size: 0.74rem;
    font-weight: 900;
}

html.vcore-motion-ready .vcore-hero__content > * {
    opacity: 0;
    transform: translateY(var(--vcore-motion-distance));
    animation: vcore-enter 620ms var(--vcore-motion-ease) forwards;
}

html.vcore-motion-ready .vcore-hero__content > *:nth-child(2) { animation-delay: 80ms; }
html.vcore-motion-ready .vcore-hero__content > *:nth-child(3) { animation-delay: 150ms; }
html.vcore-motion-ready .vcore-hero__content > *:nth-child(4) { animation-delay: 220ms; }
html.vcore-motion-ready .vcore-hero__content > *:nth-child(5) { animation-delay: 290ms; }

.vcore-lifecycle {
    --vcore-hero-progress: 0%;
    position: relative;
    border: 1px solid rgba(191, 219, 254, 0.25);
    border-radius: 1.15rem;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.93), rgba(4, 12, 28, 0.9));
    box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transform: perspective(1100px) rotateY(-2deg) rotateX(1deg);
}

.vcore-lifecycle::before {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 4.15rem;
    height: 2px;
    background: linear-gradient(90deg,
        #38bdf8 0%,
        #38bdf8 var(--vcore-hero-progress),
        rgba(148, 163, 184, 0.18) var(--vcore-hero-progress),
        rgba(148, 163, 184, 0.18) 100%);
    border-radius: 999px;
    transition: background 480ms var(--vcore-motion-ease);
    pointer-events: none;
}

.vcore-lifecycle::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 34%;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.08), transparent);
    transform: translateX(-160%);
    animation: vcore-scan 5.5s ease-in-out infinite;
    pointer-events: none;
}

html.vcore-motion-ready .vcore-lifecycle {
    opacity: 0;
    transform: perspective(1100px) rotateY(-4deg) rotateX(2deg) translateY(22px) scale(0.985);
    animation: vcore-console-enter 760ms 180ms var(--vcore-motion-ease) forwards;
}

.vcore-lifecycle__steps {
    counter-reset: vcore-stage;
    list-style: none;
    margin: 0;
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.vcore-lifecycle__stage {
    counter-increment: vcore-stage;
    position: relative;
    display: grid;
    grid-template-columns: 2.35rem minmax(0, 1fr);
    align-items: center;
    gap: 0.65rem;
    min-height: 4.6rem;
    padding: 0.78rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.035);
    transition: border-color var(--vcore-motion-base) ease,
                background-color var(--vcore-motion-base) ease,
                transform var(--vcore-motion-base) var(--vcore-motion-ease),
                box-shadow var(--vcore-motion-base) ease,
                opacity var(--vcore-motion-base) ease;
}

.vcore-lifecycle__stage::after {
    content: counter(vcore-stage, decimal-leading-zero);
    position: absolute;
    top: 0.5rem;
    right: 0.55rem;
    color: rgba(148, 163, 184, 0.42);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.vcore-lifecycle__stage.is-complete {
    border-color: rgba(34, 197, 94, 0.26);
    background: rgba(34, 197, 94, 0.055);
}

.vcore-lifecycle__stage.is-active {
    z-index: 2;
    border-color: rgba(125, 211, 252, 0.68);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.25), rgba(37, 99, 235, 0.12));
    box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.1), 0 0.8rem 1.8rem rgba(2, 132, 199, 0.18);
    transform: translateY(-3px) scale(1.015);
}

.vcore-lifecycle__icon,
.vcore-workflow__icon,
.vcore-card__icon {
    display: grid;
    place-items: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.62rem;
    background: #eaf3ff;
    color: var(--vcore-brand);
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.vcore-lifecycle__stage .vcore-lifecycle__icon {
    background: rgba(191, 219, 254, 0.12);
    color: #7dd3fc;
}

.vcore-lifecycle__stage.is-active .vcore-lifecycle__icon {
    background: rgba(56, 189, 248, 0.2);
    color: #bae6fd;
    animation: vcore-status-pulse 1.7s ease-in-out infinite;
}

.vcore-lifecycle__body strong,
.vcore-lifecycle__body small {
    display: block;
}

.vcore-lifecycle__body strong {
    color: #f8fafc;
    line-height: 1.2;
    font-size: 0.9rem;
}

.vcore-lifecycle__body small {
    margin-top: 0.18rem;
    color: #aebed2;
    font-size: 0.75rem;
    line-height: 1.3;
}

.vcore-lifecycle__result {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(2, 6, 23, 0.55);
}

.vcore-lifecycle__result span,
.vcore-lifecycle__result small {
    color: #b7c7dc;
    font-size: 0.74rem;
    font-weight: 800;
}

.vcore-lifecycle__result strong {
    color: #bbf7d0;
    min-width: 0;
}

.vcore-lifecycle__meta {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.38rem;
    align-items: center;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.vcore-lifecycle__meta span,
.vcore-lifecycle__meta em {
    display: inline-flex;
    align-items: center;
    min-height: 1.5rem;
    padding: 0.24rem 0.44rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-style: normal;
    font-weight: 900;
}

.vcore-lifecycle__meta span {
    background: rgba(125, 211, 252, 0.14);
    color: #bae6fd;
}

.vcore-lifecycle__meta em {
    background: rgba(148, 163, 184, 0.12);
    color: #cbd5e1;
}

.vcore-workflow-shell {
    --vcore-workflow-progress: 0%;
    position: relative;
    padding: clamp(1rem, 2vw, 1.5rem);
    border: 1px solid #d8e3ef;
    border-radius: 1rem;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    box-shadow: 0 1rem 2.5rem rgba(15, 23, 42, 0.07);
    overflow: hidden;
}

.vcore-workflow-shell::before {
    content: "";
    position: absolute;
    width: 18rem;
    height: 18rem;
    right: -8rem;
    top: -9rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12), transparent 68%);
    pointer-events: none;
}

.vcore-workflow__progress {
    position: absolute;
    left: 2rem;
    right: 2rem;
    top: 3.08rem;
    height: 3px;
    background: #dce6f2;
    border-radius: 999px;
    pointer-events: none;
}

.vcore-workflow__progress span {
    display: block;
    width: var(--vcore-workflow-progress, 0%);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--vcore-brand), #38bdf8);
    box-shadow: 0 0 0.7rem rgba(56, 189, 248, 0.45);
    transition: width 520ms var(--vcore-motion-ease);
}

.vcore-workflow {
    position: relative;
    z-index: 1;
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.72rem;
}

.vcore-workflow__stage {
    width: 100%;
    min-width: 0;
    min-height: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
        "number icon"
        "title title"
        "description description"
        "result result";
    align-items: start;
    gap: 0.45rem 0.55rem;
    text-align: left;
    padding: 0.9rem;
    border: 1px solid #dce6f2;
    border-radius: 0.78rem;
    background: rgba(255, 255, 255, 0.92);
    color: inherit;
    cursor: pointer;
    transition: border-color var(--vcore-motion-base) ease,
                background-color var(--vcore-motion-base) ease,
                transform var(--vcore-motion-fast) var(--vcore-motion-ease),
                box-shadow var(--vcore-motion-base) ease;
}

.vcore-workflow__stage:hover {
    transform: translateY(-3px);
}

.vcore-workflow__stage.is-active,
.vcore-workflow__stage[aria-selected="true"] {
    border-color: rgba(37, 99, 235, 0.5);
    background: linear-gradient(145deg, #ffffff, #eef6ff);
    box-shadow: 0 0.85rem 1.7rem rgba(37, 99, 235, 0.12);
    transform: translateY(-3px);
}

.vcore-workflow__number {
    grid-area: number;
    align-self: center;
    color: #708196;
    font-size: 0.72rem;
    font-weight: 950;
}

.vcore-workflow__icon {
    grid-area: icon;
    justify-self: end;
}

.vcore-workflow__stage strong {
    grid-area: title;
    font-size: 0.98rem;
    line-height: 1.2;
}

.vcore-workflow__stage span:not(.vcore-workflow__number):not(.vcore-workflow__icon) {
    grid-area: description;
    color: #5d6d83;
    font-size: 0.84rem;
    line-height: 1.4;
}

.vcore-workflow__stage small {
    grid-area: result;
    color: var(--vcore-brand);
    font-size: 0.75rem;
    font-weight: 900;
}

.vcore-workflow__details {
    position: relative;
    z-index: 1;
    margin-top: 0.95rem;
}

.vcore-workflow__detail {
    padding: 1.1rem;
    border: 1px solid #dce6f2;
    border-radius: 0.8rem;
    background: #ffffff;
    transition: opacity var(--vcore-motion-base) ease,
                transform var(--vcore-motion-base) var(--vcore-motion-ease);
}

html.vcore-motion-ready .vcore-workflow__detail:not(.is-active) {
    display: none;
}

html.vcore-motion-ready .vcore-workflow__detail.is-active {
    animation: vcore-detail-in 300ms var(--vcore-motion-ease);
}

.vcore-workflow__detail p {
    margin: 0 0 0.25rem;
    color: var(--vcore-brand);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.vcore-workflow__detail h3 {
    margin: 0 0 0.7rem;
    font-size: 1.15rem;
    font-weight: 950;
}

.vcore-workflow__detail dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin: 0;
}

.vcore-workflow__detail dt {
    color: #07111f;
    font-weight: 900;
}

.vcore-workflow__detail dd {
    margin: 0.2rem 0 0;
    color: #5d6d83;
    line-height: 1.5;
}

.vcore-architecture {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.48fr);
    gap: clamp(1.2rem, 2.4vw, 2rem);
    align-items: start;
}

.vcore-control-plane {
    position: relative;
    padding: 1.1rem;
    border: 1px solid #dce6f2;
    border-left: 4px solid var(--vcore-brand);
    border-radius: 0.8rem;
    background: #ffffff;
    box-shadow: 0 0.9rem 2rem rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.vcore-control-plane::after {
    content: "";
    position: absolute;
    right: -2rem;
    bottom: -2rem;
    width: 7rem;
    height: 7rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12), transparent 70%);
}

.vcore-control-plane span {
    display: block;
    color: var(--vcore-brand);
    font-size: 0.76rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.vcore-control-plane p {
    margin: 0.5rem 0 0;
    color: #516176;
    line-height: 1.55;
}

.vcore-card-row,
.vcore-plan-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.vcore-card,
.vcore-bento-card,
.vcore-plan {
    min-width: 0;
    padding: 1.05rem;
    border: 1px solid #dce6f2;
    border-radius: 0.85rem;
    background: #ffffff;
    transition: border-color var(--vcore-motion-base) ease,
                transform var(--vcore-motion-fast) var(--vcore-motion-ease),
                box-shadow var(--vcore-motion-fast) ease,
                background-color var(--vcore-motion-base) ease;
}

.vcore-card {
    opacity: 0.72;
    transform: translateY(16px);
}

.vcore-card.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.vcore-card:hover,
.vcore-card:focus-visible,
.vcore-card.is-highlighted,
.vcore-plan:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 1rem 2.2rem rgba(15, 23, 42, 0.08);
}

.vcore-card.is-highlighted {
    background: #f8fbff;
}

.vcore-card h3,
.vcore-bento-card h3,
.vcore-plan h3 {
    margin: 0.9rem 0 0.45rem;
    font-size: 1.05rem;
    font-weight: 950;
}

.vcore-card p,
.vcore-bento-card p {
    margin: 0;
    color: #5d6d83;
    line-height: 1.5;
}

.vcore-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 0.85rem;
}

.vcore-bento-card {
    position: relative;
    min-height: 13rem;
    overflow: hidden;
}

.vcore-bento-card::after {
    content: "";
    position: absolute;
    width: 9rem;
    height: 9rem;
    right: -4rem;
    bottom: -4rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.13), transparent 68%);
    transition: transform var(--vcore-motion-slow) var(--vcore-motion-ease);
}

.vcore-bento-card:hover::after {
    transform: scale(1.2) translate(-0.5rem, -0.5rem);
}

.vcore-bento-card:nth-child(1),
.vcore-bento-card:nth-child(5n + 1) {
    color: #ffffff;
    border-color: rgba(191, 219, 254, 0.18);
    background: linear-gradient(145deg, #061225, #0c2d55);
}

.vcore-bento-card:nth-child(1) p,
.vcore-bento-card:nth-child(5n + 1) p {
    color: #c9d6e6;
}

.vcore-bento-card:nth-child(1) .vcore-card__icon,
.vcore-bento-card:nth-child(5n + 1) .vcore-card__icon {
    background: rgba(255, 255, 255, 0.1);
    color: #7dd3fc;
}

.vcore-span-12 { grid-column: span 12; }
.vcore-span-8 { grid-column: span 8; }
.vcore-span-6 { grid-column: span 6; }
.vcore-span-4 { grid-column: span 4; }

.vcore-tag-list {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1rem;
}

.vcore-tag-list span {
    display: inline-flex;
    align-items: center;
    min-height: 1.75rem;
    padding: 0.28rem 0.55rem;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #334155;
    font-size: 0.7rem;
    font-weight: 850;
}

.vcore-bento-card:nth-child(1) .vcore-tag-list span,
.vcore-bento-card:nth-child(5n + 1) .vcore-tag-list span {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #dbeafe;
}

.vcore-modules {
    margin-top: clamp(1.6rem, 3vw, 2.4rem);
}

.vcore-module-rail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.vcore-module {
    border: 1px solid #dce6f2;
    border-radius: 0.8rem;
    background: #ffffff;
    overflow: hidden;
    transition: border-color var(--vcore-motion-base) ease,
                box-shadow var(--vcore-motion-base) ease,
                transform var(--vcore-motion-fast) var(--vcore-motion-ease);
}

.vcore-module[open] {
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 0.85rem 1.8rem rgba(15, 23, 42, 0.07);
}

.vcore-module summary {
    list-style: none;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.7rem;
    min-height: 4.6rem;
    padding: 0.8rem;
    cursor: pointer;
}

.vcore-module summary::-webkit-details-marker {
    display: none;
}

.vcore-module summary::after {
    content: "+";
    color: var(--vcore-brand);
    font-size: 1.2rem;
    font-weight: 900;
    transition: transform var(--vcore-motion-base) var(--vcore-motion-ease);
}

.vcore-module[open] summary::after {
    transform: rotate(45deg);
}

.vcore-module summary span:nth-child(2) {
    min-width: 0;
}

.vcore-module summary strong,
.vcore-module summary small {
    display: block;
}

.vcore-module summary small {
    margin-top: 0.2rem;
    color: #6b7b8f;
}

.vcore-module > p {
    margin: 0;
    padding: 0 0.9rem 0.95rem 4.05rem;
    color: #5d6d83;
    line-height: 1.5;
    animation: vcore-detail-in var(--vcore-motion-base) var(--vcore-motion-ease);
}

.vcore-plan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vcore-plan {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.vcore-plan.is-featured {
    border-color: #07111f;
    background: linear-gradient(180deg, #f7fbff, #eef6ff);
    box-shadow: 0 1.1rem 2.6rem rgba(15, 23, 42, 0.12);
    transform: translateY(-0.35rem);
}

.vcore-plan__marker {
    align-self: flex-start;
    display: inline-flex;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 0.68rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.vcore-plan__price {
    display: block;
    margin: 0.25rem 0 0.8rem;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.vcore-plan ul {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.vcore-plan li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.5rem;
    color: #5d6d83;
}

.vcore-plan li i {
    margin-top: 0.2rem;
    color: #16a34a;
}

.vcore-plan .vcore-btn {
    margin-top: auto;
}

.vcore-contact {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.36fr);
    gap: 1.5rem;
    align-items: center;
    padding: clamp(1.5rem, 3vw, 2.4rem);
    border-radius: 1rem;
    color: #ffffff;
    background: linear-gradient(130deg, #020711, #0b2f5e);
    box-shadow: 0 1.4rem 3.2rem rgba(7, 17, 31, 0.18);
    overflow: hidden;
}

.vcore-contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.08), transparent);
    transform: translateX(-120%);
    animation: vcore-contact-sweep 7s ease-in-out infinite;
    pointer-events: none;
}

.vcore-contact h2 {
    max-width: 20ch;
    margin: 0;
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -0.035em;
}

.vcore-contact p {
    max-width: 48rem;
    margin: 0.8rem 0 0;
    color: #cbd8e8;
    line-height: 1.55;
}

.vcore-contact small {
    display: block;
    margin-top: 0.6rem;
    color: #9fb3c9;
}

.vcore-contact__actions {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.6rem;
}

.vcore-contact__actions > a:not(.vcore-btn) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    min-height: 2.8rem;
    padding: 0.7rem 0.85rem;
    border: 1px solid rgba(191, 219, 254, 0.18);
    border-radius: 0.65rem;
    color: #dbeafe;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
}

html.vcore-motion-ready [data-vcore-reveal] {
    opacity: 0;
    transform: translateY(var(--vcore-motion-distance));
    transition: opacity var(--vcore-motion-slow) var(--vcore-motion-ease),
                transform var(--vcore-motion-slow) var(--vcore-motion-ease);
}

html.vcore-motion-ready [data-vcore-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes vcore-enter {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes vcore-console-enter {
    to {
        opacity: 1;
        transform: perspective(1100px) rotateY(-2deg) rotateX(1deg) translateY(0) scale(1);
    }
}

@keyframes vcore-hero-glow {
    from { transform: translate3d(0, 0, 0) scale(0.96); }
    to { transform: translate3d(-4rem, 3rem, 0) scale(1.08); }
}

@keyframes vcore-grid-drift {
    from { background-position: 0 0, 0 0; }
    to { background-position: 54px 54px, 54px 54px; }
}

@keyframes vcore-scan {
    0%, 18% { transform: translateX(-160%); opacity: 0; }
    35% { opacity: 1; }
    66%, 100% { transform: translateX(360%); opacity: 0; }
}

@keyframes vcore-status-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.08); }
    50% { box-shadow: 0 0 0 0.55rem rgba(56, 189, 248, 0); }
}

@keyframes vcore-detail-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes vcore-contact-sweep {
    0%, 24% { transform: translateX(-120%); }
    55%, 100% { transform: translateX(120%); }
}

@media (max-width: 1180px) {
    .vcore-header__inner {
        grid-template-columns: minmax(12rem, 1fr) auto minmax(13rem, 1fr);
    }

    .vcore-header__nav {
        gap: 0.65rem;
    }

    .vcore-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(28rem, 0.92fr);
    }

    .vcore-heading {
        font-size: clamp(2.7rem, 4.5vw, 4.35rem);
    }
}

@media (max-width: 1024px) {
    .vcore-header__inner {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .vcore-header__nav,
    .vcore-header__account {
        display: none;
    }

    .vcore-header__menu-button {
        display: inline-flex !important;
    }

    .vcore-hero {
        min-height: auto;
    }

    .vcore-hero__grid {
        grid-template-columns: 1fr;
    }

    .vcore-heading {
        max-width: 16ch;
    }

    .vcore-lifecycle {
        transform: none;
    }

    html.vcore-motion-ready .vcore-lifecycle {
        transform: translateY(18px) scale(0.985);
    }

    @keyframes vcore-console-enter {
        to { opacity: 1; transform: translateY(0) scale(1); }
    }

    .vcore-card-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vcore-workflow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vcore-workflow__progress {
        display: none;
    }

    .vcore-architecture {
        grid-template-columns: 1fr;
    }

    .vcore-plan-grid {
        grid-template-columns: 1fr;
    }

    .vcore-plan.is-featured {
        transform: none;
    }
}

@media (max-width: 760px) {
    .vcore-section {
        padding: 2.8rem 0;
    }

    .vcore-shell {
        width: min(calc(100% - 1.25rem), var(--vcore-shell-max));
    }

    .vcore-heading {
        max-width: none;
        font-size: clamp(2.45rem, 12vw, 3.55rem);
        line-height: 0.98;
    }

    .vcore-heading--section {
        font-size: clamp(1.9rem, 9vw, 2.75rem);
    }

    .vcore-hero {
        padding: 3.2rem 0 3.6rem;
    }

    .vcore-hero::after {
        opacity: 0.1;
        mask-image: linear-gradient(to bottom, transparent, #000 40%, #000 100%);
    }

    .vcore-hero__actions,
    .vcore-hero__actions .vcore-btn {
        width: 100%;
    }

    .vcore-lifecycle__steps {
        grid-template-columns: 1fr;
    }

    .vcore-lifecycle::before {
        left: 2.15rem;
        right: auto;
        top: 1.6rem;
        bottom: 4.4rem;
        width: 2px;
        height: auto;
        background: linear-gradient(180deg,
            #38bdf8 0%,
            #38bdf8 var(--vcore-hero-progress),
            rgba(148, 163, 184, 0.18) var(--vcore-hero-progress),
            rgba(148, 163, 184, 0.18) 100%);
    }

    .vcore-lifecycle__stage {
        grid-template-columns: 2.35rem minmax(0, 1fr);
    }

    .vcore-lifecycle__result {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }

    .vcore-workflow-shell {
        padding: 0.85rem;
    }

    .vcore-workflow {
        grid-template-columns: 1fr;
    }

    .vcore-workflow__stage {
        grid-template-columns: auto auto minmax(0, 1fr);
        grid-template-areas:
            "number icon title"
            "description description description"
            "result result result";
        align-items: center;
    }

    .vcore-workflow__icon {
        justify-self: start;
    }

    .vcore-workflow__detail dl {
        grid-template-columns: 1fr;
    }

    .vcore-card-row,
    .vcore-bento-grid,
    .vcore-module-rail {
        grid-template-columns: 1fr;
    }

    .vcore-card-row {
        display: grid;
    }

    .vcore-span-12,
    .vcore-span-8,
    .vcore-span-6,
    .vcore-span-4 {
        grid-column: 1;
    }

    .vcore-bento-card {
        min-height: auto;
    }

    .vcore-contact {
        grid-template-columns: 1fr;
    }
}

@media (hover: none) {
    .vcore-btn:hover,
    .vcore-card:hover,
    .vcore-plan:hover,
    .vcore-workflow__stage:hover {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
    }

    .vcore-hero::before,
    .vcore-hero::after,
    .vcore-lifecycle::after,
    .vcore-contact::before,
    .vcore-lifecycle__stage.is-active .vcore-lifecycle__icon {
        animation: none !important;
    }

    html.vcore-motion-ready .vcore-hero__content > *,
    html.vcore-motion-ready .vcore-lifecycle,
    html.vcore-motion-ready [data-vcore-reveal],
    .vcore-card {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition-duration: 0.01ms !important;
    }

    .vcore-workflow__progress span,
    .vcore-module summary::after,
    .vcore-btn,
    .vcore-workflow__stage,
    .vcore-lifecycle__stage,
    .vcore-card,
    .vcore-plan {
        transition-duration: 0.01ms !important;
    }
}
