/* ==========================================================================
   VirexNode — modern design layer
   Sits on top of main.css + dark-theme.css. Scoped to .page-dark pages.
   ========================================================================== */

:root {
    --vx-bg: #020b12;
    --vx-lime: #b3fc6a;
    --vx-lime-soft: #d9ffaf;
    --vx-teal: #00f4cb;
    --vx-ink: #04120a;

    --vx-line: rgba(255, 255, 255, 0.08);
    --vx-line-strong: rgba(255, 255, 255, 0.16);
    --vx-surface: rgba(255, 255, 255, 0.028);
    --vx-surface-2: rgba(255, 255, 255, 0.055);

    --vx-text: #ffffff;
    --vx-muted: rgba(255, 255, 255, 0.66);
    --vx-faint: rgba(255, 255, 255, 0.44);

    --vx-radius-sm: 12px;
    --vx-radius: 18px;
    --vx-radius-lg: 26px;

    --vx-display: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
    --vx-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

    --vx-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body.page-dark {
    --bs-primary: #b3fc6a;
    --bs-primary-rgb: 179, 252, 106;
    --bs-link-color: #b3fc6a;
    --bs-link-hover-color: #d9ffaf;
    --bs-link-color-rgb: 179, 252, 106;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.page-dark .btn-primary {
    --bs-btn-color: var(--vx-ink);
    --bs-btn-bg: var(--vx-lime);
    --bs-btn-border-color: var(--vx-lime);
    --bs-btn-hover-color: var(--vx-ink);
    --bs-btn-hover-bg: #c4ff88;
    --bs-btn-hover-border-color: #c4ff88;
    --bs-btn-active-color: var(--vx-ink);
    --bs-btn-active-bg: #a4f057;
    --bs-btn-active-border-color: #a4f057;
    --bs-btn-disabled-color: var(--vx-ink);
    --bs-btn-disabled-bg: var(--vx-lime);
    --bs-btn-disabled-border-color: var(--vx-lime);
    --bs-btn-focus-shadow-rgb: 179, 252, 106;
    font-weight: 600;
}

body.page-dark .btn-primary {
    box-shadow: 0 10px 30px -12px rgba(179, 252, 106, 0.55);
}

body.page-dark .btn-outline-light {
    --bs-btn-border-color: rgba(255, 255, 255, 0.22);
    --bs-btn-hover-bg: rgba(255, 255, 255, 0.08);
    --bs-btn-hover-border-color: rgba(255, 255, 255, 0.4);
    --bs-btn-hover-color: #fff;
    --bs-btn-active-bg: rgba(255, 255, 255, 0.12);
    --bs-btn-color: #fff;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

body.page-dark .btn {
    transition: transform 0.2s var(--vx-ease), background-color 0.2s ease,
        border-color 0.2s ease, box-shadow 0.2s ease;
}

body.page-dark .btn:hover {
    transform: translateY(-2px);
}

body.page-dark .btn:focus-visible {
    outline: 2px solid var(--vx-lime);
    outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Ambient backdrop — soft aurora under the existing star layers
   -------------------------------------------------------------------------- */

body.page-dark::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(58rem 34rem at 12% -8%, rgba(179, 252, 106, 0.11), transparent 62%),
        radial-gradient(52rem 32rem at 92% 4%, rgba(0, 244, 203, 0.1), transparent 60%),
        radial-gradient(46rem 40rem at 50% 108%, rgba(87, 120, 255, 0.08), transparent 65%);
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */

.vx-display {
    font-family: var(--vx-display);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.06;
    color: var(--vx-text);
}

.vx-display--xl {
    font-size: clamp(2.6rem, 6vw, 4.5rem);
}

.vx-display--lg {
    font-size: clamp(2.1rem, 4vw, 3.25rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.vx-display--md {
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.vx-display--sm {
    font-size: clamp(1.15rem, 1.7vw, 1.4rem);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.vx-grad {
    background: linear-gradient(100deg, var(--vx-lime) 8%, var(--vx-teal) 92%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.vx-lead {
    color: var(--vx-muted);
    font-size: clamp(1rem, 1.15vw, 1.15rem);
    line-height: 1.72;
}

.vx-muted {
    color: var(--vx-muted);
}

.vx-faint {
    color: var(--vx-faint);
}

.vx-measure {
    max-width: 62ch;
}

.vx-measure-sm {
    max-width: 48ch;
}

/* --------------------------------------------------------------------------
   Section rhythm
   -------------------------------------------------------------------------- */

.vx-section {
    position: relative;
    padding-block: clamp(3.5rem, 6.5vw, 6.5rem);
}

.vx-section--tight {
    padding-block: clamp(2.75rem, 4.5vw, 4.5rem);
}

.vx-section--hero {
    padding-top: clamp(7rem, 11vw, 10.5rem);
    padding-bottom: clamp(3rem, 5vw, 4.5rem);
}

.vx-section-head {
    max-width: 46rem;
    margin-inline: auto;
    text-align: center;
    margin-bottom: clamp(2.25rem, 4vw, 3.5rem);
}

/* --------------------------------------------------------------------------
   Eyebrow / chips / badges
   -------------------------------------------------------------------------- */

.vx-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.4rem 0.9rem 0.4rem 0.7rem;
    border-radius: 999px;
    border: 1px solid var(--vx-line);
    background: var(--vx-surface-2);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    align-self: flex-start;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.vx-eyebrow::before {
    content: "";
    width: 0.44rem;
    height: 0.44rem;
    border-radius: 50%;
    background: var(--vx-lime);
    box-shadow: 0 0 0 3px rgba(179, 252, 106, 0.16);
}

.vx-eyebrow--plain::before {
    display: none;
}

.vx-announce {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 1.1rem 0.5rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(179, 252, 106, 0.22);
    background: linear-gradient(
        90deg,
        rgba(179, 252, 106, 0.14),
        rgba(0, 244, 203, 0.07) 55%,
        rgba(255, 255, 255, 0.02)
    );
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    align-self: flex-start;
    transition: border-color 0.25s ease, transform 0.25s var(--vx-ease);
}

.vx-announce:hover {
    color: #fff;
    transform: translateY(-1px);
    border-color: rgba(179, 252, 106, 0.45);
}

.vx-announce__tag {
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: var(--vx-lime);
    color: var(--vx-ink);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.vx-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    border: 1px solid var(--vx-line);
    background: var(--vx-surface);
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.88rem;
    font-weight: 500;
    white-space: nowrap;
    align-self: flex-start;
}

.vx-chip i {
    color: var(--vx-lime);
    font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.vx-card {
    position: relative;
    height: 100%;
    padding: clamp(1.5rem, 2.4vw, 2.1rem);
    border-radius: var(--vx-radius-lg);
    border: 1px solid var(--vx-line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
        rgba(6, 15, 22, 0.72);
    overflow: hidden;
    transition: transform 0.35s var(--vx-ease), border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.vx-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        140deg,
        rgba(179, 252, 106, 0.4),
        transparent 38%,
        transparent 62%,
        rgba(0, 244, 203, 0.26)
    );
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.vx-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 28px 60px -32px rgba(0, 0, 0, 0.9);
}

.vx-card:hover::after {
    opacity: 1;
}

.vx-card--flat:hover {
    transform: none;
}

.vx-card--glow::before {
    content: "";
    position: absolute;
    top: -35%;
    right: -20%;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(179, 252, 106, 0.16), transparent 68%);
    pointer-events: none;
}

.vx-card__body {
    position: relative;
    z-index: 1;
}

.vx-panel {
    position: relative;
    border-radius: var(--vx-radius-lg);
    border: 1px solid var(--vx-line);
    background:
        linear-gradient(180deg, rgba(13, 22, 31, 0.92), rgba(5, 14, 22, 0.96)),
        radial-gradient(circle at 88% 6%, rgba(0, 244, 203, 0.16), transparent 42%);
    box-shadow: 0 40px 80px -48px rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   Icon tiles
   -------------------------------------------------------------------------- */

.vx-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1.1rem;
    border: 1px solid rgba(179, 252, 106, 0.18);
    background: linear-gradient(160deg, rgba(179, 252, 106, 0.16), rgba(179, 252, 106, 0.04));
    color: var(--vx-lime);
    font-size: 1.7rem;
    line-height: 1;
    flex-shrink: 0;
}

.vx-icon--teal {
    border-color: rgba(0, 244, 203, 0.2);
    background: linear-gradient(160deg, rgba(0, 244, 203, 0.16), rgba(0, 244, 203, 0.04));
    color: var(--vx-teal);
}

.vx-icon--plain {
    border-color: var(--vx-line);
    background: var(--vx-surface-2);
    color: #fff;
}

.vx-icon--lg {
    width: 4rem;
    height: 4rem;
    font-size: 1.85rem;
    border-radius: 1.15rem;
}

.vx-icon img {
    width: 1.75rem;
    height: 1.75rem;
}

.vx-icon--lg img {
    width: 2.15rem;
    height: 2.15rem;
}

/* --------------------------------------------------------------------------
   Bento grid
   -------------------------------------------------------------------------- */

.vx-bento {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.vx-bento > * {
    grid-column: span 6;
}

@media (min-width: 768px) {
    .vx-bento > * {
        grid-column: span 3;
    }

    .vx-bento__wide,
    .vx-bento__full {
        grid-column: span 6;
    }
}

@media (min-width: 992px) {
    .vx-bento > * {
        grid-column: span 2;
    }

    .vx-bento__wide {
        grid-column: span 3;
    }

    .vx-bento__full {
        grid-column: span 6;
    }
}

/* --------------------------------------------------------------------------
   Feature lists
   -------------------------------------------------------------------------- */

.vx-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.85rem;
}

/* The marker is positioned rather than a flex child, so the bold label and
   the text that follows it stay in one inline run and wrap as normal prose. */
.vx-list li {
    position: relative;
    padding-left: 2.1rem;
    color: var(--vx-muted);
    line-height: 1.6;
}

.vx-list li::before {
    content: "\f00c";
    font-family: "Line Awesome Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.13rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: rgba(179, 252, 106, 0.14);
    color: var(--vx-lime);
    font-size: 0.7rem;
}

.vx-list strong {
    color: #fff;
    font-weight: 600;
}

/* Numbered / stacked detail list */
.vx-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.85rem;
}

.vx-steps li {
    padding: 1rem 1.15rem;
    border-radius: var(--vx-radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--vx-surface);
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

.vx-steps li:hover {
    border-color: rgba(179, 252, 106, 0.24);
    background: rgba(255, 255, 255, 0.045);
}

.vx-steps strong {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.vx-steps span {
    color: var(--vx-muted);
    font-size: 0.95rem;
    line-height: 1.62;
}

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */

.vx-stat {
    height: 100%;
    padding: clamp(1.25rem, 2vw, 1.75rem);
    border-radius: var(--vx-radius);
    border: 1px solid var(--vx-line);
    background: var(--vx-surface);
}

.vx-stat__num {
    display: block;
    font-family: var(--vx-display);
    font-size: clamp(2rem, 3.6vw, 2.9rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.4rem;
    background: linear-gradient(100deg, #ffffff 10%, var(--vx-lime) 120%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vx-stat__label {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.vx-stat__sub {
    display: block;
    color: var(--vx-muted);
    font-size: 0.93rem;
    line-height: 1.6;
}

/* Compact inline metrics row */
/* --------------------------------------------------------------------------
   Tech strip
   -------------------------------------------------------------------------- */

.vx-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.65rem 0.9rem;
}

.vx-strip__item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.6rem 1.05rem;
    border-radius: 999px;
    border: 1px solid var(--vx-line);
    background: var(--vx-surface);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s var(--vx-ease);
}

.vx-strip__item i {
    color: var(--vx-lime);
    font-size: 1.05rem;
}

.vx-strip__item:hover {
    color: #fff;
    border-color: rgba(179, 252, 106, 0.3);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Terminal
   -------------------------------------------------------------------------- */

.vx-terminal {
    position: relative;
    border-radius: var(--vx-radius-lg);
    border: 1px solid var(--vx-line-strong);
    background: #070d14;
    overflow: hidden;
    box-shadow: 0 50px 100px -50px rgba(0, 0, 0, 1),
        0 0 0 1px rgba(255, 255, 255, 0.02) inset;
    font-family: var(--vx-mono);
    font-size: 0.9rem;
}

.vx-terminal__bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
}

.vx-terminal__dot {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
}

.vx-terminal__title {
    margin-inline: auto;
    color: var(--vx-faint);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.vx-terminal__body {
    padding: clamp(1.15rem, 2.4vw, 1.75rem);
    min-height: 19rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.85;
}

.vx-terminal__body .ok {
    color: var(--vx-lime);
}

.vx-terminal__body .dim {
    color: rgba(255, 255, 255, 0.42);
}

.vx-terminal__body .accent {
    color: var(--vx-teal);
}

.vx-terminal__foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1.4rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.82rem;
}

.vx-cursor {
    display: inline-block;
    width: 0.5rem;
    height: 1rem;
    margin-left: 0.15rem;
    background: var(--vx-lime);
    vertical-align: text-bottom;
    animation: vxBlink 1.05s step-end infinite;
}

@keyframes vxBlink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.vx-reveal {
    animation: vxReveal 0.32s var(--vx-ease) forwards;
    opacity: 0;
    transform: translateX(-10px);
}

@keyframes vxReveal {
    to {
        opacity: 1;
        transform: none;
    }
}

.vx-pulse {
    animation: vxPulse 2.2s ease-in-out infinite alternate;
}

@keyframes vxPulse {
    from {
        text-shadow: 0 0 2px rgba(179, 252, 106, 0.2);
    }
    to {
        text-shadow: 0 0 10px rgba(179, 252, 106, 0.85);
    }
}

/* --------------------------------------------------------------------------
   Browser / app window frame for screenshots
   -------------------------------------------------------------------------- */

.vx-window {
    border-radius: var(--vx-radius-lg);
    border: 1px solid var(--vx-line-strong);
    background: #060e15;
    overflow: hidden;
    box-shadow: 0 44px 90px -46px rgba(0, 0, 0, 1);
}

.vx-window__bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
}

.vx-window__url {
    flex: 1;
    margin-inline: 0.5rem;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--vx-faint);
    font-family: var(--vx-mono);
    font-size: 0.74rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vx-window img {
    display: block;
    width: 100%;
    height: auto;
}

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */

.vx-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--vx-line);
    background: var(--vx-surface-2);
}

.vx-toggle__label {
    color: var(--vx-muted);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.vx-toggle .form-check {
    min-height: auto;
    margin: 0;
    padding: 0;
}

.vx-toggle .form-check-input {
    width: 2.9rem;
    height: 1.6rem;
    margin: 0;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.16);
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.vx-toggle .form-check-input:checked {
    background-color: var(--vx-lime) !important;
    border-color: var(--vx-lime) !important;
}

.vx-toggle .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(179, 252, 106, 0.18);
}

.vx-toggle__save {
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(0, 244, 203, 0.14);
    color: var(--vx-teal);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.vx-plan {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: clamp(1.6rem, 2.4vw, 2.15rem);
    border-radius: var(--vx-radius-lg);
    border: 1px solid var(--vx-line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
        rgba(6, 15, 22, 0.78);
    transition: transform 0.35s var(--vx-ease), border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.vx-plan:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 34px 70px -38px rgba(0, 0, 0, 0.95);
}

.vx-plan--featured {
    border-color: rgba(179, 252, 106, 0.42);
    background:
        linear-gradient(180deg, rgba(179, 252, 106, 0.09), rgba(255, 255, 255, 0.012) 42%),
        rgba(6, 17, 22, 0.86);
    box-shadow: 0 0 0 1px rgba(179, 252, 106, 0.12),
        0 40px 90px -48px rgba(179, 252, 106, 0.5);
}

.vx-plan--featured:hover {
    border-color: rgba(179, 252, 106, 0.6);
}

.vx-plan__flag {
    position: absolute;
    top: -0.85rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: var(--vx-lime);
    color: var(--vx-ink);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 10px 24px -10px rgba(179, 252, 106, 0.8);
}

.vx-plan__name {
    font-family: var(--vx-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #fff;
    margin-bottom: 0.4rem;
}

.vx-plan__desc {
    color: var(--vx-muted);
    font-size: 0.93rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 3rem;
}

.vx-plan__price {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    font-family: var(--vx-display);
    font-size: clamp(2.3rem, 3.4vw, 2.9rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1;
    color: #fff;
}

.vx-plan__period {
    font-family: var(--bs-body-font-family);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--vx-faint);
}

.vx-plan__note {
    display: block;
    margin-top: 0.55rem;
    color: var(--vx-faint);
    font-size: 0.85rem;
}

.vx-plan__note strong {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
}

.vx-plan__save {
    display: inline-block;
    margin-top: 0.6rem;
    padding: 0.22rem 0.6rem;
    border-radius: 999px;
    background: rgba(0, 244, 203, 0.13);
    color: var(--vx-teal);
    font-size: 0.75rem;
    font-weight: 700;
}

.vx-plan__specs {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: grid;
    gap: 0.7rem;
}

.vx-plan__specs li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: var(--vx-muted);
    font-size: 0.93rem;
    line-height: 1.5;
}

.vx-plan__specs li i {
    margin-top: 0.1rem;
    color: var(--vx-lime);
    font-size: 1.05rem;
    flex-shrink: 0;
}

.vx-plan__specs strong {
    color: #fff;
    font-weight: 600;
}

.vx-plan__cta {
    margin-top: auto;
}

.vx-plan__cta .btn {
    width: 100%;
}

/* The theme's pricing JS toggles these with display:block !important */
.vx-plan .monthly-price,
.vx-plan .yearly-price {
    width: 100%;
}

/* --------------------------------------------------------------------------
   FAQ accordion
   -------------------------------------------------------------------------- */

.vx-faq .accordion-item {
    margin-bottom: 0.85rem;
    border: 1px solid var(--vx-line);
    border-radius: var(--vx-radius) !important;
    background: var(--vx-surface);
    overflow: hidden;
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

.vx-faq .accordion-item:last-child {
    margin-bottom: 0;
}

.vx-faq .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: rgba(179, 252, 106, 0.28);
    background: rgba(255, 255, 255, 0.045);
}

.vx-faq .accordion-button {
    padding: 1.15rem 1.35rem;
    background: transparent;
    box-shadow: none;
    color: #fff;
    font-family: var(--vx-display);
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.vx-faq .accordion-button:not(.collapsed) {
    background: transparent;
    color: #fff;
}

.vx-faq .accordion-button:focus {
    box-shadow: none;
}

.vx-faq .accordion-button::after {
    width: 1.6rem;
    height: 1.6rem;
    flex-shrink: 0;
    background-image: none;
    content: "\f067";
    font-family: "Line Awesome Free";
    font-weight: 900;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--vx-line);
    background-color: var(--vx-surface-2);
    color: var(--vx-lime);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.vx-faq .accordion-button:not(.collapsed)::after {
    content: "\f068";
    transform: none;
    background-color: rgba(179, 252, 106, 0.16);
}

.vx-faq .accordion-body {
    padding: 0 1.35rem 1.35rem;
    color: var(--vx-muted);
    line-height: 1.72;
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.vx-cta {
    position: relative;
    padding: clamp(2.25rem, 5vw, 4rem);
    border-radius: var(--vx-radius-lg);
    border: 1px solid rgba(179, 252, 106, 0.2);
    background:
        radial-gradient(38rem 22rem at 88% 12%, rgba(0, 244, 203, 0.14), transparent 60%),
        radial-gradient(34rem 20rem at 6% 96%, rgba(179, 252, 106, 0.16), transparent 62%),
        linear-gradient(180deg, rgba(12, 24, 32, 0.94), rgba(5, 14, 21, 0.96));
    overflow: hidden;
}

.vx-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 3.5rem 3.5rem;
    mask-image: radial-gradient(70% 70% at 50% 40%, #000, transparent);
    -webkit-mask-image: radial-gradient(70% 70% at 50% 40%, #000, transparent);
    pointer-events: none;
}

.vx-cta > * {
    position: relative;
    z-index: 1;
}

/* --------------------------------------------------------------------------
   Links
   -------------------------------------------------------------------------- */

.vx-link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 0.45rem;
    color: var(--vx-lime);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s var(--vx-ease), color 0.2s ease;
}

.vx-link:hover {
    color: var(--vx-lime-soft);
    gap: 0.75rem;
}

.vx-link i {
    font-size: 1.1rem;
}

.vx-row-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    border-radius: var(--vx-radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--vx-surface);
    color: #fff;
    text-decoration: none;
    transition: border-color 0.25s ease, transform 0.25s var(--vx-ease),
        background-color 0.25s ease;
}

.vx-row-link:hover {
    color: #fff;
    transform: translateX(4px);
    border-color: rgba(179, 252, 106, 0.28);
    background: rgba(255, 255, 255, 0.045);
}

.vx-row-link i {
    color: var(--vx-lime);
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

.vx-form .form-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
}

.vx-form .form-control,
.vx-form .form-select {
    min-height: 3.35rem;
    padding: 0.85rem 1.05rem;
    border-radius: var(--vx-radius-sm);
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.vx-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.34);
}

.vx-form .form-control:focus,
.vx-form .form-select:focus {
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(179, 252, 106, 0.55);
    box-shadow: 0 0 0 0.22rem rgba(179, 252, 106, 0.1);
    color: #fff;
}

.vx-form textarea.form-control {
    min-height: 11rem;
    resize: vertical;
}

.vx-form .form-select option {
    color: #06111a;
}

.vx-form .form-check-label {
    color: var(--vx-muted);
    font-size: 0.93rem;
}

.vx-form .form-check-input {
    background-color: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.18);
}

.vx-form .form-check-input:checked {
    background-color: var(--vx-lime);
    border-color: var(--vx-lime);
}

.vx-form .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(179, 252, 106, 0.15);
}

.vx-note {
    padding: 1rem 1.15rem;
    border-radius: var(--vx-radius);
    border: 1px solid rgba(179, 252, 106, 0.18);
    background: rgba(179, 252, 106, 0.07);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.93rem;
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   Navbar refinements
   -------------------------------------------------------------------------- */

body.page-dark .navbar-1 .nav-link {
    font-size: 0.95rem;
    letter-spacing: 0.005em;
    transition: color 0.2s ease, opacity 0.2s ease;
}

body.page-dark .navbar-1 .nav-link:hover {
    color: #fff !important;
    opacity: 1;
}

body.page-dark.navbar-sticky-init .navbar-overlay {
    border-bottom: 1px solid var(--vx-line);
}

body.page-dark .navbar-overlay .btn-dark {
    --bs-btn-bg: rgba(255, 255, 255, 0.08);
    --bs-btn-border-color: rgba(255, 255, 255, 0.16);
    --bs-btn-hover-bg: rgba(255, 255, 255, 0.16);
    --bs-btn-hover-border-color: rgba(255, 255, 255, 0.28);
    --bs-btn-color: #fff;
    --bs-btn-hover-color: #fff;
    padding-inline: 1.25rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: none;
}

body.page-dark .navbar-overlay .btn-nav-primary {
    --bs-btn-bg: var(--vx-lime);
    --bs-btn-border-color: var(--vx-lime);
    --bs-btn-color: var(--vx-ink);
    --bs-btn-hover-bg: #c4ff88;
    --bs-btn-hover-border-color: #c4ff88;
    --bs-btn-hover-color: var(--vx-ink);
    padding-inline: 1.25rem;
    font-weight: 600;
    box-shadow: 0 10px 26px -14px rgba(179, 252, 106, 0.9);
}

body.page-dark.navbar-sticky-init .navbar-overlay .btn-nav-primary {
    color: var(--vx-ink) !important;
}

/* --------------------------------------------------------------------------
   Footer refinements
   -------------------------------------------------------------------------- */

body.page-dark .footer-2-area {
    border-top: 1px solid var(--vx-line);
    margin-top: clamp(3rem, 6vw, 5rem);
}

body.page-dark .footer-2-link {
    color: var(--vx-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

body.page-dark .footer-2-link:hover {
    color: var(--vx-lime);
}

body.page-dark .social-icon {
    transition: border-color 0.25s ease, background-color 0.25s ease,
        transform 0.25s var(--vx-ease);
}

body.page-dark .social-icon:hover {
    transform: translateY(-3px);
    border-color: rgba(179, 252, 106, 0.4) !important;
    background: rgba(179, 252, 106, 0.1);
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    body.page-dark *,
    body.page-dark *::before,
    body.page-dark *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .vx-card:hover,
    .vx-plan:hover,
    .vx-row-link:hover,
    body.page-dark .btn:hover {
        transform: none;
    }
}

/* --------------------------------------------------------------------------
   Theme override hardening
   main.css ships `!important` colours and a hard-coded blue hover that were
   written for the stock blue primary. On the lime primary they produce
   white-on-lime and dark-grey-on-dark text, so they are re-pinned here.
   -------------------------------------------------------------------------- */

body.page-dark .btn-primary,
body.page-dark .btn-primary:hover,
body.page-dark .btn-primary:focus,
body.page-dark .btn-primary:active,
body.page-dark .btn-primary.active,
body.page-dark .btn-primary.show,
body.page-dark .btn-primary .btn-arrow__text,
body.page-dark .btn-nav-primary,
body.page-dark .btn-nav-primary:hover,
body.page-dark .btn-nav-primary:focus {
    color: var(--vx-ink) !important;
}

body.page-dark .btn-primary:hover,
body.page-dark .btn-primary:focus,
body.page-dark .btn-primary:active,
body.page-dark .btn-primary.active,
body.page-dark .btn-primary.show {
    background-color: #c4ff88;
    border-color: #c4ff88;
}

body.page-dark .btn-outline-light:hover,
body.page-dark .btn-outline-light:focus,
body.page-dark .btn-outline-light:active,
body.page-dark .btn-outline-light.active,
body.page-dark .btn-outline-light.show {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Back-to-top button: dark glyph on the lime fill */
body.page-dark .scroll-top {
    color: var(--vx-ink) !important;
    border-radius: 50%;
    box-shadow: 0 12px 28px -12px rgba(179, 252, 106, 0.9);
}

/* --------------------------------------------------------------------------
   Legal documents (terms, privacy)
   -------------------------------------------------------------------------- */

.vx-legal {
    display: grid;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

/* Grid items default to min-width:auto, which would let the wide resource
   table push the whole column past the viewport. Let them shrink so the
   table scrolls inside .vx-table-wrap instead. */
.vx-legal > * {
    min-width: 0;
}

@media (min-width: 992px) {
    .vx-legal {
        grid-template-columns: minmax(0, 17rem) minmax(0, 1fr);
    }
}

/* Contents rail */
.vx-toc {
    position: relative;
    padding: 1.5rem;
    border-radius: var(--vx-radius-lg);
    border: 1px solid var(--vx-line);
    background: var(--vx-surface);
}

@media (min-width: 992px) {
    .vx-toc {
        position: sticky;
        top: 6.5rem;
        max-height: calc(100vh - 9rem);
        overflow-y: auto;
        overscroll-behavior: contain;
    }
}

.vx-toc__title {
    margin-bottom: 1rem;
    color: var(--vx-faint);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.vx-toc ol {
    list-style: none;
    counter-reset: toc;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.15rem;
}

.vx-toc a {
    counter-increment: toc;
    display: flex;
    gap: 0.6rem;
    padding: 0.45rem 0.6rem;
    border-radius: 0.6rem;
    color: var(--vx-muted);
    font-size: 0.9rem;
    line-height: 1.45;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.vx-toc a::before {
    content: counter(toc);
    flex-shrink: 0;
    min-width: 1.2rem;
    color: var(--vx-faint);
    font-variant-numeric: tabular-nums;
}

.vx-toc a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.045);
}

.vx-toc a.is-active {
    color: var(--vx-lime);
    background: rgba(179, 252, 106, 0.09);
}

.vx-toc a.is-active::before {
    color: var(--vx-lime);
}

/* Document body */
.vx-prose {
    max-width: 68ch;
    color: var(--vx-muted);
    font-size: 1rem;
    line-height: 1.78;
}

.vx-prose > section {
    padding-top: clamp(2rem, 4vw, 3rem);
    scroll-margin-top: 7rem;
}

.vx-prose > section:first-child {
    padding-top: 0;
}

.vx-prose h2 {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #fff;
    font-family: var(--vx-display);
    font-size: clamp(1.35rem, 2.1vw, 1.7rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.vx-prose h2 .vx-prose__num {
    color: var(--vx-lime);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-variant-numeric: tabular-nums;
}

.vx-prose h3 {
    margin: 2rem 0 0.75rem;
    color: #fff;
    font-family: var(--vx-display);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.vx-prose p {
    margin: 0 0 1.1rem;
}

.vx-prose p:last-child,
.vx-prose ul:last-child,
.vx-prose ol:last-child {
    margin-bottom: 0;
}

.vx-prose strong {
    color: #fff;
    font-weight: 600;
}

.vx-prose a:not(.btn) {
    color: var(--vx-lime);
    text-decoration: underline;
    text-underline-offset: 0.2em;
    text-decoration-thickness: 1px;
}

.vx-prose a:not(.btn):hover {
    color: var(--vx-lime-soft);
}

.vx-prose ul,
.vx-prose ol {
    margin: 0 0 1.1rem;
    padding-left: 1.35rem;
    display: grid;
    gap: 0.5rem;
}

.vx-prose li::marker {
    color: rgba(179, 252, 106, 0.65);
}

.vx-prose dl {
    margin: 0 0 1.1rem;
    display: grid;
    gap: 0.85rem;
}

.vx-prose dt {
    color: #fff;
    font-weight: 600;
}

.vx-prose dd {
    margin: 0.15rem 0 0;
}

/* Emphasised callout inside a document */
.vx-callout {
    margin: 1.5rem 0;
    padding: 1.15rem 1.35rem;
    border-radius: var(--vx-radius);
    border: 1px solid rgba(179, 252, 106, 0.2);
    background: rgba(179, 252, 106, 0.06);
}

.vx-callout__label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--vx-lime);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.vx-callout p:last-child {
    margin-bottom: 0;
}

/* Data table (resource allowances) */
.vx-table-wrap {
    margin: 1.5rem 0;
    overflow-x: auto;
    border-radius: var(--vx-radius);
    border: 1px solid var(--vx-line);
    -webkit-overflow-scrolling: touch;
}

.vx-table {
    width: 100%;
    min-width: 34rem;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.vx-table th,
.vx-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vx-table thead th {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
}

.vx-table tbody th {
    color: rgba(255, 255, 255, 0.86);
    font-weight: 500;
}

.vx-table tbody tr:last-child th,
.vx-table tbody tr:last-child td {
    border-bottom: 0;
}

.vx-table td {
    color: var(--vx-muted);
    font-variant-numeric: tabular-nums;
}

/* "Last updated" meta row */
.vx-doc-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: var(--vx-radius);
    border: 1px solid var(--vx-line);
    background: var(--vx-surface);
    color: var(--vx-muted);
    font-size: 0.9rem;
}

.vx-doc-meta strong {
    color: #fff;
    font-weight: 600;
}
