:root {
    --neon-bg: #0a0a0f;
    --neon-surface: rgba(16, 18, 32, 0.82);
    --neon-surface-strong: rgba(22, 24, 42, 0.95);
    --neon-border: rgba(126, 146, 255, 0.18);
    --neon-text: #f5f7ff;
    --neon-muted: #9aa4d0;
    --neon-blue: #4cc9ff;
    --neon-cyan: #74f2ff;
    --neon-purple: #8b5cf6;
    --neon-pink: #c084fc;
    --neon-success: #48f2b3;
    --neon-shadow: 0 24px 80px rgba(4, 10, 30, 0.45);
    --neon-radius: 24px;
    --neon-radius-sm: 18px;
}

html,
body {
    background: var(--neon-bg);
    color: var(--neon-text);
    font-family: "Manrope", "Segoe UI", sans-serif;
}

body.neonhost-shell {
    position: relative;
    min-height: 100vh;
    background:
        radial-gradient(circle at 15% 20%, rgba(76, 201, 255, 0.16), transparent 22%),
        radial-gradient(circle at 85% 15%, rgba(139, 92, 246, 0.18), transparent 25%),
        radial-gradient(circle at 50% 100%, rgba(22, 163, 255, 0.1), transparent 35%),
        #0a0a0f;
}

.neon-bg-orb {
    position: fixed;
    inset: auto;
    width: 28rem;
    height: 28rem;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0.16;
    pointer-events: none;
    z-index: 0;
}

.neon-bg-orb-one {
    top: -8rem;
    left: -8rem;
    background: var(--neon-blue);
}

.neon-bg-orb-two {
    top: 8rem;
    right: -10rem;
    background: var(--neon-purple);
}

.neon-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.7), transparent 85%);
    pointer-events: none;
    z-index: 0;
}

.neonhost-shell > * {
    position: relative;
    z-index: 1;
}

.neonhost-shell a {
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.neonhost-shell h1,
.neonhost-shell h2,
.neonhost-shell h3,
.neonhost-shell h4,
.neonhost-shell .navbar-brand,
.neon-brand-text {
    font-family: "Space Grotesk", "Manrope", sans-serif;
    letter-spacing: -0.03em;
}

.neon-utility-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(9, 11, 20, 0.75);
    backdrop-filter: blur(16px);
}

.neon-utility-inner,
.neon-nav-shell,
.neon-footer-bottom,
.neon-hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.neon-utility-inner {
    min-height: 44px;
}

.neon-utility-copy,
.neon-utility-actions a {
    color: var(--neon-muted);
    font-size: 0.92rem;
}

.neon-utility-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-right: 0.55rem;
    border-radius: 50%;
    background: var(--neon-success);
    box-shadow: 0 0 12px rgba(72, 242, 179, 0.8);
}

.neon-nav-shell {
    padding: 1rem 0;
}

.neon-main-nav-wrap,
.neon-nav-shell {
    background: rgba(12, 14, 25, 0.72);
    backdrop-filter: blur(18px);
}

.neon-main-nav-wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.neon-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    color: var(--neon-text);
    text-decoration: none;
}

.neon-brand-mark {
    display: inline-grid;
    place-items: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(76, 201, 255, 0.2), rgba(139, 92, 246, 0.25));
    border: 1px solid rgba(116, 242, 255, 0.35);
    box-shadow: 0 0 35px rgba(76, 201, 255, 0.2);
    font-weight: 800;
}

.neon-brand-text {
    font-size: 1.1rem;
    font-weight: 700;
}

.neon-toolbar {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.neon-nav-search {
    display: flex;
    align-items: center;
    min-width: 320px;
    padding: 0.3rem 0.45rem;
    border: 1px solid var(--neon-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
}

.neon-nav-search .btn,
.neon-nav-search .form-control,
.neon-menu-toggle,
.neon-cart-link {
    color: var(--neon-text);
}

.neon-nav-search .form-control {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.neon-cart-link,
.neon-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.9rem;
    height: 2.9rem;
    border: 1px solid var(--neon-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
}

.neon-main-nav .navbar-nav > li > a {
    color: rgba(245, 247, 255, 0.78);
}

.neon-main-nav .navbar-nav > li > a:hover,
.neon-main-nav .navbar-nav > li.open > a,
.neon-main-nav .navbar-nav > li.active > a {
    color: var(--neon-cyan);
}

.neon-breadcrumb {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.neon-breadcrumb .breadcrumb {
    background: transparent;
}

.neon-main-body {
    padding: 0 0 4rem;
}

.neon-homepage section {
    padding: 5.5rem 0;
}

.neon-hero-section {
    padding-top: 6rem;
    overflow: hidden;
}

.neon-hero-grid {
    align-items: stretch;
}

.neon-hero-copy,
.neon-hero-stage,
.neon-proof-panel,
.neon-final-shell,
.neon-dashboard-hero,
.neon-dashboard-panel,
.neon-dashboard-tile,
.neon-dashboard-card,
.neon-pricing-card,
.neon-icon-card,
.neon-news-card,
.neon-stage-card {
    border: 1px solid var(--neon-border);
    background: linear-gradient(180deg, rgba(20, 24, 44, 0.8), rgba(11, 14, 25, 0.92));
    box-shadow: var(--neon-shadow);
    backdrop-filter: blur(18px);
}

.neon-hero-copy {
    flex: 1 1 56%;
    padding: 3rem;
    border-radius: 32px;
}

.neon-hero-stage {
    flex: 1 1 44%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.neon-stage-card {
    padding: 1.4rem;
    border-radius: 24px;
}

.neon-stage-card-primary {
    grid-column: span 2;
    min-height: 260px;
}

.card-label,
.neon-eyebrow,
.neon-group-label,
.neon-plan-kicker,
.spotlight-label,
.neon-footer-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.neon-hero-copy h1,
.neon-section-heading h2,
.neon-proof-panel h2,
.neon-final-shell h2,
.neon-dashboard-hero h1 {
    margin-bottom: 1.25rem;
    font-size: clamp(2.7rem, 5vw, 4.8rem);
    line-height: 0.96;
}

.neon-section-heading {
    max-width: 760px;
    margin: 0 auto 3rem;
}

.neon-section-heading h2,
.neon-proof-panel h2,
.neon-final-shell h2,
.neon-dashboard-panel h2 {
    font-size: clamp(2rem, 3vw, 3.1rem);
}

.neon-hero-copy p,
.neon-section-heading p,
.neon-proof-panel p,
.neon-final-shell p,
.neon-dashboard-hero p,
.neon-dashboard-panel p,
.neon-icon-card p,
.neon-pricing-card p,
.neon-news-card p,
.neon-stage-card p {
    color: var(--neon-muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

.neon-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.neon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    text-decoration: none;
}

.neon-button-primary {
    color: #081019;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    box-shadow: 0 0 30px rgba(76, 201, 255, 0.35);
}

.neon-button-primary:hover {
    color: #081019;
    transform: translateY(-2px);
    box-shadow: 0 0 45px rgba(76, 201, 255, 0.52);
}

.neon-button-secondary {
    color: var(--neon-text);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

.neon-button-secondary:hover {
    color: var(--neon-text);
    border-color: rgba(116, 242, 255, 0.4);
    transform: translateY(-2px);
}

.neon-trust-inline,
.stage-metrics,
.neon-domain-meta,
.neon-quick-actions,
.neon-mini-stats,
.neon-footer-grid,
.neon-stats-grid {
    display: grid;
    gap: 1rem;
}

.neon-trust-inline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.neon-trust-inline strong,
.stage-metrics strong,
.neon-stat-box strong,
.neon-dashboard-tile strong,
.neon-mini-stats strong,
.spotlight-price {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.8rem;
    font-weight: 800;
}

.neon-trust-inline span,
.stage-metrics span,
.neon-stat-box span,
.neon-mini-stats span {
    color: var(--neon-muted);
    font-size: 0.92rem;
}

.neon-check-list,
.neon-feature-list,
.neon-footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

.neon-check-list li,
.neon-feature-list li {
    position: relative;
    margin-bottom: 0.85rem;
    padding-left: 1.4rem;
    color: rgba(245, 247, 255, 0.86);
}

.neon-check-list li::before,
.neon-feature-list li::before {
    content: "";
    position: absolute;
    top: 0.55rem;
    left: 0;
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 50%;
    background: var(--neon-cyan);
    box-shadow: 0 0 12px rgba(116, 242, 255, 0.8);
}

.neon-domain-section {
    padding-top: 1rem;
}

.neon-domain-form {
    max-width: 980px;
    margin: 0 auto;
}

.neon-domain-shell,
.neon-dashboard-search {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.8rem;
    border: 1px solid rgba(76, 201, 255, 0.22);
    border-radius: 28px;
    background: rgba(16, 18, 32, 0.84);
    box-shadow: 0 0 45px rgba(76, 201, 255, 0.08);
}

.neon-domain-shell i,
.neon-dashboard-search i {
    padding-left: 0.5rem;
    color: var(--neon-cyan);
}

.neon-domain-shell .form-control,
.neon-dashboard-search .form-control {
    min-height: 52px;
    color: var(--neon-text);
    background: transparent;
    border: 0;
    box-shadow: none;
}

.neon-domain-meta {
    grid-template-columns: repeat(5, minmax(0, max-content));
    justify-content: center;
    margin-top: 1rem;
}

.neon-domain-meta span {
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: var(--neon-muted);
}

.neon-plan-group + .neon-plan-group {
    margin-top: 3rem;
}

.neon-plan-group-header,
.neon-panel-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.neon-pricing-card {
    position: relative;
    width: 100%;
    padding: 1.6rem;
    border-radius: var(--neon-radius);
}

.neon-pricing-card.is-popular {
    transform: translateY(-8px);
    border-color: rgba(116, 242, 255, 0.4);
    box-shadow: 0 0 65px rgba(76, 201, 255, 0.12), var(--neon-shadow);
}

.neon-popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    color: #081019;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    font-size: 0.75rem;
    font-weight: 800;
}

.neon-price-wrap {
    margin: 1.5rem 0;
}

.neon-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.neon-cycle {
    color: var(--neon-muted);
}

.neon-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.6rem;
}

.neon-inline-link,
.neon-text-link,
.neon-news-card a,
.neon-stage-card a {
    color: var(--neon-cyan);
    text-decoration: none;
}

.neon-icon-card,
.neon-news-card,
.neon-proof-panel,
.neon-final-shell,
.neon-dashboard-panel,
.neon-dashboard-tile,
.neon-dashboard-card {
    border-radius: var(--neon-radius);
}

.neon-icon-card {
    width: 100%;
    padding: 1.5rem;
}

.neon-icon-card svg {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    fill: url(#neonGradient);
    color: var(--neon-cyan);
}

.neon-icon-card svg path {
    fill: currentColor;
}

.neon-proof-panel,
.neon-final-shell {
    padding: 2.2rem;
}

.neon-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2rem;
}

.neon-stat-box,
.neon-dashboard-tile,
.neon-mini-stats > div {
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
}

.neon-news-card {
    height: 100%;
    padding: 1.4rem;
}

.neon-news-card span {
    color: var(--neon-cyan);
    font-size: 0.85rem;
    font-weight: 700;
}

.neon-dashboard-home {
    padding-top: 2rem;
}

.neon-dashboard-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 2rem;
}

.neon-dashboard-actions {
    display: flex;
    gap: 0.85rem;
}

.neon-dashboard-tile {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 100%;
    color: var(--neon-text);
    text-decoration: none;
}

.neon-dashboard-tile i {
    color: var(--neon-cyan);
    font-size: 1.2rem;
}

.neon-dashboard-panel {
    padding: 1.6rem;
}

.neon-quick-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 1.5rem 0;
}

.neon-quick-actions a {
    display: block;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    color: var(--neon-text);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
}

.neon-product-spotlight {
    margin-bottom: 1.5rem;
    padding: 1.4rem;
    border: 1px solid rgba(76, 201, 255, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.neon-dashboard-card {
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(16, 18, 32, 0.88);
}

.neon-dashboard-card .card-header,
.neon-dashboard-card .card-footer {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.06);
}

.neon-dashboard-card .list-group-item {
    color: var(--neon-text);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.05);
}

.neon-site-footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 9, 16, 0.92);
}

.neon-footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    margin-bottom: 2.5rem;
}

.neon-footer-brand p,
.neon-footer-links a,
.neon-locale-button {
    color: var(--neon-muted);
}

.neon-footer-links li + li {
    margin-top: 0.7rem;
}

.neon-footer-links a {
    text-decoration: none;
}

.neon-locale-button {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1199.98px) {
    .neon-nav-search {
        min-width: 240px;
    }

    .neon-hero-grid,
    .neon-dashboard-hero,
    .neon-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .neon-hero-stage,
    .neon-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }
}

@media (max-width: 991.98px) {
    .neon-homepage section {
        padding: 4rem 0;
    }

    .neon-hero-copy,
    .neon-proof-panel,
    .neon-final-shell,
    .neon-dashboard-hero {
        padding: 2rem;
    }

    .neon-hero-stage,
    .neon-trust-inline,
    .neon-quick-actions,
    .neon-stats-grid,
    .neon-footer-grid {
        grid-template-columns: 1fr;
    }

    .neon-stage-card-primary {
        grid-column: auto;
    }
}

@media (max-width: 767.98px) {
    .neon-domain-shell,
    .neon-dashboard-search,
    .neon-card-actions,
    .neon-cta-row,
    .neon-dashboard-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .neon-domain-meta {
        grid-template-columns: repeat(3, minmax(0, max-content));
    }

    .neon-utility-inner,
    .neon-nav-shell {
        flex-direction: column;
        align-items: flex-start;
    }
}
