:root {
    --nso-black: #000000;
    --nso-charcoal: #0a0a0a;
    --nso-magenta: #ffd700;
    --nso-cyan: #00E5FF;
    --nso-text: #FFFFFF;
    --nso-subtext: #bbbbbb;
}

body {
    background: linear-gradient(135deg, #0f1d44 0%, #1a2d6d 60%, #2d4a9e 100%);
    color: var(--nso-text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Animated background pulse effects from login */
body::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.05) 0%, transparent 70%);
    bottom: -300px;
    left: -200px;
    border-radius: 50%;
    animation: pulse 12s ease-in-out infinite reverse;
    z-index: 0;
    pointer-events: none;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Override base.css main background */
.layout.no-nav>main {
    background: var(--nso-black) !important;
    padding: 0;
}

h1,
h2,
h3,
.nso-header {
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* --- Top Navigation --- */
.nso-top-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.nso-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.nso-logo img {
    height: 45px;
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.nso-logo-text {
    font-family: 'Rajdhani', sans-serif;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nso-top-nav a {
    pointer-events: auto;
}

.btn-login-top {
    font-family: 'Rajdhani', sans-serif;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.btn-login-top:hover {
    border-color: white;
    background: white;
    color: black;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    overflow: hidden;
    z-index: 1;
}

.hero-bg-container {
    position: absolute;
    top: 50%;
    left: 65%;
    transform: translate(-50%, -50%);
    width: 140vh;
    height: 140vh;
    z-index: 1;
    opacity: 0.35;
    pointer-events: none;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-bg-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* animation:
        circulate 90s linear infinite,
        glide-horizontal 120s ease-in-out infinite alternate; */
    filter: drop-shadow(0 0 80px rgba(255, 215, 0, 0.2));
}

@keyframes glide-horizontal {
    from {
        transform: translateX(-10%);
    }

    to {
        transform: translateX(10%);
    }
}

@keyframes circulate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 30%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-item {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
    padding-bottom: 2rem;
    transition: border-color 0.3s;
}

.feature-item:hover {
    border-left-color: var(--nso-magenta);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.feature-item p {
    color: var(--nso-subtext);
    line-height: 1.7;
    font-size: 0.95rem;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--nso-magenta);
    margin-bottom: 1.5rem;
    display: block;
}

/* --- Sections --- */
.section-nso {
    padding: 8rem 10%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header {
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.grid-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

/* --- Pricing Table --- */
.pricing-nso {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.price-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 4rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.price-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--nso-magenta);
}

.price-card h4 {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: var(--nso-magenta);
}

.price-value {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    font-family: 'Rajdhani', sans-serif;
}

.price-value span {
    font-size: 1rem;
    color: var(--nso-subtext);
}

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
}

.price-features li {
    margin-bottom: 1rem;
    color: var(--nso-subtext);
    font-size: 0.95rem;
}

/* --- Buttons --- */
.btn-nso {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s;
    cursor: pointer;
    background: transparent;
}

.btn-nso:hover {
    background: white;
    color: black;
}

.btn-nso.filled {
    background: white;
    color: black;
}

.btn-nso.filled:hover {
    background: var(--nso-magenta);
    border-color: var(--nso-magenta);
    color: white;
}

/* --- Footer --- */
.footer-nso {
    padding: 4rem 10%;
    font-size: 0.8rem;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 4rem;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 2.5rem;
    }

    .accent-bar {
        margin: 1.5rem auto;
    }

    .grid-features,
    .pricing-nso {
        grid-template-columns: 1fr;
    }
}