
:root {
    --primary: #795EFF;
    --primary-rgb: 121, 94, 255;

    --bg: #05050A;
    --bg-soft: #08080F;
    --panel: #0B0B13;

    --white: #FFFFFF;
    --text: #F4F4F7;
    --muted: #9898A8;
    --muted-2: #6E6E7A;

    --border: rgba(var(--primary-rgb), .22);
    --border-strong: rgba(var(--primary-rgb), .48);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family:
        Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
}

#cursorFx {
    position: fixed;
    inset: 0;
    z-index: 50;
    width: 100%;
    height: 100%;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* -------------------------------------------------------------------------- */
/* NAVBAR — compact centered pill                                             */
/* -------------------------------------------------------------------------- */

.site-header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 0 18px;
    pointer-events: none;
}

.nav-pill {
    width: fit-content;
    min-width: 650px;
    min-height: 48px;
    margin: 0 auto;
    padding: 5px 6px 5px 8px;

    display: flex;
    align-items: center;

    border: 1px solid rgba(var(--primary-rgb), .26);
    border-radius: 18px;
    background: rgba(8, 8, 15, .91);

    box-shadow:
        0 18px 42px rgba(0, 0, 0, .38),
        0 0 24px rgba(var(--primary-rgb), .045),
        inset 0 1px 0 rgba(255,255,255,.025);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    pointer-events: auto;
}

.nav-brand {
    height: 38px;
    padding: 0 10px 0 3px;

    display: flex;
    align-items: center;
    gap: 8px;

    color: var(--primary);
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
}

.nav-logo {
    width: 27px !important;
    height: 27px !important;
    max-width: 27px !important;
    max-height: 27px !important;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;

    filter: drop-shadow(0 0 8px rgba(var(--primary-rgb), .40));
}

.brand-name {
    line-height: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-links a,
.nav-signin {
    min-height: 38px;
    padding: 0 12px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    color: #9696A5;
    font-size: 11px;
    font-weight: 650;
    white-space: nowrap;

    transition:
        color .18s ease,
        background .18s ease;
}

.nav-links a:hover,
.nav-links a.active,
.nav-signin:hover {
    color: var(--white);
    background: rgba(var(--primary-rgb), .07);
}

.nav-signin {
    margin-left: 3px;
}

.nav-cta {
    min-height: 38px;
    margin-left: 3px;
    padding: 0 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(var(--primary-rgb), .72);
    border-radius: 12px;

    background: var(--primary);
    color: var(--white);

    font-size: 11px;
    font-weight: 850;
    white-space: nowrap;

    box-shadow:
        0 7px 22px rgba(var(--primary-rgb), .25),
        inset 0 1px 0 rgba(255,255,255,.18);

    transition:
        transform .18s ease,
        box-shadow .18s ease;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow:
        0 11px 28px rgba(var(--primary-rgb), .34),
        inset 0 1px 0 rgba(255,255,255,.18);
}

/* -------------------------------------------------------------------------- */
/* HOME HERO — PrimeStorm-like centered composition, Neural purple only       */
/* -------------------------------------------------------------------------- */

.hero {
    min-height: 100svh;
    position: relative;
    overflow: hidden;

    display: grid;
    place-items: center;

    padding: 118px 20px 76px;

    background:
        radial-gradient(
            circle at 50% 34%,
            rgba(var(--primary-rgb), .17) 0%,
            rgba(var(--primary-rgb), .075) 25%,
            rgba(var(--primary-rgb), .015) 48%,
            transparent 68%
        ),
        linear-gradient(180deg, #080812 0%, #06060B 58%, #05050A 100%);

    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -5;

    background:
        linear-gradient(rgba(var(--primary-rgb), .075) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--primary-rgb), .075) 1px, transparent 1px);

    background-size: 64px 64px;
    opacity: .30;

    -webkit-mask-image:
        radial-gradient(circle at 50% 42%, black 0%, rgba(0,0,0,.82) 46%, transparent 88%);
    mask-image:
        radial-gradient(circle at 50% 42%, black 0%, rgba(0,0,0,.82) 46%, transparent 88%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -4;
    pointer-events: none;

    background:
        linear-gradient(90deg, rgba(5,5,10,.90), transparent 19%, transparent 81%, rgba(5,5,10,.90)),
        linear-gradient(180deg, rgba(5,5,10,.18), transparent 18%, transparent 74%, rgba(5,5,10,.88));
}

.hero-content {
    width: min(820px, 100%);
    position: relative;
    z-index: 5;
    text-align: center;
}

.hero-badge {
    width: fit-content;
    min-height: 32px;
    margin: 0 auto 24px;
    padding: 0 14px;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    border: 1px solid rgba(var(--primary-rgb), .38);
    border-radius: 999px;

    background: rgba(var(--primary-rgb), .055);

    color: #AAA0FF;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .72px;

    box-shadow:
        0 0 26px rgba(var(--primary-rgb), .06),
        inset 0 1px 0 rgba(255,255,255,.018);
}

.badge-bolt,
.badge-arrow {
    color: var(--primary);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.hero h1 {
    margin-bottom: 18px;

    color: var(--white);

    font-size: clamp(48px, 5.0vw, 76px);
    line-height: .98;
    letter-spacing: -4px;
    font-weight: 950;
}

.hero h1 span {
    display: block;
    margin-top: 7px;

    color: var(--primary);

    text-shadow:
        0 0 26px rgba(var(--primary-rgb), .16),
        0 0 70px rgba(var(--primary-rgb), .075);
}

.hero-copy {
    width: min(680px, 100%);
    margin: 0 auto 26px;

    color: #B0B0BD;
    font-size: 16px;
    line-height: 1.62;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-button {
    min-width: 188px;
    min-height: 48px;
    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border-radius: 12px;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: .35px;

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        background .18s ease,
        border-color .18s ease;
}

.hero-button:hover {
    transform: translateY(-2px);
}

.hero-button img {
    width: 18px;
    height: 18px;
}

.hero-button-primary {
    border: 1px solid rgba(var(--primary-rgb), .82);
    background: var(--primary);
    color: var(--white);

    box-shadow:
        0 11px 30px rgba(var(--primary-rgb), .28),
        0 0 34px rgba(var(--primary-rgb), .10),
        inset 0 1px 0 rgba(255,255,255,.18);
}

.hero-button-primary:hover {
    box-shadow:
        0 15px 38px rgba(var(--primary-rgb), .37),
        0 0 42px rgba(var(--primary-rgb), .13),
        inset 0 1px 0 rgba(255,255,255,.18);
}

.hero-button-secondary {
    border: 1px solid rgba(var(--primary-rgb), .34);
    background: rgba(6, 6, 12, .58);
    color: #C9C5EE;
}

.hero-button-secondary:hover {
    border-color: rgba(var(--primary-rgb), .60);
    background: rgba(var(--primary-rgb), .07);
}

.hero-stats {
    width: min(660px, 100%);
    margin: 43px auto 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.stat-card {
    min-height: 124px;
    padding: 17px 14px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(var(--primary-rgb), .19);
    border-radius: 15px;

    background:
        linear-gradient(180deg, rgba(var(--primary-rgb), .055), rgba(255,255,255,.012)),
        rgba(12, 12, 20, .53);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.025),
        0 14px 40px rgba(0,0,0,.18);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.stat-icon {
    width: 31px;
    height: 31px;
    margin-bottom: 7px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(var(--primary-rgb), .34);
    border-radius: 9px;

    color: var(--primary);
    background: rgba(var(--primary-rgb), .055);

    transform: rotate(45deg);
}

.stat-icon::first-letter {
    transform: rotate(-45deg);
}

.stat-card strong {
    margin-bottom: 3px;

    color: var(--white);
    font-size: 22px;
    font-weight: 930;
    letter-spacing: -.4px;
}

.stat-card span {
    color: #9C95D9;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .55px;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    z-index: -3;
    display: grid;
    place-items: center;
    pointer-events: none;
}

.hero-back-logo {
    width: min(620px, 46vw);
    max-width: 620px;
    opacity: .055;

    filter:
        blur(.4px)
        drop-shadow(0 0 58px rgba(var(--primary-rgb), .34));

    transform: translateY(48px) scale(1.05);

    pointer-events: none;
    user-select: none;
}

.hero-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 130px;
    z-index: 4;
    pointer-events: none;

    background: linear-gradient(180deg, transparent, var(--bg));
}

.hero-particle {
    position: absolute;
    z-index: -2;

    width: 3px;
    height: 3px;
    border-radius: 50%;

    background: var(--primary);
    box-shadow: 0 0 12px 3px rgba(var(--primary-rgb), .55);

    animation: particleFloat 4.8s ease-in-out infinite alternate;
}

.p1 { left: 27%; top: 21%; }
.p2 { left: 33%; top: 54%; animation-delay: -1.2s; }
.p3 { right: 29%; top: 24%; animation-delay: -.6s; }
.p4 { right: 25%; top: 52%; animation-delay: -2.0s; }
.p5 { left: 50%; top: 74%; animation-delay: -2.8s; }

@keyframes particleFloat {
    from { transform: translateY(-5px); opacity: .25; }
    to   { transform: translateY(8px); opacity: .85; }
}

/* -------------------------------------------------------------------------- */
/* LOWER SECTIONS                                                             */
/* -------------------------------------------------------------------------- */

.section {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 105px 0;
    position: relative;
    z-index: 3;
}

.section-heading {
    width: min(700px, 100%);
    margin: 0 auto 48px;
    text-align: center;
}

.section-kicker {
    margin-bottom: 11px;

    color: var(--primary);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.7px;
}

.section-heading h2,
.pricing-panel h2 {
    margin-bottom: 14px;

    color: var(--white);
    font-size: clamp(34px, 3.8vw, 52px);
    line-height: 1.04;
    letter-spacing: -2.4px;
}

.section-heading p,
.pricing-panel p {
    margin-bottom: 0;

    color: var(--muted);
    font-size: 15px;
    line-height: 1.72;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.feature-card {
    min-height: 210px;
    padding: 25px;

    position: relative;
    overflow: hidden;

    border: 1px solid rgba(255,255,255,.055);
    border-radius: 17px;

    background:
        linear-gradient(180deg, rgba(var(--primary-rgb), .018), transparent),
        rgba(10,10,17,.72);

    transition:
        transform .2s ease,
        border-color .2s ease,
        background .2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border);
    background:
        linear-gradient(180deg, rgba(var(--primary-rgb), .045), transparent),
        rgba(10,10,17,.78);
}

.feature-index {
    color: var(--primary);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.feature-card h3 {
    margin: 42px 0 10px;
    color: var(--white);
    font-size: 18px;
    letter-spacing: -.45px;
}

.feature-card p {
    margin: 0;
    color: #858592;
    line-height: 1.65;
    font-size: 13px;
}

.workflow {
    width: min(1080px, calc(100% - 48px));
}

.workflow-track {
    display: grid;
    grid-template-columns: 1fr 82px 1fr 82px 1fr;
    align-items: center;
    margin-top: 54px;
}

.workflow-track article {
    min-height: 156px;
    padding: 21px;

    display: flex;
    gap: 15px;

    border: 1px solid rgba(255,255,255,.055);
    border-radius: 16px;
    background: rgba(10,10,17,.67);
}

.workflow-track article > span {
    flex: 0 0 35px;
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(var(--primary-rgb), .075);

    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
}

.workflow-track h3 {
    margin: 4px 0 8px;
    color: var(--white);
    font-size: 16px;
}

.workflow-track p {
    margin: 0;
    color: #858592;
    font-size: 12px;
    line-height: 1.62;
}

.workflow-line {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(var(--primary-rgb), .46),
        transparent
    );
}

.pricing-section {
    padding-top: 65px;
}

.pricing-panel {
    min-height: 250px;
    padding: 40px 44px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    border: 1px solid var(--border);
    border-radius: 21px;

    background:
        radial-gradient(circle at 86% 50%, rgba(var(--primary-rgb), .10), transparent 25%),
        rgba(10,10,18,.78);

    box-shadow:
        0 26px 80px rgba(0,0,0,.30),
        inset 0 1px 0 rgba(255,255,255,.018);
}

.pricing-panel > div {
    max-width: 630px;
}

.pricing-button {
    min-width: 185px;
}

footer {
    position: relative;
    z-index: 3;
    border-top: 1px solid rgba(255,255,255,.045);
}

.footer-inner {
    width: min(1180px, calc(100% - 48px));
    min-height: 100px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #676774;
    font-size: 11px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 9px;

    color: #A5A5B0;
    font-weight: 780;
}

.footer-brand img {
    width: 30px !important;
    height: 30px !important;
    max-width: 30px !important;
    max-height: 30px !important;

    object-fit: contain;
    pointer-events: none;

    filter: drop-shadow(0 0 8px rgba(var(--primary-rgb), .35));
}

.logo-protect {
    user-select: none;
    -webkit-user-select: none;
}

@media (max-width: 850px) {
    .nav-pill {
        min-width: 0;
        width: fit-content;
    }

    .nav-links {
        display: none;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .workflow-track {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .workflow-line {
        width: 1px;
        height: 26px;
        margin: 0 auto;

        background: linear-gradient(
            180deg,
            transparent,
            rgba(var(--primary-rgb), .46),
            transparent
        );
    }
}

@media (max-width: 620px) {
    .site-header {
        top: 10px;
        padding: 0 10px;
    }

    .nav-pill {
        width: 100%;
        justify-content: space-between;
        border-radius: 15px;
    }

    .brand-name,
    .nav-signin {
        display: none;
    }

    .nav-brand {
        padding-right: 4px;
    }

    .nav-cta {
        min-height: 36px;
        padding: 0 12px;
        font-size: 10px;
    }

    .hero {
        padding: 105px 15px 60px;
    }

    .hero-badge {
        font-size: 8px;
        padding: 0 11px;
    }

    .hero h1 {
        font-size: clamp(44px, 15vw, 64px);
        letter-spacing: -3.3px;
    }

    .hero-copy {
        font-size: 14px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-button {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        width: min(360px, 100%);
    }

    .stat-card {
        min-height: 105px;
    }

    .hero-back-logo {
        width: 90vw;
        opacity: .045;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .section {
        width: min(100% - 28px, 1180px);
        padding: 76px 0;
    }

    .pricing-panel {
        padding: 30px 23px;
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-button {
        width: 100%;
    }

    .footer-inner {
        width: min(100% - 28px, 1180px);
        padding: 24px 0;

        flex-direction: column;
        justify-content: center;
        gap: 11px;

        text-align: center;
    }
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
    #cursorFx {
        display: none;
    }

    .hero-particle {
        animation: none;
    }
}

/* ========================================================================== */
/* NEURAL AUTH LANDING V4                                                     */
/* ========================================================================== */

/* Live platform stats */
.hero-stats {
    width: min(900px, 100%);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 42px;
}

.stat-card {
    min-height: 126px;
    padding: 18px 14px;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: radial-gradient(circle at 50% 0%, rgba(var(--primary-rgb), .12), transparent 56%);
    transition: opacity .22s ease;
    pointer-events: none;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 9px;
    border-radius: 10px;
    transform: none;
}

.stat-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.stat-card:nth-child(4) .stat-icon svg {
    fill: currentColor;
    stroke: none;
}

.stat-card strong {
    font-size: 24px;
    font-variant-numeric: tabular-nums;
}

.platform-live {
    width: fit-content;
    max-width: 100%;
    margin: 13px auto 0;
    padding: 7px 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid rgba(255,255,255,.055);
    border-radius: 999px;
    background: rgba(8,8,15,.56);
    color: #777786;
    font-size: 9px;
    font-weight: 760;
    letter-spacing: .45px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.platform-live b {
    color: #A69BFF;
    font-weight: 900;
}

.platform-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #F0B35B;
    box-shadow: 0 0 10px rgba(240,179,91,.45);
}

.platform-live.is-online .platform-live-dot {
    background: #4FE39A;
    box-shadow: 0 0 10px rgba(79,227,154,.48);
}

.platform-live.is-offline .platform-live-dot {
    background: #FF6C79;
    box-shadow: 0 0 10px rgba(255,108,121,.46);
}

.platform-live-separator {
    color: rgba(255,255,255,.22);
}

/* Expanded Neural Auth capabilities */
.feature-grid-expanded .feature-card {
    min-height: 218px;
}

.premium-feature-card {
    background:
        radial-gradient(circle at 82% 12%, rgba(var(--primary-rgb), .08), transparent 35%),
        linear-gradient(180deg, rgba(var(--primary-rgb), .025), transparent),
        rgba(10,10,17,.74);
}

.premium-feature-card .feature-index {
    color: #9D8BFF;
}

/* AuthCloud-style moving ecosystem strip */
.capability-marquee {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 46px 0 50px;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.045);
    border-bottom: 1px solid rgba(255,255,255,.045);
    background:
        radial-gradient(circle at 50% 0%, rgba(var(--primary-rgb), .045), transparent 42%),
        #070711;
}

.capability-marquee-kicker {
    margin: 0 auto 26px;
    padding: 0 24px;
    text-align: center;
    color: #8E8AA9;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.7px;
}

.marquee-window {
    position: relative;
    overflow: hidden;
}

.marquee-window::before,
.marquee-window::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: min(14vw, 190px);
    pointer-events: none;
}

.marquee-window::before {
    left: 0;
    background: linear-gradient(90deg, #070711, transparent);
}

.marquee-window::after {
    right: 0;
    background: linear-gradient(270deg, #070711, transparent);
}

.marquee-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 7px;
    animation: neuralMarquee 34s linear infinite;
    will-change: transform;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.capability-chip {
    min-width: 164px;
    height: 52px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(255,255,255,.065);
    border-radius: 13px;
    background: rgba(10,10,19,.78);
    color: #C9C8D1;
    font-size: 12px;
    font-weight: 780;
    white-space: nowrap;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.015);
}

.capability-chip-icon {
    min-width: 28px;
    height: 28px;
    padding: 0 6px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(var(--primary-rgb), .24);
    border-radius: 9px;
    background: rgba(var(--primary-rgb), .075);
    color: #9A87FF;
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .25px;
}

@keyframes neuralMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 7px)); }
}

/* Partner pricing */
.pricing-section {
    width: min(1240px, calc(100% - 48px));
    padding-top: 98px;
}

.pricing-heading {
    width: min(760px, 100%);
    margin-bottom: 34px;
}

.billing-toggle {
    width: fit-content;
    margin: 28px auto 0;
    padding: 4px;
    display: flex;
    align-items: center;
    gap: 3px;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 999px;
    background: rgba(12,12,22,.86);
    box-shadow: 0 10px 35px rgba(0,0,0,.22);
}

.billing-option {
    min-height: 38px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #868594;
    font: inherit;
    font-size: 12px;
    font-weight: 830;
    cursor: pointer;
    transition: color .18s ease, background .18s ease, box-shadow .18s ease;
}

.billing-option:hover {
    color: #D5D3E0;
}

.billing-option.active {
    color: #C5BAFF;
    background: rgba(var(--primary-rgb), .14);
    box-shadow: inset 0 0 0 1px rgba(var(--primary-rgb), .28);
}

.billing-option span {
    padding: 3px 7px;
    border: 1px solid rgba(var(--primary-rgb), .28);
    border-radius: 999px;
    background: rgba(var(--primary-rgb), .12);
    color: #9F8DFF;
    font-size: 8px;
    font-weight: 930;
    letter-spacing: .3px;
}

.partner-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.partner-plan-card {
    position: relative;
    min-height: 470px;
    padding: 27px 26px 24px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 19px;
    background:
        radial-gradient(circle at 84% 0%, rgba(var(--primary-rgb), .055), transparent 34%),
        rgba(9,9,17,.78);
    box-shadow:
        0 22px 58px rgba(0,0,0,.22),
        inset 0 1px 0 rgba(255,255,255,.018);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.partner-plan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--primary-rgb), .28);
    box-shadow:
        0 26px 70px rgba(0,0,0,.28),
        0 0 42px rgba(var(--primary-rgb), .045),
        inset 0 1px 0 rgba(255,255,255,.025);
}

.partner-plan-card.featured {
    border-color: rgba(var(--primary-rgb), .52);
    background:
        radial-gradient(circle at 50% -5%, rgba(var(--primary-rgb), .15), transparent 42%),
        rgba(10,10,20,.90);
    box-shadow:
        0 24px 72px rgba(0,0,0,.30),
        0 0 48px rgba(var(--primary-rgb), .08),
        inset 0 1px 0 rgba(255,255,255,.035);
}

.plan-popular {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 27px;
    display: grid;
    place-items: center;
    background: rgba(var(--primary-rgb), .95);
    color: #FFFFFF;
    font-size: 8px;
    font-weight: 950;
    letter-spacing: 1.35px;
}

.partner-plan-card.featured {
    padding-top: 44px;
}

.plan-topline {
    display: flex;
    align-items: center;
    gap: 13px;
}

.plan-product-icon {
    flex: 0 0 auto;
    min-width: 43px;
    height: 43px;
    padding: 0 8px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(var(--primary-rgb), .25);
    border-radius: 12px;
    background: rgba(var(--primary-rgb), .075);
    color: #9B88FF;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .3px;
}

.plan-type {
    display: block;
    margin-bottom: 4px;
    color: #6E6D7B;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.1px;
}

.plan-topline h3 {
    margin: 0;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: -.45px;
}

.plan-price {
    min-height: 61px;
    margin-top: 27px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.plan-currency {
    color: #A898FF;
    font-size: 18px;
    font-weight: 900;
}

.plan-price-value {
    color: #FFFFFF;
    font-size: 34px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -1.35px;
    font-variant-numeric: tabular-nums;
}

.plan-price-value.is-custom {
    font-size: 25px;
    letter-spacing: -.75px;
}

.plan-period {
    color: #656473;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .4px;
}

.plan-currency-code {
    margin-top: -3px;
    color: #5E5D6A;
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .75px;
}

.plan-features {
    margin: 27px 0 28px;
    padding: 0;
    display: grid;
    gap: 12px;
    list-style: none;
}

.plan-features li {
    position: relative;
    padding-left: 22px;
    color: #AAA9B5;
    font-size: 12px;
    line-height: 1.45;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    color: #8D78FF;
    font-weight: 950;
}

.plan-cta {
    min-height: 45px;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(var(--primary-rgb), .34);
    border-radius: 12px;
    background: rgba(var(--primary-rgb), .09);
    color: #DAD5FF;
    font-size: 10px;
    font-weight: 930;
    letter-spacing: .4px;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.partner-plan-card.featured .plan-cta {
    border-color: rgba(var(--primary-rgb), .78);
    background: var(--primary);
    color: #FFFFFF;
    box-shadow: 0 12px 30px rgba(var(--primary-rgb), .20);
}

.plan-cta:hover {
    transform: translateY(-1px);
    border-color: rgba(var(--primary-rgb), .58);
    background: rgba(var(--primary-rgb), .14);
}

.partner-plan-card.featured .plan-cta:hover {
    background: #846DFF;
}

.partner-pricing-grid > .partner-plan-card:last-child:nth-child(3n + 1) {
    grid-column: 2;
}

.pricing-note {
    width: fit-content;
    margin: 22px auto 0;
    padding: 9px 13px;
    border: 1px solid rgba(255,255,255,.055);
    border-radius: 999px;
    background: rgba(10,10,17,.52);
    color: #6D6C78;
    font-size: 10px;
}

.pricing-note code {
    color: #9687EA;
}

@media (max-width: 1000px) {
    .hero-stats {
        width: min(650px, 100%);
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .partner-pricing-grid > .partner-plan-card:last-child:nth-child(3n + 1) {
        grid-column: auto;
    }
}

@media (max-width: 620px) {
    .hero-stats {
        width: min(380px, 100%);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .stat-card {
        min-height: 112px;
        padding: 14px 8px;
    }

    .stat-card strong {
        font-size: 21px;
    }

    .stat-card span {
        font-size: 8px;
    }

    .platform-live {
        flex-wrap: wrap;
        font-size: 8px;
    }

    .feature-grid-expanded {
        grid-template-columns: 1fr;
    }

    .capability-marquee {
        padding: 38px 0 42px;
    }

    .capability-chip {
        min-width: 148px;
        height: 48px;
        font-size: 11px;
    }

    .pricing-section {
        width: min(100% - 28px, 1240px);
        padding-top: 76px;
    }

    .billing-toggle {
        width: 100%;
        max-width: 330px;
    }

    .billing-option {
        flex: 1 1 0;
        padding: 0 11px;
        font-size: 11px;
    }

    .billing-option span {
        font-size: 7px;
        padding: 3px 5px;
    }

    .partner-pricing-grid {
        grid-template-columns: 1fr;
    }

    .partner-plan-card {
        min-height: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
        transform: none;
    }

    .marquee-window {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .marquee-window::-webkit-scrollbar {
        display: none;
    }
}

/* ========================================================================== */
/* Neural Auth V5 - Pricing configurator                                      */
/* ========================================================================== */
.pricing-mode-toggle {
    width: fit-content;
    margin: 30px auto 0;
    padding: 5px;
    display: flex;
    gap: 4px;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 14px;
    background: rgba(10,10,18,.88);
    box-shadow: 0 16px 45px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.02);
}

.pricing-mode {
    min-height: 42px;
    padding: 0 20px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #777685;
    font: inherit;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .65px;
    cursor: pointer;
    transition: .18s ease;
}

.pricing-mode:hover { color: #D9D6E6; }
.pricing-mode.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(var(--primary-rgb),.95), rgba(var(--primary-rgb),.68));
    box-shadow: 0 10px 28px rgba(var(--primary-rgb),.22), inset 0 1px 0 rgba(255,255,255,.18);
}

.pricing-view { margin-top: 32px; }
.pricing-view[hidden] { display: none !important; }

.pricing-view-head {
    min-height: 84px;
    margin-bottom: 16px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid rgba(255,255,255,.055);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(16,16,27,.72), rgba(8,8,15,.68));
}

.pricing-view-head h3 {
    margin: 4px 0 5px;
    color: #fff;
    font-size: 21px;
    letter-spacing: -.5px;
}

.pricing-view-head p {
    margin: 0;
    color: #858493;
    font-size: 12px;
}

.pricing-eyebrow {
    color: #9684FF;
    font-size: 8px;
    font-weight: 950;
    letter-spacing: 1.45px;
}

.pricing-configurator {
    display: grid;
    grid-template-columns: minmax(250px, .72fr) minmax(0, 1.45fr);
    gap: 16px;
    align-items: stretch;
}

.project-selector {
    padding: 10px;
    display: grid;
    align-content: start;
    gap: 8px;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 18px;
    background: rgba(8,8,15,.78);
    box-shadow: 0 20px 55px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.018);
}

.project-option {
    width: 100%;
    min-height: 55px;
    padding: 8px 10px;
    display: grid;
    grid-template-columns: 39px 1fr 22px;
    align-items: center;
    gap: 11px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    color: #AAA9B7;
    text-align: left;
    font: inherit;
    font-size: 11px;
    font-weight: 830;
    cursor: pointer;
    transition: transform .16s ease, color .16s ease, background .16s ease, border-color .16s ease;
}

.project-option:hover {
    transform: translateX(2px);
    color: #F0EEFA;
    background: rgba(255,255,255,.025);
}

.project-option.active {
    color: #fff;
    border-color: rgba(var(--primary-rgb),.32);
    background: linear-gradient(90deg, rgba(var(--primary-rgb),.14), rgba(var(--primary-rgb),.045));
    box-shadow: inset 3px 0 0 rgba(var(--primary-rgb),.9);
}

.project-option-icon {
    min-width: 39px;
    height: 39px;
    padding: 0 5px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(var(--primary-rgb),.22);
    border-radius: 10px;
    background: rgba(var(--primary-rgb),.07);
    color: #9D8BFF;
    font-size: 8px;
    font-weight: 950;
}

.project-option.active .project-option-icon {
    border-color: rgba(var(--primary-rgb),.48);
    background: rgba(var(--primary-rgb),.16);
    color: #C9BFFF;
}

.project-option-arrow {
    color: #555462;
    font-size: 16px;
    transition: transform .16s ease, color .16s ease;
}
.project-option.active .project-option-arrow { transform: translateX(2px); color: #9D8BFF; }

.pricing-detail-card {
    position: relative;
    min-height: 490px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(var(--primary-rgb),.24);
    border-radius: 20px;
    background:
        radial-gradient(circle at 86% 3%, rgba(var(--primary-rgb),.12), transparent 32%),
        radial-gradient(circle at 5% 100%, rgba(var(--primary-rgb),.055), transparent 30%),
        rgba(9,9,18,.9);
    box-shadow: 0 28px 78px rgba(0,0,0,.29), inset 0 1px 0 rgba(255,255,255,.025);
}

.pricing-detail-card::after {
    content: "";
    position: absolute;
    right: -90px;
    top: -110px;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(var(--primary-rgb),.10);
    border-radius: 50%;
    box-shadow: 0 0 80px rgba(var(--primary-rgb),.06);
    pointer-events: none;
}

.detail-badge {
    width: fit-content;
    margin-bottom: 23px;
    padding: 6px 10px;
    border: 1px solid rgba(var(--primary-rgb),.24);
    border-radius: 999px;
    background: rgba(var(--primary-rgb),.075);
    color: #A795FF;
    font-size: 8px;
    font-weight: 950;
    letter-spacing: 1.1px;
}

.detail-badge.premium {
    background: rgba(var(--primary-rgb),.14);
    box-shadow: 0 0 26px rgba(var(--primary-rgb),.05);
}

.detail-title-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.detail-project-icon {
    min-width: 52px;
    height: 52px;
    padding: 0 7px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(var(--primary-rgb),.32);
    border-radius: 14px;
    background: rgba(var(--primary-rgb),.10);
    color: #AA98FF;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .35px;
}

.detail-label {
    color: #626170;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.15px;
}

.detail-title-row h3 {
    margin: 4px 0 0;
    color: #fff;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -.7px;
}

.duration-selector {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.duration-option {
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 9px;
    background: rgba(255,255,255,.025);
    color: #7E7D8A;
    font: inherit;
    font-size: 9px;
    font-weight: 900;
    cursor: pointer;
    transition: .16s ease;
}

.duration-option:hover { color: #D7D4E4; border-color: rgba(var(--primary-rgb),.2); }
.duration-option.active {
    border-color: rgba(var(--primary-rgb),.45);
    background: rgba(var(--primary-rgb),.14);
    color: #DAD2FF;
}

.detail-price-row {
    min-height: 70px;
    margin-top: 28px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.detail-price-row strong {
    color: #fff;
    font-size: 42px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -1.7px;
    font-variant-numeric: tabular-nums;
}
.detail-price-row strong.is-contact { font-size: 30px; letter-spacing: -.9px; }
.detail-currency { color: #A796FF; font-size: 21px; font-weight: 950; }
.detail-period { color: #666574; font-size: 9px; font-weight: 850; letter-spacing: .45px; }
.detail-price-meta { margin-top: -5px; color: #5C5B69; font-size: 8px; font-weight: 850; letter-spacing: .8px; }

.detail-features {
    margin: 28px 0 28px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 12px 18px;
    list-style: none;
}

.detail-features li {
    position: relative;
    padding-left: 21px;
    color: #AAA9B5;
    font-size: 11px;
    line-height: 1.45;
}
.detail-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #9581FF;
    font-weight: 950;
}

.detail-cta {
    min-height: 48px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid rgba(var(--primary-rgb),.38);
    border-radius: 12px;
    background: rgba(var(--primary-rgb),.10);
    color: #DCD6FF;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .45px;
    transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
}
.detail-cta:hover { transform: translateY(-1px); background: rgba(var(--primary-rgb),.16); }
.detail-cta.primary {
    background: linear-gradient(135deg, rgba(var(--primary-rgb),1), rgba(var(--primary-rgb),.72));
    border-color: rgba(var(--primary-rgb),.8);
    color: #fff;
    box-shadow: 0 13px 34px rgba(var(--primary-rgb),.18);
}

.detail-footnote {
    margin-top: 12px;
    color: #585765;
    font-size: 8px;
    line-height: 1.45;
    text-align: center;
}

.seller-view-head .billing-toggle { margin: 0; }

@media (max-width: 900px) {
    .pricing-configurator { grid-template-columns: 1fr; }
    .project-selector { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .seller-view-head { align-items: flex-start; flex-direction: column; }
    .seller-view-head .billing-toggle { width: fit-content; }
}

@media (max-width: 620px) {
    .pricing-mode-toggle { width: 100%; max-width: 350px; }
    .pricing-mode { flex: 1 1 0; padding: 0 10px; font-size: 9px; }
    .pricing-view-head { padding: 16px; }
    .pricing-view-head h3 { font-size: 18px; }
    .project-selector { grid-template-columns: 1fr; }
    .pricing-detail-card { min-height: 0; padding: 23px 19px; }
    .detail-title-row h3 { font-size: 20px; }
    .detail-price-row strong { font-size: 36px; }
    .detail-price-row strong.is-contact { font-size: 26px; }
    .detail-features { grid-template-columns: 1fr; }
    .seller-view-head .billing-toggle { width: 100%; }
}


/* ========================================================================== */
/* NEURAL AUTH LIVE STATS + PRICING COMPACT FIX V5.2                         */
/* ========================================================================== */

/* Cinco métricas en una sola fila en desktop. */
.hero-stats {
    width: min(1080px, 100%);
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

/* El indicador queda visualmente separado de las tarjetas. */
.platform-live {
    margin-top: 28px;
}

/* .section heredaba 105px abajo; en Pricing ese espacio se veía vacío. */
.pricing-section {
    padding-bottom: 30px;
}

@media (max-width: 1100px) {
    .hero-stats {
        width: min(820px, 100%);
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .hero-stats {
        width: min(430px, 100%);
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .platform-live {
        margin-top: 22px;
    }

    .pricing-section {
        padding-bottom: 22px;
    }
}

@media (max-width: 420px) {
    .hero-stats {
        grid-template-columns: 1fr;
        width: min(340px, 100%);
    }
}


/* ========================================================================== */
/* PROFESSIONAL FOOTER + OWNER PAGE V5.3                                      */
/* ========================================================================== */
.site-footer {
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(255,255,255,.055);
    background:
        radial-gradient(circle at 50% -40%, rgba(var(--primary-rgb), .10), transparent 44%),
        linear-gradient(180deg, rgba(7,7,13,.98), #05050a 78%);
}

.footer-shell {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(180px, .72fr) minmax(250px, .88fr);
    gap: 72px;
    padding: 42px 0 34px;
}

.footer-about { max-width: 410px; }
.footer-about .footer-brand { width: fit-content; text-decoration: none; }
.footer-about p {
    margin: 16px 0 18px;
    max-width: 390px;
    color: #777785;
    font-size: 11px;
    line-height: 1.7;
}
.footer-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8f8d9f;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.footer-status i {
    width: 7px; height: 7px; border-radius: 50%;
    background: #3ee6a0;
    box-shadow: 0 0 12px rgba(62,230,160,.55);
}
.footer-column { display: flex; flex-direction: column; gap: 9px; }
.footer-heading {
    margin-bottom: 7px;
    color: #a7a5b5;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.footer-link {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    border: 1px solid transparent;
    border-radius: 10px;
    color: #a2a0af;
    text-decoration: none;
    font-size: 11px;
    font-weight: 650;
    transition: .2s ease;
}
.footer-link:hover {
    color: #fff;
    border-color: rgba(var(--primary-rgb), .28);
    background: rgba(var(--primary-rgb), .075);
    transform: translateY(-1px);
}
.footer-link img, .footer-link svg {
    width: 16px; height: 16px; flex: 0 0 auto;
    fill: none; stroke: currentColor; stroke-width: 1.7;
}
.footer-link img { object-fit: contain; }
.footer-link b { margin-left: auto; color: rgba(var(--primary-rgb), .9); font-size: 12px; }
.footer-owner-link svg { fill: currentColor; stroke: none; }
.footer-bottom {
    min-height: 58px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.045);
    color: #5e5d69;
    font-size: 9px;
}
.footer-bottom-center {
    color: #77758a;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .15em;
}
.footer-bottom a {
    justify-self: end;
    color: #8c89a0;
    text-decoration: none;
    font-weight: 700;
}
.footer-bottom a:hover { color: #fff; }
.footer-bottom a b { color: rgb(var(--primary-rgb)); }

/* Cache-loaded stats should look final immediately; no animation/flicker on refresh. */
.stat-card strong { min-width: 4ch; }

/* Dedicated owner page: intentionally no navbar or other landing sections. */
.owner-page {
    min-height: 100vh;
    background: #05050a;
}
.owner-main {
    position: relative;
    min-height: calc(100vh - 59px);
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: 62px 24px;
    background:
        radial-gradient(circle at 50% 20%, rgba(var(--primary-rgb), .18), transparent 33%),
        linear-gradient(180deg, #080711 0%, #05050a 78%);
}
.owner-grid-bg {
    position: absolute; inset: 0;
    opacity: .22;
    background-image:
        linear-gradient(rgba(var(--primary-rgb),.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--primary-rgb),.12) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 86%);
}
.owner-orb { position: absolute; width: 340px; height: 340px; border-radius: 50%; filter: blur(90px); opacity: .11; background: rgb(var(--primary-rgb)); }
.owner-orb-one { left: -140px; top: 22%; }
.owner-orb-two { right: -160px; bottom: 8%; }
.owner-section { position: relative; z-index: 2; width: min(980px, 100%); }
.owner-back {
    display: inline-flex; align-items: center; gap: 8px;
    margin-bottom: 34px;
    color: #7e7b90; text-decoration: none; font-size: 10px; font-weight: 700;
}
.owner-back:hover { color: #fff; }
.owner-heading { text-align: center; margin-bottom: 34px; }
.owner-kicker { color: rgb(var(--primary-rgb)); font-size: 9px; font-weight: 900; letter-spacing: .17em; }
.owner-heading h1 { margin: 12px 0 8px; color: #fff; font-size: clamp(32px, 5vw, 52px); line-height: 1.02; }
.owner-heading h1 span { color: rgb(var(--primary-rgb)); }
.owner-heading p { margin: 0; color: #8b8998; font-size: 13px; }
.owner-cards { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.owner-card {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border: 1px solid rgba(var(--primary-rgb), .32);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(18,16,31,.96), rgba(8,8,15,.97));
    box-shadow: 0 24px 70px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.025);
}
.owner-card::after {
    content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%;
    right: -100px; top: -120px; border: 1px solid rgba(var(--primary-rgb), .14);
}
.owner-card-secondary { border-color: rgba(58,190,255,.34); }
.owner-card-top { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.055); }
.owner-role-badge { padding: 8px 11px; border: 1px solid rgba(var(--primary-rgb), .42); border-radius: 999px; color: rgb(var(--primary-rgb)); font-size: 8px; font-weight: 900; letter-spacing: .08em; }
.owner-brand-mini { color: #666574; font-size: 8px; font-weight: 800; letter-spacing: .07em; }
.owner-profile { position: relative; z-index: 1; display: flex; align-items: center; gap: 16px; padding: 22px 0 18px; }
.owner-avatar { width: 72px; height: 72px; display: grid; place-items: center; flex: 0 0 72px; border-radius: 20px; border: 1px solid rgba(var(--primary-rgb), .4); background: rgba(var(--primary-rgb), .075); }
.owner-avatar img { width: 52px; height: 52px; object-fit: contain; }
.owner-dev-avatar { color: rgb(var(--primary-rgb)); font-size: 20px; font-weight: 900; }
.owner-profile h2 { margin: 0 0 5px; color: #fff; font-size: 21px; }
.owner-profile h2 i { color: #40e5a4; font-style: normal; font-size: 13px; }
.owner-profile div > span { color: #797789; font-size: 11px; }
.owner-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 17px; }
.owner-tags span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.08); border-radius: 8px; background: rgba(255,255,255,.025); color: #aaa8b6; font-size: 9px; font-weight: 700; }
.owner-contact-row { min-height: 52px; display: flex; align-items: center; gap: 10px; padding: 0 14px; border: 1px solid rgba(255,255,255,.085); border-radius: 11px; background: rgba(255,255,255,.025); color: #b8b6c1; text-decoration: none; font-size: 11px; font-weight: 700; }
.owner-contact-row img, .owner-contact-row svg { width: 17px; height: 17px; object-fit: contain; fill: none; stroke: currentColor; stroke-width: 1.7; }
.owner-contact-row b { margin-left: auto; color: rgb(var(--primary-rgb)); }
.owner-action { min-height: 48px; margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 10px; border-radius: 11px; background: linear-gradient(90deg, rgb(var(--primary-rgb)), rgba(var(--primary-rgb), .72)); color: #fff; text-decoration: none; font-size: 10px; font-weight: 900; letter-spacing: .04em; box-shadow: 0 12px 30px rgba(var(--primary-rgb), .18); }
.owner-action:hover { filter: brightness(1.08); transform: translateY(-1px); }
.owner-footer .footer-shell { width: min(980px, calc(100% - 48px)); }
.owner-footer-bottom { grid-template-columns: 1fr 1fr; }
.owner-footer-bottom a { justify-self: end; }

@media (max-width: 850px) {
    .footer-main { grid-template-columns: 1fr 1fr; gap: 34px; }
    .footer-about { grid-column: 1 / -1; max-width: none; }
    .footer-bottom { grid-template-columns: 1fr auto; }
    .footer-bottom-center { display: none; }
    .owner-cards { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .footer-shell { width: min(100% - 32px, 1180px); }
    .footer-main { grid-template-columns: 1fr; gap: 28px; padding: 34px 0 28px; }
    .footer-about { grid-column: auto; }
    .footer-bottom { grid-template-columns: 1fr; gap: 8px; padding: 15px 0; }
    .footer-bottom a { justify-self: start; }
    .owner-main { padding: 42px 16px; }
    .owner-card { padding: 20px; }
    .owner-card-top { align-items: flex-start; flex-direction: column; gap: 8px; }
    .owner-footer-bottom { grid-template-columns: 1fr; }
}
\n\n/* ========================================================================== */\n/* FOOTER COMPACT + STATUS SOURCE FIX V5.4                                    */\n/* ========================================================================== */\n\n/* Pricing ends cleanly at the footer; no empty strip between sections. */\n.pricing-section {\n    padding-bottom: 8px;\n}\n\n.site-footer {\n    margin-top: 0;\n}\n\n/* More compact, balanced footer. */\n.footer-main {\n    align-items: start;\n    gap: 56px;\n    padding: 22px 0 16px;\n}\n\n.footer-about p {\n    margin: 10px 0 0;\n    line-height: 1.55;\n}\n\n/* The crossed-out Neural Auth ecosystem badge was removed from HTML. */\n.footer-column {\n    gap: 0;\n}\n\n.footer-heading {\n    margin-bottom: 5px;\n}\n\n.footer-link {\n    min-height: 32px;\n    padding: 0 4px;\n    border-radius: 7px;\n}\n\n.footer-support-column .footer-link + .footer-link {\n    margin-top: 0;\n}\n\n.footer-bottom {\n    min-height: 40px;\n    gap: 16px;\n}\n\n@media (max-width: 900px) {\n    .footer-main {\n        gap: 22px;\n        padding: 20px 0 14px;\n    }\n}\n\n@media (max-width: 720px) {\n    .pricing-section {\n        padding-bottom: 4px;\n    }\n\n    .footer-main {\n        gap: 18px;\n        padding: 18px 0 12px;\n    }\n\n    .footer-bottom {\n        min-height: 38px;\n        padding: 8px 0;\n    }\n}\n

/* ========================================================================== */
/* NAV + FOOTER REFINEMENT V5.5                                               */
/* ========================================================================== */

/* Navbar: remove the artificial empty area on the right and keep Portal close. */
.nav-pill {
    min-width: 0;
    width: max-content;
    padding-right: 6px;
}

.nav-links a.nav-download {
    color: #aaa8b8;
}

.nav-links a.nav-download:hover {
    color: #fff;
    background: rgba(var(--primary-rgb), .07);
}

.nav-cta {
    margin-left: 4px;
}

/* Footer: bring Platform closer to the brand and use Support as one horizontal row. */
.footer-main {
    grid-template-columns: minmax(330px, 1.08fr) 190px minmax(390px, 1.20fr);
    column-gap: 28px;
}

.footer-owner-column {
    justify-self: start;
    width: 190px;
}

.footer-support-column {
    min-width: 0;
}

.footer-support-links {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
}

.footer-support-links .footer-link {
    width: auto;
    min-width: 0;
    padding: 0 8px;
    white-space: nowrap;
}

/* No decorative arrows in footer navigation. */
.footer-main .footer-link b,
.footer-bottom a b {
    display: none !important;
}

@media (max-width: 980px) {
    .footer-main {
        grid-template-columns: 1fr 180px;
        column-gap: 24px;
        row-gap: 18px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .footer-support-column {
        min-width: 420px;
    }
}

@media (max-width: 720px) {
    .nav-pill {
        width: min(100%, max-content);
        max-width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-owner-column,
    .footer-support-column {
        width: 100%;
        min-width: 0;
    }

    .footer-support-links {
        flex-wrap: wrap;
        gap: 4px 12px;
    }
}


/* ========================================================================== */
/* SINGLE-PAGE OWNER + SECURE DOWNLOAD CENTER V5.6                            */
/* ========================================================================== */

/* Product selector should end after its last item instead of stretching to the
   height of the detail card. This removes the empty block visible underneath. */
.pricing-configurator {
    align-items: start;
}
.project-selector {
    align-self: start;
}

/* Tighter transition from Pricing into Footer. */
.pricing-section {
    padding-bottom: 0 !important;
}
.site-footer {
    margin-top: 0 !important;
}
.footer-main {
    padding-top: 15px !important;
    padding-bottom: 10px !important;
}
.footer-bottom {
    min-height: 34px !important;
}
.footer-about p {
    margin-top: 7px !important;
    margin-bottom: 0 !important;
}
.footer-heading {
    margin-bottom: 2px !important;
}
.footer-link {
    min-height: 28px !important;
}
.footer-support-links {
    gap: 10px !important;
}

/* Special sections live inside index.php. Header remains visible. */
.special-page[hidden], [data-landing-main][hidden] {
    display: none !important;
}
.special-page {
    position: relative;
    min-height: calc(100vh - 105px);
    overflow: hidden;
    padding: 108px 24px 34px;
    background:
        radial-gradient(circle at 50% 8%, rgba(var(--primary-rgb), .15), transparent 32%),
        linear-gradient(180deg, #080711 0%, #05050a 72%);
}
.special-page-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .16;
    background-image:
        linear-gradient(rgba(var(--primary-rgb),.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--primary-rgb),.09) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.70), transparent 80%);
}
.special-shell {
    position: relative;
    z-index: 2;
    width: min(1120px, 100%);
    margin: 0 auto;
}
.special-back {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    color: #7e7b90;
    text-decoration: none;
    font-size: 10px;
    font-weight: 750;
}
.special-back:hover { color: #fff; }
.special-heading {
    text-align: center;
    margin-bottom: 23px;
}
.special-kicker {
    color: rgb(var(--primary-rgb));
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .17em;
}
.special-heading h2 {
    margin: 10px 0 7px;
    color: #fff;
    font-size: clamp(30px, 4.5vw, 48px);
    line-height: 1.02;
}
.special-heading h2 span { color: rgb(var(--primary-rgb)); }
.special-heading p { margin: 0; color: #858392; font-size: 12px; }

/* Owner now behaves as an in-page hidden view rather than owner.php. */
.owner-inline-shell {
    width: min(980px, 100%);
}
.owner-inline-page .owner-heading {
    margin: 2px 0 24px;
}
.owner-inline-page .owner-heading h1 {
    font-size: clamp(32px, 4.7vw, 50px);
}
.owner-inline-page .owner-card {
    padding: 23px;
}
.owner-inline-page .owner-profile {
    padding: 18px 0 15px;
}
.owner-inline-page .owner-contact-row {
    min-height: 48px;
}
.owner-inline-page .owner-action {
    min-height: 44px;
    margin-top: 11px;
}
/* Discord asset in Owner must render white regardless of its source SVG fill. */
.owner-inline-page .owner-discord-row img {
    filter: brightness(0) invert(1);
    opacity: 1;
}

/* Download center */
.download-shell { width: min(1060px, 100%); }
.download-center {
    display: grid;
    grid-template-columns: minmax(270px, .72fr) minmax(0, 1.35fr);
    align-items: start;
    gap: 16px;
}
.download-products {
    padding: 10px;
    border: 1px solid rgba(255,255,255,.065);
    border-radius: 18px;
    background: rgba(8,8,15,.82);
    box-shadow: 0 20px 55px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.018);
}
.download-product {
    width: 100%;
    min-height: 52px;
    padding: 7px 9px;
    display: grid;
    grid-template-columns: 39px 1fr 18px;
    align-items: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 11px;
    background: transparent;
    color: #aaa9b7;
    text-align: left;
    font: inherit;
    font-size: 11px;
    font-weight: 820;
    cursor: pointer;
    transition: .18s ease;
}
.download-product + .download-product { margin-top: 3px; }
.download-product:hover { color: #fff; background: rgba(255,255,255,.025); }
.download-product.active {
    color: #fff;
    border-color: rgba(var(--primary-rgb),.45);
    background: linear-gradient(90deg, rgba(var(--primary-rgb),.12), rgba(var(--primary-rgb),.035));
    box-shadow: inset 3px 0 0 rgb(var(--primary-rgb));
}
.download-product-code {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(var(--primary-rgb),.30);
    border-radius: 10px;
    background: rgba(var(--primary-rgb),.075);
    color: #9a87ff;
    font-size: 8px;
    font-weight: 950;
}
.download-product-chevron { justify-self: end; color: #747180; font-size: 17px; }
.download-product.active .download-product-chevron { color: #9a87ff; }
.download-card {
    min-height: 420px;
    padding: 26px;
    border: 1px solid rgba(var(--primary-rgb),.30);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(18,16,31,.96), rgba(8,8,15,.97));
    box-shadow: 0 24px 70px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.025);
}
.download-title-row { margin-top: 18px; }
.license-verify-block {
    margin-top: 26px;
    padding-top: 21px;
    border-top: 1px solid rgba(255,255,255,.06);
}
.license-verify-block label {
    display: block;
    margin-bottom: 8px;
    color: #8f8c9f;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .14em;
}
.license-verify-row {
    display: grid;
    grid-template-columns: 1fr 128px;
    gap: 9px;
}
.license-verify-row input {
    min-width: 0;
    height: 48px;
    padding: 0 15px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 11px;
    outline: none;
    background: rgba(255,255,255,.025);
    color: #fff;
    font: inherit;
    font-size: 12px;
    letter-spacing: .035em;
}
.license-verify-row input:focus {
    border-color: rgba(var(--primary-rgb),.55);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb),.08);
}
.license-verify-row button, .download-action {
    border: 1px solid rgba(var(--primary-rgb),.45);
    border-radius: 11px;
    background: linear-gradient(135deg, rgb(var(--primary-rgb)), rgba(var(--primary-rgb),.72));
    color: #fff;
    font: inherit;
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .055em;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(var(--primary-rgb),.16);
}
.license-verify-row button:disabled, .download-action:disabled { opacity: .55; cursor: wait; }
.download-message {
    min-height: 18px;
    margin-top: 9px;
    color: #787687;
    font-size: 10px;
}
.download-message.is-loading { color: #a59bff; }
.download-message.is-success { color: #58dfa8; }
.download-message.is-error { color: #f07f9f; }
.download-ready {
    margin-top: 17px;
    padding: 14px;
    border: 1px solid rgba(62,230,160,.16);
    border-radius: 13px;
    background: rgba(62,230,160,.035);
}
.download-ready[hidden], .download-progress[hidden] { display: none !important; }
.download-verified { display: flex; align-items: center; gap: 10px; }
.download-verified > span {
    width: 30px; height: 30px; display: grid; place-items: center;
    border-radius: 9px; background: rgba(62,230,160,.11); color: #58dfa8; font-weight: 950;
}
.download-verified strong { display: block; color: #e9f4ef; font-size: 11px; }
.download-verified small { display: block; margin-top: 2px; color: #7f918a; font-size: 9px; }
.download-action { width: 100%; min-height: 45px; margin-top: 12px; }
.download-progress { margin-top: 14px; }
.download-progress-head { display: flex; justify-content: space-between; color: #aaa8b5; font-size: 9px; font-weight: 800; }
.download-progress-head strong { color: #fff; }
.download-progress-track { height: 8px; margin-top: 8px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.06); }
.download-progress-track i { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, rgba(var(--primary-rgb),.75), rgb(var(--primary-rgb))); transition: width .12s linear; }
.download-progress small { display: block; margin-top: 7px; color: #747180; font-size: 9px; }

@media (max-width: 850px) {
    .special-page { padding: 98px 16px 28px; }
    .download-center { grid-template-columns: 1fr; }
    .download-products { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 5px; }
    .download-product + .download-product { margin-top: 0; }
}
@media (max-width: 560px) {
    .download-products { grid-template-columns: 1fr; }
    .license-verify-row { grid-template-columns: 1fr; }
    .license-verify-row button { min-height: 44px; }
    .owner-inline-page .owner-card { padding: 18px; }
}


/* ========================================================================== */
/* V5.7 - HERO / LIVE MS / FOOTER ICON ALIGNMENT                              */
/* ========================================================================== */

/* Raise the complete hero block slightly to remove the oversized gap under
   the navigation without changing the internal proportions. */
@media (min-width: 721px) {
    .hero-content {
        transform: translateY(-24px);
    }
}

/* Give AUTH and its latency more breathing room. */
.platform-live {
    column-gap: 8px;
}
.platform-live-separator {
    margin-left: 3px;
    margin-right: 3px;
}
.platform-live > span:last-child {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.platform-live > span:last-child b {
    min-width: 36px;
    display: inline-block;
    text-align: left;
}

/* Footer links begin exactly at their column edge: no invisible left gutter
   before the shield/Discord/headset icons. */
.footer-owner-column .footer-link,
.footer-support-links .footer-link {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.footer-support-links {
    gap: 22px !important;
}
.footer-link {
    gap: 7px !important;
}

/* Discord is inline SVG now, so it inherits exactly the same neutral color
   as the shield/headset icon instead of rendering black/white. */
.footer-link .discord-current-icon,
.owner-contact-row .discord-current-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    fill: currentColor;
    stroke: none;
}
.owner-contact-row .discord-current-icon {
    width: 17px;
    height: 17px;
    flex-basis: 17px;
}

/* Undo the old white-only Discord filter; the new SVG uses currentColor. */
.owner-inline-page .owner-discord-row img {
    filter: none !important;
    opacity: 1;
}

/* Pull the footer content slightly upward and keep it compact. */
.footer-main {
    padding-top: 11px !important;
    padding-bottom: 8px !important;
}
.footer-bottom {
    min-height: 31px !important;
}

@media (max-width: 720px) {
    .hero-content {
        transform: translateY(-10px);
    }
    .footer-support-links {
        gap: 8px 16px !important;
    }
}


/* ========================================================================== */
/* V5.8 - MODERN PURPLE SCROLLBAR + FOOTER SPACING                            */
/* ========================================================================== */

/* Modern purple scrollbar. Firefox uses scrollbar-color/width; Chromium,
   Edge and Safari use the ::-webkit-scrollbar rules below. */
html {
    scrollbar-width: thin;
    scrollbar-color: #7658f6 #090910;
    scrollbar-gutter: stable;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: #090910;
    border-left: 1px solid rgba(255,255,255,.025);
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    min-height: 54px;
    border: 2px solid #090910;
    border-radius: 999px;
    background: linear-gradient(180deg, #9277ff 0%, #7658f6 48%, #5b43ce 100%);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.09), 0 0 14px rgba(118,88,246,.20);
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #a48cff 0%, #866cff 48%, #674ee0 100%);
}

html::-webkit-scrollbar-thumb:active,
body::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #b19cff 0%, #9277ff 50%, #7658f6 100%);
}

html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner {
    background: #090910;
}

/* Pricing/footer transition: keep a deliberate small breathing space instead
   of the oversized empty strips visible before. */
.pricing-section {
    padding-bottom: 7px !important;
}

.site-footer {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.footer-main {
    padding-top: 16px !important;
    padding-bottom: 11px !important;
    align-items: start;
}

.footer-about p {
    margin-top: 6px !important;
    margin-bottom: 0 !important;
    line-height: 1.48 !important;
}

.footer-heading {
    margin-bottom: 4px !important;
}

.footer-link {
    min-height: 27px !important;
}

.footer-bottom {
    min-height: 34px !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    margin-top: 0 !important;
}

@media (max-width: 720px) {
    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
        width: 7px;
        height: 7px;
    }

    .pricing-section {
        padding-bottom: 5px !important;
    }

    .footer-main {
        padding-top: 14px !important;
        padding-bottom: 9px !important;
    }

    .footer-bottom {
        min-height: 32px !important;
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }
}

/* ========================================================================== */
/* V5.9 - POLISHED SCROLLBAR + PRICING/FOOTER BALANCE                         */
/* ========================================================================== */

/* A slightly wider, cleaner scrollbar that matches the purple UI. */
html {
    scrollbar-width: auto;
    scrollbar-color: #775cff #08080f;
    scrollbar-gutter: stable;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #07070d, #0a0912);
    border-left: 1px solid rgba(255,255,255,.03);
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    min-height: 64px;
    border: 3px solid #08080f;
    border-radius: 999px;
    background: linear-gradient(180deg, #9a83ff 0%, #7b60ff 48%, #6547e6 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.15),
        0 0 12px rgba(123,96,255,.34);
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ae9cff 0%, #8d73ff 48%, #7357f2 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.18),
        0 0 18px rgba(123,96,255,.46);
}

html::-webkit-scrollbar-thumb:active,
body::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #c0b2ff 0%, #9a83ff 52%, #7b60ff 100%);
}

/* Keep both pricing columns on the same baseline. The left selector now fills
   the row instead of ending early and leaving a bare empty strip underneath. */
.pricing-configurator {
    align-items: stretch !important;
}

.project-selector {
    align-self: stretch !important;
    min-height: 490px;
}

/* Consistent transition into the footer: visible breathing room, but no large
   dead strip. */
.pricing-section {
    padding-bottom: 46px !important;
}

.site-footer {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.footer-main {
    padding-top: 18px !important;
    padding-bottom: 14px !important;
    align-items: start;
}

.footer-about p {
    margin-top: 7px !important;
    margin-bottom: 0 !important;
}

.footer-heading {
    margin-bottom: 5px !important;
}

.footer-link {
    min-height: 30px !important;
}

.footer-bottom {
    min-height: 38px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    margin-top: 0 !important;
}

@media (max-width: 900px) {
    .project-selector {
        min-height: 0;
    }
}

@media (max-width: 720px) {
    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    .pricing-section {
        padding-bottom: 28px !important;
    }

    .footer-main {
        padding-top: 15px !important;
        padding-bottom: 11px !important;
    }

    .footer-bottom {
        min-height: 34px !important;
        padding-top: 6px !important;
        padding-bottom: 6px !important;
    }
}


/* ========================================================================== */
/* V6.0 - MORE BREATHING ROOM BETWEEN PRICING AND FOOTER                    */
/* ========================================================================== */
.pricing-section {
    padding-bottom: 46px !important;
}

@media (max-width: 720px) {
    .pricing-section {
        padding-bottom: 28px !important;
    }
}


/* ========================================================================== */
/* V6.2 - DOWNLOAD URL FIX + LESS BOTTOM SPACE                                */
/* ========================================================================== */
/* Remove the oversized empty area under the download section while keeping
   enough breathing room above the footer. */
.special-page[data-special-view="download"] {
    min-height: auto !important;
    padding-top: 108px !important;
    padding-bottom: 12px !important;
}
.download-shell {
    margin-bottom: 10px !important;
}
.site-footer {
    margin-top: 0 !important;
}
/* Keep a small clean separation instead of a large empty block. */
.special-page[data-special-view="download"] + .site-footer .footer-main {
    padding-top: 10px !important;
}
@media (max-width: 850px) {
    .special-page[data-special-view="download"] {
        padding-top: 96px !important;
        padding-bottom: 10px !important;
    }
}


/* ========================================================================== */
/* V6.3 - DOWNLOAD VIEW FIT + MIXED CASE LICENSE INPUT                        */
/* ========================================================================== */
/* Make the download view end immediately after its content instead of reserving
   viewport-height space. This lets the complete footer remain visible on 1080p. */
#download.special-page {
    min-height: 0 !important;
    height: auto !important;
    padding-top: 92px !important;
    padding-bottom: 4px !important;
}

#download .special-heading {
    margin-bottom: 18px !important;
}

#download .download-shell {
    margin-bottom: 0 !important;
}

#download .download-center {
    margin-bottom: 0 !important;
}

#download + .owner-inline-page[hidden] + .site-footer,
#download ~ .site-footer {
    margin-top: 0 !important;
}

/* Keep footer compact on the download screen without crushing the content. */
body.special-view-open .site-footer .footer-main {
    padding-top: 10px !important;
    padding-bottom: 7px !important;
}
body.special-view-open .site-footer .footer-bottom {
    min-height: 30px !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

@media (max-width: 850px) {
    #download.special-page {
        padding-top: 84px !important;
        padding-bottom: 4px !important;
    }
}


/* ========================================================================== */
/* V6.4 - SPECIAL VIEW FOOTER / BOTTOM LAYOUT FIX                             */
/* ========================================================================== */

/* When Download/Owner is open, use a real page column so the footer finishes
   at the bottom of the viewport instead of leaving a large dead black area
   underneath it. */
body.special-view-open {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Fixed header is outside normal layout; hidden sections do not consume space. */
body.special-view-open > .special-page:not([hidden]) {
    flex: 1 0 auto;
    width: 100%;
}

/* Footer remains the final visible block and is pushed to the viewport bottom
   whenever the special page content is shorter than the screen. */
body.special-view-open > .site-footer {
    flex: 0 0 auto;
    width: 100%;
    margin-top: auto !important;
}

/* Keep Download compact, but leave a deliberate visual gap before the footer. */
body.special-view-open #download.special-page {
    padding-bottom: 20px !important;
}

body.special-view-open #download .download-shell {
    margin-bottom: 0 !important;
}

/* Slightly cleaner footer proportions on the Download/Owner screens. */
body.special-view-open .site-footer .footer-main {
    padding-top: 12px !important;
    padding-bottom: 9px !important;
}

body.special-view-open .site-footer .footer-bottom {
    min-height: 32px !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

@media (max-width: 850px) {
    body.special-view-open #download.special-page {
        padding-bottom: 14px !important;
    }
}
