:root {
    /* Color Palette - Technical Slate Overhaul */
    --bg: #0b0f10; /* Calibrated Deep Slate */
    --fg: #ffffff;
    --acc: #00f2ff;
    --acc-soft: rgba(0, 242, 255, 0.1);
    --border: rgba(255, 255, 255, 0.1);
    --text-muted: #b8b8c0;
    --glass: rgba(18, 18, 22, 0.8);
    --glass-border: rgba(255, 255, 255, 0.15);
    --surface: #0f0f14;
    
    /* Lighting Isolation */
    --aura-opacity: 0.03;
    --spot-opacity: 0.03;
    --acc-hover: rgba(0, 242, 255, 0.15); 
    
    /* Styling - SaaS Precision */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Sora', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --container: 1300px;
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html { background: var(--bg); }
body { 
    color: var(--fg);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background: var(--bg);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ambient Light Disabled to prevent Banding/Pixelation */
body::before {
    display: none;
}

/* Industrial SVG Texture (Technical Matte) */
body::after {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3F%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.12; /* Cleaned up for technical clarity */
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 10000;
}

/* --- PREMIUM BASICS --- */
::selection { background: var(--acc); color: white; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; border: 2px solid #050505; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* --- DIAGNOSTIC BOOT SPLASH --- */
#boot-splash {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #000;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.5s ease;
}

#boot-splash.loaded {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.boot-content {
    width: 90%;
    max-width: 600px;
    text-align: left;
}

.boot-logo {
    margin-bottom: 2rem;
    width: 280px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(0, 242, 255, 0.4));
    animation: bootPulse 2s infinite ease-in-out;
}

.brand-logo-svg {
    height: 28px;
    width: auto;
    display: block;
    transition: var(--transition);
}

#boot-terminal {
    font-size: 0.8rem;
    color: var(--acc);
    line-height: 1.5;
    opacity: 0.8;
}

#boot-terminal div {
    margin-bottom: 0.4rem;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid var(--acc);
    width: 0;
    animation: typeLine 0.1s steps(40, end) forwards;
}

@keyframes typeLine {
    from { width: 0; }
    to { width: 100%; border-color: transparent; }
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* Standard Button Reset for Aetheris */
button {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
    color: inherit;
}

html { font-size: 15px; scroll-behavior: smooth; }

/* Consolidated body definition removed from here */

body::after {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.05;
    pointer-events: none;
    z-index: 9999;
}

.container { width: 90%; max-width: var(--container); margin: 0 auto; }

h1, h2, h3, h4 { 
    font-family: var(--font-heading); 
    font-weight: 800; 
    letter-spacing: -0.05em; 
    line-height: 0.9;
    text-transform: uppercase;
}

.gradient-text {
    color: var(--acc); 
    background: linear-gradient(90deg, var(--acc), #fff); 
    -webkit-background-clip: text; 
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- CYBER-TECH GRID --- */
.grid-system {
    display: none; /* Deactivated to eliminate block separation lines */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: var(--container);
    height: 100vh;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: -5; /* Deep background layer */
}

.grid-line {
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,0.008);
    position: relative;
    overflow: hidden;
}

.grid-line::after {
    content: '';
    position: absolute;
    top: -20vh;
    left: 0;
    width: 100%;
    height: 30vh;
    background: linear-gradient(to bottom, transparent, var(--acc), transparent);
    animation: gridBeam 8s linear infinite;
    opacity: 0.18;
    filter: blur(1px);
    box-shadow: 0 0 20px var(--acc);
}

.grid-line:nth-child(2)::after { animation-delay: 2s; animation-duration: 12s; }
.grid-line:nth-child(3)::after { animation-delay: 5s; animation-duration: 9s; }
.grid-line:nth-child(4)::after { animation-delay: 1s; animation-duration: 15s; }

@keyframes gridBeam {
    0% { transform: translateY(-30vh); opacity: 0; }
    20% { opacity: 0.18; }
    80% { opacity: 0.18; }
    100% { transform: translateY(130vh); opacity: 0; }
}

.grid-line:nth-child(2) { animation-delay: 2s; }
.grid-line:nth-child(3) { animation-delay: 4.5s; }
.grid-line:nth-child(4) { animation-delay: 1s; }
.grid-line:nth-child(5) { animation-delay: 3s; }

/* --- BRACKET UTILITY --- */
.bracket { 
    position: relative; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    padding: 0.5rem 1.4rem; /* Snug, technical fit */
    margin-bottom: 1.5rem;
    z-index: 2;
}
.bracket::before, .bracket::after, 
.bracket-inner::before, .bracket-inner::after {
    content: '';
    position: absolute;
    width: 8px; height: 8px;
    border-color: var(--acc);
    border-style: solid;
    box-shadow: none;
    pointer-events: none;
}

.bracket::before { top: 0; left: 0; border-width: 2px 0 0 2px; }
.bracket::after { top: 0; right: 0; border-width: 2px 2px 0 0; }
.bracket-inner::before { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.bracket-inner::after { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

.mono { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.1em; color: var(--text-muted); }

/* --- BACKGROUND CODE DROPS --- */
.code-drop {
    position: absolute;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--acc);
    opacity: 0.02; /* Even subtler background texture */
    pointer-events: none;
    z-index: -2; /* Behind all content */
    white-space: nowrap;
    text-transform: none;
    user-select: none;
    animation: floatCode 25s linear infinite;
}
.cd-1 { top: 15%; left: 5%; transform: rotate(-5deg); }
.cd-2 { top: 40%; right: 10%; transform: rotate(10deg); }
.cd-3 { bottom: 20%; left: 8%; transform: rotate(-12deg); }
.cd-4 { top: 8%; right: 20%; transform: rotate(-8deg); }
.cd-5 { bottom: 10%; right: 5%; transform: rotate(5deg); }

/* DOMAIN SECTION CODES */
.cd-dom-1 { top: 12%; left: 3%; transform: rotate(-5deg); z-index: 100; opacity: 0.15; }
.cd-dom-2 { top: 65%; right: 4%; transform: rotate(5deg); z-index: 100; opacity: 0.12; }
.cd-dom-3 { top: 28%; left: 8%; transform: rotate(12deg); z-index: 100; opacity: 0.1; }
.cd-dom-4 { bottom: 15%; right: 12%; transform: rotate(-3deg); z-index: 100; opacity: 0.15; }

#scroll-tracker {
    position: fixed;
    top: 68px; /* Just under nav */
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 1001;
    background: rgba(255,255,255,0.02);
}

#scroll-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--acc-soft), var(--acc));
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.4);
    transition: width 0.1s ease-out;
}

#scroll-pct {
    position: fixed;
    top: 85px;
    right: 2.5rem;
    font-size: 0.65rem;
    font-weight: 900;
    color: var(--acc);
    opacity: 0.6;
    letter-spacing: 0.2em;
}

#latency-monitor {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.lat-row {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    font-size: 0.65rem;
    font-weight: 700;
    white-space: nowrap;
}

.lat-row span:first-child {
    color: var(--text-muted);
    opacity: 0.8;
}

.lat-val {
    color: var(--acc);
    text-align: right;
    min-width: 40px;
}

/* --- NAVIGATION --- */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo { 
    display: flex; 
    align-items: center; 
    text-decoration: none; 
    color: var(--fg); 
    font-weight: 800; 
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: -0.04em;
    transition: var(--transition);
    position: relative;
    padding-right: 1.5rem;
}

.logo-text {
    position: relative;
    display: inline-block;
    color: var(--fg);
    font-weight: 800;
    transition: var(--transition);
    /* Removed slanted clip-path for a cleaner, more stable feel */
}

/* THE REFINED FIBER-OPTIC SHIMMER (TRIPLE RAY) */
.logo-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(
        110deg, 
        transparent 35%, 
        rgba(0, 242, 255, 0.4) 45%, 
        rgba(255, 255, 255, 1) 50%, 
        rgba(0, 242, 255, 0.4) 55%, 
        transparent 65%
    );
    background-size: 200% auto;
    background-repeat: no-repeat;
    animation: techShimmer 6s infinite linear;
    pointer-events: none;
    z-index: 1;
}

@keyframes techShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-links { 
    display: flex; 
    gap: 3rem; 
}

.nav-links a { 
    text-decoration: none; 
    color: rgba(255, 255, 255, 0.6); 
    font-size: 0.72rem; 
    font-weight: 500; 
    text-transform: uppercase;
    letter-spacing: 0.25em;
    transition: all 0.2s ease-out; 
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--acc);
    box-shadow: 0 0 10px var(--acc);
    transition: all 0.15s ease-out;
    transform: translateX(-50%);
}

.nav-links a:hover { 
    color: var(--fg); 
}

.nav-links a:hover::after {
    width: 100%;
}

/* --- MEGA-MENU V3: THE CONSOLE OVERHAUL --- */
.nav-item.dropdown {
    position: static;
    display: flex;
    align-items: center;
}

.dropdown-trigger {
    cursor: default;
    position: relative;
}

/* HOVER BUFFER BRIDGE on trigger: creates a safe zone between button and menu */
.dropdown-trigger::before {
    content: '';
    position: absolute;
    bottom: -30px; /* Covers the 15px translateY + gap */
    left: 0;
    width: 100%;
    height: 40px;
    background: transparent;
    z-index: 10;
    display: none;
}

.nav-item.dropdown:hover .dropdown-trigger::before {
    display: block;
}

.dropdown-menu {
    position: absolute;
    top: 75px; /* Increased offset to avoid overlap with nav bar */
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(4, 5, 6, 0.98);
    backdrop-filter: blur(80px) saturate(180%);
    border: 1px solid rgba(0, 242, 255, 0.15); /* Technical Cyan Border */
    width: 600px;
    padding: 3rem;
    border-radius: 2px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 40px 120px rgba(0,0,0,0.95), inset 0 0 40px rgba(0, 242, 255, 0.02);
    z-index: 1000;
    display: block;
    margin: 0;
    overflow: hidden; /* For Aurora effect */
}

/* V8: ATMOSPHERIC AURORA BACKGROUND */
.dropdown-menu::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: transparent;
    filter: blur(80px);
    animation: aurora-flow 20s infinite linear;
    z-index: -1;
    pointer-events: none;
}

/* SCANLINE EFFECT OVER MENU */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 242, 255, 0.03) 50%);
    background-size: 100% 4px;
    pointer-events: none;
    opacity: 0.4;
}

@keyframes aurora-flow {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

/* COLORS & IDENTITY v8 */
:root {
    --color-nvme: #00f2ff;
    --color-vps: #ffae00;
    --color-dedicated: #7b00ff;
}

.blueprint-label {
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--acc);
    text-transform: uppercase;
    letter-spacing: 0.35em;
    margin-bottom: 2rem;
    display: block;
    opacity: 0.8;
}

/* ARCHITECTURAL SEPARATOR */
.blueprint-sep {
    width: 1px;
    background: repeating-linear-gradient(to bottom, transparent, transparent 5px, rgba(255, 255, 255, 0.05) 5px, rgba(255, 255, 255, 0.05) 10px);
    opacity: 0.5;
}

.blueprint-main {
    width: 100%;
}

.blueprint-catalog {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.blueprint-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    box-sizing: border-box; /* Force absolute symmetry */
    width: 100%;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    background: rgba(255, 255, 255, 0.01);
    overflow: hidden;
}

.blueprint-item.coming-soon {
    opacity: 0.45;
    cursor: default;
    filter: grayscale(0.8);
    transition: all 0.4s ease;
}

.blueprint-item.coming-soon:hover {
    opacity: 0.6;
    filter: grayscale(0.4);
    background: rgba(255, 255, 255, 0.02);
}

.blueprint-item:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* INDIVIDUAL PRODUCT GLOWS */
.blueprint-item.item-nvme:hover { border-color: rgba(0, 242, 255, 0.2); }
.blueprint-item.item-vps:hover { border-color: rgba(255, 174, 0, 0.2); }
.blueprint-item.item-dedicated:hover { border-color: rgba(123, 0, 255, 0.2); }

.item-icon {
    grid-column: 1;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center; /* FORCED ABSOLUTE CENTERING IN GRID TRACK */
    transition: 0.12s ease-out;
    margin-top: 5px; /* Precision alignment with first line CAPS */
}

.item-nvme .item-icon { color: var(--color-nvme); filter: drop-shadow(0 0 6px rgba(0, 242, 255, 0.2)); }
.item-vps .item-icon { color: var(--color-vps); filter: drop-shadow(0 0 10px rgba(255, 174, 0, 0.3)); }
.item-dedicated .item-icon { color: var(--color-dedicated); filter: drop-shadow(0 0 12px rgba(123, 0, 255, 0.3)); }

.blueprint-item:hover .item-icon { transform: scale(1.15) rotate(2deg); filter: drop-shadow(0 0 15px currentColor); }

.item-content {
    grid-column: 2;
}

.item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.2rem;
}

.item-tag {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.4;
    letter-spacing: 0.1em;
}

.item-tag.tag-active {
    color: var(--acc);
    opacity: 0.8;
}

.item-specs {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.8rem;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--acc);
    opacity: 0.3;
}

.item-title {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.2; /* Tightened for precise alignment control */
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    letter-spacing: -0.01em;
}

/* Status Indicator (Pulse) */
.item-title::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 2px;
    flex-shrink: 0;
}

.item-nvme .item-title::before { background: var(--color-nvme); box-shadow: 0 0 10px var(--color-nvme); animation: pulse-nvme 2s infinite; }
.item-vps .item-title::before { background: var(--color-vps); box-shadow: 0 0 10px var(--color-vps); animation: pulse-vps 4s infinite;} /* Slower for standby */
.item-dedicated .item-title::before { background: var(--color-dedicated); box-shadow: 0 0 10px var(--color-dedicated); animation: pulse-dedicated 4s infinite;}

@keyframes pulse-nvme {
    0% { box-shadow: 0 0 0 0 rgba(0, 242, 255, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(0, 242, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 242, 255, 0); }
}

@keyframes pulse-vps {
    0% { box-shadow: 0 0 0 0 rgba(255, 174, 0, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(255, 174, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 174, 0, 0); }
}

@keyframes pulse-dedicated {
    0% { box-shadow: 0 0 0 0 rgba(123, 0, 255, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(123, 0, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(123, 0, 255, 0); }
}

.item-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 400;
    text-transform: none !important;
}

/* ARCHITECTURE AREA */

/* V8: ATMOSPHERIC AURORA BACKGROUND */
.dropdown-menu::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% -20%, rgba(0, 242, 255, 0.15), transparent 70%);
    pointer-events: none;
}

.btn-blueprint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.1rem 2rem;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-blueprint:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-blueprint.primary {
    border-color: rgba(0, 242, 255, 0.3);
}

.btn-blueprint.primary:hover {
    background: var(--acc);
    border-color: var(--acc);
    box-shadow: 0 10px 40px rgba(0, 242, 255, 0.3);
}

.blueprint-meta {
    font-family: var(--font-mono);
    font-size: 0.52rem;
    color: var(--text-muted);
    opacity: 0.3;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    line-height: 1.8;
}

/* Background Dimming V8 - Performance Optimized */
.nav:has(.dropdown:hover) ~ main {
    filter: brightness(0.4) blur(8px); /* Reduced blur for better rendering stability */
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.roadmap-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
}

.roadmap-item i {
    color: var(--acc);
    width: 24px;
    height: 24px;
}

/* Secondary card spacing adjustments */
.coming-soon .link-title { opacity: 0.8; }
.coming-soon .link-desc { opacity: 0.6; }

.roadmap-item .badge {
    font-size: 0.6rem;
    padding: 0.25rem 1rem;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.2);
    color: var(--acc);
    border-radius: 2px;
    margin-top: 1rem;
    display: inline-block;
    font-family: var(--font-mono);
    text-transform: uppercase;
}

.btn-menu-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 242, 255, 0.08);
    border: 1px solid rgba(0, 242, 255, 0.2);
    color: var(--acc);
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s var(--transition);
    letter-spacing: 0.1em;
}

.btn-menu-cta:hover {
    background: var(--acc);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
}

.help-sphere {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 35% 35%, var(--acc), transparent 70%);
    border-radius: 50%;
    margin-bottom: 2.5rem;
    position: relative;
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.3);
    animation: spherePulse 4s infinite ease-in-out;
}

@keyframes spherePulse {
    0%, 100% { transform: scale(1) translateY(0); opacity: 0.9; }
    50% { transform: scale(1.1) translateY(-10px); opacity: 1; }
}

.nav-actions { display: flex; align-items: center; gap: 1.5rem; }

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 100px;
    margin-right: 1rem;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px #10b981;
}

.status-dot::after {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    border: 1px solid #10b981;
    border-radius: 50%;
    animation: statusPulse 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

@keyframes statusPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

.status-text {
    font-size: 0.65rem;
    font-weight: 900;
    color: #10b981;
    letter-spacing: 0.1em;
}

.btn-lang { 
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid var(--border); 
    padding: 0.4rem 1.2rem; 
    font-size: 0.65rem; 
    font-weight: 700; 
    cursor: pointer; 
    color: var(--acc); 
    font-family: var(--font-mono);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 85% 100%, 0 100%);
    transition: all 0.3s var(--transition);
    letter-spacing: 0.1em;
}

.btn-lang:hover {
    background: var(--acc-soft);
    border-color: var(--acc);
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

/* --- CYBER-TECH BUTTON (PREMIUM REFINED) --- */
.btn-cyber {
    position: relative;
    background: rgba(0, 242, 255, 0.05);
    color: var(--acc);
    padding: 0.8rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    border: 1px solid rgba(0, 242, 255, 0.3);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%, 0 75%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-cyber:hover {
    background: var(--acc) !important;
    color: #000 !important;
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.4);
    transform: translateY(-2px);
    border-color: var(--acc);
}

.btn-cyber::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 1.2rem;
    width: 4px;
    height: 4px;
    background: var(--acc);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px var(--acc);
    opacity: 0.8;
}

.btn-cyber::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 242, 255, 0.2),
        transparent
    );
    transition: 0.6s;
}

.btn-cyber:hover::after {
    left: 100%;
}

.btn-cyber:hover::before {
    background: black;
    box-shadow: none;
}

/* Redefine btn-join to use the new style */
.btn-join {
    position: relative;
    background: rgba(0, 242, 255, 0.08); /* Slightly more opaque for prominence */
    color: var(--acc);
    padding: 0.6rem 2.2rem;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%, 0 75%);
    font-weight: 800;
    letter-spacing: 0.15em;
    border: 1px solid rgba(0, 242, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.btn-join::before {
    content: '>';
    font-family: var(--font-mono);
    opacity: 0.6;
    font-size: 1rem;
    transition: transform 0.3s;
}

.btn-join::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 242, 255, 0.25),
        transparent
    );
    transition: 0.6s;
}

.btn-join:hover { 
    background: var(--acc) !important;
    color: #000 !important;
    box-shadow: 0 8px 25px rgba(0, 242, 255, 0.4);
    transform: translateY(-2px);
    border-color: var(--acc);
}

.btn-join:hover::after {
    left: 100%;
}

.btn-join:hover::before {
    transform: translateX(3px);
    opacity: 1;
}

/* --- HERO --- */
.hero { 
    padding: 12rem 0 8rem; 
    text-align: center; 
    background: transparent; 
    position: relative;
}
.hero-badge { 
    display: inline-block; 
    padding: 0.65rem 1.5rem; 
    background: rgba(0, 242, 255, 0.05); 
    border-radius: 100px; 
    font-size: 0.7rem; 
    font-weight: 800; 
    margin-bottom: 2.5rem; 
    color: var(--acc);
    border: 1px solid rgba(0, 242, 255, 0.2);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

/* --- BILLING TOGGLE --- */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.billing-toggle span {
    color: var(--text-muted);
    transition: color 0.3s;
    cursor: pointer;
    user-select: none;
}

.billing-toggle span.active {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.toggle-track {
    width: 56px;
    height: 26px;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid var(--border);
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.toggle-track.active {
    border-color: var(--acc);
    background: rgba(0, 242, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.1);
}

.toggle-ball {
    position: absolute;
    top: 2px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: var(--text-muted);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    pointer-events: none;
}

.toggle-track.active .toggle-ball {
    transform: translateX(30px);
    background: var(--acc);
    box-shadow: 0 0 15px var(--acc);
}

.discount-badge {
    padding: 0.2rem 0.6rem;
    border: 1px solid var(--acc);
    color: var(--acc);
    border-radius: 4px;
    font-size: 0.6rem;
    margin-left: 0.5rem;
    background: rgba(0, 242, 255, 0.05);
    text-shadow: 0 0 5px var(--acc);
}

.btn-p { 
    background: var(--fg); 
    color: black; 
    padding: 1.25rem 3.5rem; 
    border-radius: 100px; 
    font-weight: 800; 
    text-decoration: none; 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    position: relative; /* Anchor for console */
    z-index: 10;
}
.btn-p:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 10px 25px rgba(0, 242, 255, 0.2); background: var(--acc); color: black; }

.btn-s { 
    background: rgba(255, 255, 255, 0.03); 
    color: var(--fg); 
    padding: 1.25rem 3.5rem; 
    border-radius: 100px; 
    border: 1px solid var(--border);
    font-weight: 700; 
    text-decoration: none; 
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative; /* Anchor for console */
    z-index: 10;
}
.btn-s:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--fg); transform: translateY(-3px); }

.deploy-console {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 260px;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 12px;
    padding: 1.5rem;
    color: #10b981;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.65rem;
    line-height: 1.6;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 5000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.deploy-console.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.deploy-console .line { 
    display: block; 
    white-space: nowrap; 
    overflow: hidden;
    width: 0;
    border-right: 2px solid #10b981;
}

.deploy-console .line.typed {
    width: 100%;
    border-right: none;
    animation: typeLine 0.5s steps(30, end) forwards;
}

@keyframes typeLine {
    from { width: 0; }
    to { width: 100%; }
}
.btn-p:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 10px 25px rgba(0, 242, 255, 0.2); }

.btn-s { 
    background: rgba(255, 255, 255, 0.03); 
    color: var(--fg); 
    padding: 1.25rem 3.5rem; 
    border-radius: 100px; 
    border: 1px solid var(--border);
    font-weight: 700; 
    text-decoration: none; 
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.btn-s:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--fg); transform: translateY(-3px); }

.ambient-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.07), transparent 70%);
    pointer-events: none;
    z-index: -1;
    filter: blur(120px);
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* UNIFIED DOMAIN BAR */
.domain-section { padding: 5rem 0 2rem; border: none; position: relative; background: transparent; }

.domain-bar {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(14, 14, 14, 0.98);
    overflow: hidden;
    display: flex;
    align-items: stretch;
    max-width: 850px;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.domain-bar:focus-within {
    border-color: var(--acc);
    background: rgba(20, 20, 20, 0.99);
    transform: translateY(-3px);
}

.domain-input {
    background: transparent;
    color: white;
    flex: 1;
    border: none;
    padding: 1.6rem 2.5rem;
    font-family: var(--font-mono);
    font-size: 1.1rem;
    outline: none;
}

.domain-btn {
    background: transparent !important;
    color: var(--acc) !important;
    border: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    margin-left: -1px !important; /* Force overlap to kill subpixel lines */
    padding: 0 3.5rem !important;
    font-weight: 800;
    letter-spacing: 0.25em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: var(--font-mono);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.domain-btn:hover {
    background: var(--acc) !important;
    color: #000 !important;
}

.domain-btn::before, .domain-btn::after { display: none !important; content: none !important; border: none !important; }

.domain-tlds {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.tld-tag {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    font-family: var(--font-mono);
    transition: all 0.3s ease;
}

.tld-tag::before { 
    content: ''; 
    width: 6px; 
    height: 6px; 
    background: var(--acc); 
    border-radius: 50%; 
    box-shadow: 0 0 10px var(--acc); 
}

.tld-tag:hover { transform: translateY(-1px); filter: brightness(1.2); }
.tld-tag .price { color: var(--acc); font-weight: 800; }
.hero h1 { font-size: 3.5rem; margin-bottom: 1.5rem; line-height: 1.1; color: var(--fg); }
.hero h1 span { color: var(--text-muted); }
.hero p { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 3rem; }
.hero-btns { display: flex; justify-content: center; gap: 1rem; }



/* --- TRUST BAR --- */
.trust-bar { padding: 4rem 0; text-align: center; }
.trust-label { font-size: 0.7rem; font-weight: 800; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.25em; margin-bottom: 2.5rem; }
.logo-strip { display: flex; justify-content: center; gap: 6rem; opacity: 0.75; filter: grayscale(0.2); }
.logo-strip span { font-weight: 900; font-size: 1.4rem; letter-spacing: -0.04em; color: var(--fg); text-shadow: 0 0 20px rgba(255,255,255,0.05); }

/* --- ARCHITECTURE --- */
.arch-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 2.5rem; 
}

.arch-card { 
    padding: 2.5rem; 
    position: relative; 
    z-index: 5; 
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s var(--transition);
}

.arch-card i { 
    width: 32px; 
    height: 32px; 
    color: var(--acc); 
    margin-bottom: 1.5rem; 
}

.arch-card:hover i {
    color: var(--acc);
    transform: scale(1.1);
}

.arch-card h4 { 
    font-size: 1.1rem; 
    margin-bottom: 1rem; 
    letter-spacing: 0.05em;
    font-family: var(--font-heading);
    font-weight: 700;
}

.arch-card p { 
    font-size: 0.9rem; 
    color: var(--text-muted); 
    line-height: 1.7;
    font-weight: 400;
}

/* --- GLOBAL EDGE --- */
.edge-flex { display: flex; align-items: center; gap: 4rem; }
.edge-info { flex: 1; }
.edge-stats { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.stat-box { border-left: 2px solid var(--border); padding-left: 1.5rem; }
.stat-val { font-size: 2rem; font-weight: 800; display: block; }
.stat-lbl { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }

/* --- TECH STACK MARQUEE --- */
.stack-section { padding: 4rem 0; background: transparent; overflow: hidden; position: relative; }
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 8rem; /* Increased gap for a more premium, spacious feel */
    animation: marquee 50s linear infinite;
    align-items: center;
}

.stack-logo {
    height: 42px;
    max-width: 200px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) opacity(0.8) brightness(1.2); /* Increased presence and subtle glow */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.stack-logo:hover {
    filter: grayscale(0) opacity(1);
    transform: scale(1.1);
}

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

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { 
    background: rgba(8, 8, 8, 0.4); 
    backdrop-filter: blur(10px); 
    border-radius: 12px; 
    border: 1px solid var(--border);
    position: relative;
    z-index: 5;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--accent);
    background: rgba(8, 8, 8, 0.6);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h5 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question h5 {
    color: var(--accent);
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-answer p {
    padding: 0 2rem 1.751rem 1.751rem;
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}
.footer { padding: 8rem 0 4rem; position: relative; z-index: 10; background: transparent; }

.footer-top {
    display: grid;
    grid-template-columns: 2fr repeat(2, 1fr);
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.payment-methods {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 0.5rem;
}

.payment-methods img, .payment-methods svg {
    height: 32px;
    width: auto;
    max-width: 65px;
    opacity: 0.5;
    filter: grayscale(100%) brightness(120%);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.payment-methods img:hover, .payment-methods svg:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(100%);
    transform: translateY(-2px);
}

.socials {
    display: flex;
    gap: 2rem;
    font-family: var(--font-mono);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.socials .link {
    cursor: pointer;
    transition: color 0.3s;
}

.socials .link:hover {
    color: var(--acc);
}
.faq-item h5 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.faq-item p { font-size: 0.95rem; color: var(--text-muted); }

/* --- INFRA DASHBOARD (NEW CONSOLE) --- */
.dash-container { 
    flex: 1; 
    min-width: 400px; 
    background: rgba(8, 8, 8, 0.4); 
    backdrop-filter: blur(10px); 
    backdrop-filter: blur(20px); 
    border-radius: 16px; 
    border: 1px solid var(--border); 
    padding: 2rem; 
    position: relative; 
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5); 
    z-index: 5;
}
.dash-status { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 800; color: var(--acc); text-transform: uppercase; letter-spacing: 0.05em; }
.dash-status::before { content: ''; width: 8px; height: 8px; background: var(--acc); border-radius: 50%; box-shadow: 0 0 10px rgba(0, 242, 255, 0.3); }

.telemetry { display: flex; flex-direction: column; gap: 1.25rem; font-family: var(--font-main); }
.tel-item { display: grid; grid-template-columns: 24px 1fr 100px auto; align-items: center; gap: 1rem; padding: 1rem 1.25rem; background: rgba(255,255,255,0.03); border-radius: 12px; border: 1px solid transparent; transition: 0.2s; }
.tel-item:hover { background: rgba(255,255,255,0.06); border-color: var(--border); transform: translateX(5px); }
.tel-item i { width: 16px; height: 16px; color: var(--text-muted); }
.tel-lbl { font-size: 0.85rem; font-weight: 600; color: var(--fg); }
.sparkline-container { width: 100px; height: 30px; }
.sparkline { width: 100%; height: 100%; vertical-align: middle; }
.tel-val { font-size: 0.85rem; font-family: monospace; color: var(--text-muted); font-weight: 700; width: 60px; text-align: right; }
.tel-val.ping { color: var(--fg); }
.cta-banner { 
    background: rgba(255, 255, 255, 0.02); 
    color: white; 
    border-radius: 12px; 
    padding: 5rem 3rem; 
    text-align: center; 
    position: relative; 
    overflow: hidden; 
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border-color 0.3s;
}

.cta-banner:hover {
    transform: translateY(-5px);
    border-color: var(--acc);
    box-shadow: 0 5px 15px rgba(0, 242, 255, 0.04);
}
.cta-banner h2 { font-size: 3rem; margin-bottom: 1.5rem; color: white; }
.cta-banner p { color: var(--text-muted); margin: 0 auto 3rem; font-size: 1.1rem; }
.cta-banner .btn-p { background: var(--acc); color: black; }
.section { 
    padding: 6rem 0; 
    background: transparent; 
    position: relative;
    overflow: hidden;
}
.section-head { margin-bottom: 4rem; text-align: left; }
.section-meta { 
    font-size: 0.7rem; 
    font-weight: 900; 
    color: var(--acc); 
    letter-spacing: 0.25em; 
    margin-bottom: 1.5rem; 
    text-transform: uppercase; 
    display: inline-block;
    border-left: 2px solid var(--acc);
    padding-left: 1rem;
}
.section-title { font-size: 2.25rem; }

.price-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 2.5rem; 
    margin-top: 4rem; 
    perspective: 1500px;
}

.billing-toggle { display: flex; justify-content: center; align-items: center; gap: 1.5rem; margin-bottom: 2rem; font-size: 0.9rem; font-weight: 600; color: var(--text-muted); }
.billing-toggle span { transition: 0.2s; cursor: pointer; }
.billing-toggle span.active { color: var(--fg); }
.billing-toggle span span { color: var(--fg); font-size: 0.75rem; background: var(--acc-soft); border: 1px solid var(--border); padding: 0.1rem 0.5rem; border-radius: 100px; margin-left: 0.5rem; }
.toggle-track { width: 44px; height: 22px; background: var(--acc-soft); border: 1px solid var(--border); border-radius: 100px; padding: 2px; cursor: pointer; position: relative; transition: 0.3s; }
.toggle-track.active { background: var(--acc); border-color: var(--acc); }
.toggle-ball { width: 16px; height: 16px; background: white; border-radius: 50%; transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.toggle-track.active .toggle-ball { transform: translateX(22px); }

.card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 3rem;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, background 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.card:hover { 
    transform: translateY(-4px);
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.03);
    border-color: var(--acc);
    overflow: visible; /* Allow console to float above */
}

.card.featured {
    border-color: var(--acc);
    box-shadow: 0 0 12px rgba(0, 242, 255, 0.08);
}

.popular-tag {
    position: absolute; 
    top: 0.7rem; 
    right: 0.7rem; 
    background: var(--acc); 
    color: #000; 
    padding: 0.2rem 0.8rem; 
    border-radius: 100px; 
    font-size: 0.65rem; 
    font-weight: 800; 
    z-index: 20;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.4);
}

/* SPOTLIGHT EFFECT DISABLED: Prevents dark circles on cards */
.card::before, .arch-card::before, .matrix-cell::before {
    display: none;
}

.arch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    perspective: 1500px;
}

.product-card, .arch-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, background 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.arch-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 242, 255, 0.3);
    transform: translateY(-5px);
}

.arch-card::after {
    display: none;
}

.arch-card:hover::after {
    left: 100%;
}

.product-card:hover, .arch-card:hover {
    transform: translateY(-3px);
    border-color: var(--acc);
    box-shadow: 0 5px 15px rgba(0, 242, 255, 0.04);
    overflow: visible; /* Allow console to float above */
}

.product-card.pro, .arch-card.best-value {
    border-color: var(--acc);
    background: rgba(10, 10, 10, 0.6);
}

.tier { font-size: 0.75rem; font-weight: 800; color: var(--text-muted); letter-spacing: 0.1em; margin-bottom: 1.5rem; text-transform: uppercase; }
.card .price, .product-card .price { 
    font-size: 3.2rem; 
    font-weight: 500; /* Laser-Thin Weight to prevent bloom */
    margin-bottom: 3rem; 
    color: var(--acc); /* Restored Original Neon Cyan */
    letter-spacing: 0.05em; 
    display: flex;
    align-items: baseline;
    justify-content: center;
    text-shadow: none !important;
    filter: none !important;
    -webkit-font-smoothing: antialiased;
}
.price-symbol {
    font-size: 1.4rem;
    font-weight: 500;
    margin-right: 0.4rem;
    color: var(--acc); /* Restored Original Neon Cyan */
    opacity: 0.9;
    align-self: flex-start;
    margin-top: 0.6rem;
    text-shadow: none !important;
    filter: none !important;
}
.price-val { font-size: inherit; }
.price-period {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff; /* Whitelisted for clarity */
    margin-left: 0.4rem;
    letter-spacing: 0.05em;
}

.features, .prod-specs { list-style: none; margin-bottom: 3rem; flex-grow: 1; display: flex; flex-direction: column; gap: 1rem; }
.feat, .prod-spec { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 0.65rem; font-size: 0.95rem; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.03); }
.feat:last-child, .prod-spec:last-child { border-bottom: none; }
.feat i, .prod-spec i, .feat svg, .prod-spec svg { 
    color: var(--acc) !important; 
    stroke: var(--acc) !important; 
    width: 18px; 
    opacity: 1; 
    filter: drop-shadow(0 0 1px rgba(0, 242, 255, 0.15));
}
.feat-label, .spec-label span, .feat-val, .spec-val { 
    color: #ffffff !important; 
    font-weight: 400; 
    font-size: 0.95rem;
    opacity: 1 !important;
    letter-spacing: normal;
}
.spec-label { display: flex; align-items: center; gap: 0.45rem; }
.feat.no { opacity: 0.2; }

.btn-deploy { 
    width: 100%; 
    padding: 1rem; 
    border-radius: 8px; 
    border: 1px solid var(--acc); 
    background: transparent; 
    color: var(--acc); 
    font-weight: 800; 
    font-size: 0.9rem; 
    text-transform: uppercase;
    cursor: pointer; 
    transition: 0.3s; 
    position: relative;
    overflow: hidden;
}

.btn-deploy::after, .prod-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(0, 242, 255, 0.2), 
        transparent
    );
    transform: skewX(-20deg);
    animation: shimmer-sweep 4s infinite;
}

@keyframes shimmer-sweep {
    0% { left: -100%; }
    20% { left: 180%; }
    100% { left: 180%; }
}
.btn-deploy:hover { 
    background: var(--acc); 
    color: black; 
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}
.featured .btn-deploy { background: var(--acc); color: black; border: none; }

/* --- FOOTER --- */
.footer { padding: 6rem 0 4rem; background: transparent; }
.footer-top { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 4rem; margin-bottom: 4rem; }
/* REMOVED FOOTER LOGO SPAN IN FAVOR OF REUSABLE LOGO COMPONENT */
.footer-tag { font-size: 0.9rem; color: var(--text-muted); max-width: 300px; }
.foot-col h5 { font-size: 0.75rem; margin-bottom: 1.5rem; color: var(--fg); text-transform: uppercase; letter-spacing: 0.05em; }
.foot-col a { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.75rem; transition: 0.2s; width: fit-content; }
.foot-col a i { width: 14px; height: 14px; opacity: 0.6; transition: 0.2s; }
.foot-col a:hover { color: var(--fg); }
.foot-col a:hover i { color: var(--acc); opacity: 1; }

.footer-bottom { 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding-top: 3rem; 
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- ANIMATIONS --- */
.reveal { 
    opacity: 0; 
    transform: translateY(30px) scale(0.98); 
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); 
}
.reveal.active { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
}

/* --- LUXURY SHOWCASE ARCHITECTURE --- */
.showcase-grid { display: grid; gap: 3rem; margin-top: 4rem; }
.showcase-tier { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.showcase-hero-tier { grid-template-columns: 1fr; }
.showcase-bottom-tier { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

@media (max-width: 900px) {
    .showcase-tier, .showcase-bottom-tier { grid-template-columns: 1fr; }
}

/* BIG PRO CARD OVERRIDE */
.product-card.hero-card {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    padding: 3.5rem 4rem;
    align-items: center;
    gap: 4rem;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid var(--acc);
}

.hero-card .prod-header { flex: 1.2; margin-bottom: 0; text-align: left; }
.hero-card .prod-tier { 
    font-size: 2.8rem; 
    color: #fff; 
    line-height: 1; 
    letter-spacing: 0.25em; 
    font-weight: 700;
}
.hero-card .prod-desc { margin-top: 1.5rem; max-width: 320px; color: var(--text-muted); font-size: 0.85rem; font-family: var(--font-mono); text-transform: uppercase; line-height: 1.5; }
.hero-card .prod-specs { flex: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 3rem; margin-bottom: 0; }
.hero-card .prod-spec { padding: 0.85rem 0; border-bottom: 1px solid rgba(255,255,255,0.03); }
.hero-card .prod-action { flex: 1; text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 2rem; }
.hero-card .price { font-size: 3.5rem; font-weight: 800; color: var(--acc); display: block; }
.hero-card .prod-cta { 
    width: 100%; 
    max-width: 220px; 
    background: var(--acc); 
    color: #000; 
    padding: 1.25rem; 
    font-weight: 900; 
    display: block; 
    text-align: center; 
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 10;
}
.hero-card .prod-cta:hover {
    background: #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* --- EPIC TECHNICAL MATRIX --- */
.matrix-container { 
    margin: 8rem auto 0; 
    overflow-x: auto; 
    border-radius: 24px; 
    border: 1px solid var(--border); 
    background: rgba(5, 5, 5, 0.6); 
    backdrop-filter: blur(30px);
    position: relative;
    box-shadow: 0 40px 100px -20px rgba(0,0,0,0.8);
}
.matrix-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(rgba(255,255,255,0.01) 0px, transparent 1px, transparent 2px);
    background-size: 100% 3px;
    pointer-events: none;
    z-index: 5;
    opacity: 0.5;
}
.matrix-container::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: transparent;
    pointer-events: none;
}
.matrix-table { width: 100%; border-collapse: collapse; text-align: left; min-width: 900px; position: relative; z-index: 10; }
.matrix-table th { 
    padding: 3rem 2rem; 
    font-size: 0.7rem; 
    font-weight: 900; 
    text-transform: uppercase; 
    letter-spacing: 0.25em; 
    color: var(--acc); 
    border-bottom: 1px solid var(--border); 
    background: rgba(255,255,255,0.01);
}
.matrix-table tr { border-bottom: 1px solid rgba(255,255,255,0.02); transition: all 0.3s ease; }
.matrix-table tr:hover { background: rgba(0, 242, 255, 0.04); }
.matrix-table td { 
    padding: 2rem; 
    font-size: 0.9rem; 
    font-weight: 600; 
    color: var(--fg); 
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}
.matrix-table td:first-child { 
    color: var(--text-muted); 
    font-family: 'Sora', sans-serif; 
    font-size: 0.65rem; 
    font-weight: 800; 
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.matrix-table td:not(:first-child) { 
    font-family: 'Roboto Mono', monospace; 
    font-size: 0.85rem;
    color: #fff;
}
.matrix-check, .matrix-table i, .feat i, .prod-spec i, .matrix-table svg, .feat svg, .prod-spec svg { 
    color: var(--acc) !important; 
    stroke: var(--acc) !important; 
    filter: drop-shadow(0 0 1.5px rgba(0, 242, 255, 0.18)); 
    opacity: 1;
}
.matrix-cross { color: var(--text-muted); opacity: 0.3; }

/* --- LUXURY PRODUCT SHOWCASE --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 4rem 0;
    perspective: 2000px;
}

@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .product-grid { grid-template-columns: 1fr; } }

/* --- UNIFIED CARD COMPONENTS --- */
.prod-header { 
    position: relative;
    margin-bottom: 2rem; 
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.prod-name { font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.2em; color: var(--acc); margin-bottom: 0.5rem; display: block; }
.prod-tier { 
    font-size: 1.3rem; 
    font-weight: 700; 
    color: #fff; 
    line-height: 1; 
    letter-spacing: 0.3em; 
    margin-bottom: 0; /* Centered inside bracket */
    text-transform: uppercase;
    white-space: nowrap;
}
.prod-desc { margin-top: 1rem; color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }

.prod-specs { list-style: none; margin-bottom: 3rem; flex-grow: 1; }
.prod-spec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.prod-spec:last-child { border-bottom: none; }

.spec-label i { width: 16px; color: var(--acc); filter: drop-shadow(0 0 2px rgba(0, 242, 255, 0.2)); }

.prod-cta {
    display: block;
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--acc);
    background: transparent;
    color: var(--acc);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
}

.prod-cta:hover { 
    background: var(--acc);
    color: black;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}

.product-card.pro .prod-cta {
    background: var(--acc);
    color: #000;
    border: none;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

.product-card.pro .prod-cta:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

@media (max-width: 1200px) {
    .matrix-container { overflow-x: auto; border-radius: 0; }
    .matrix-grid { min-width: 1200px; }
}

@media (max-width: 900px) {
    .price-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 3rem; }
    .edge-flex { flex-direction: column; text-align: center; }
    .edge-stats { grid-template-columns: 1fr; }
}

/* --- INTERACTIVE: PRICE VAL --- */
.card .price .price-val, .product-card .price .price-val { 
    display: inline-block; 
    font-size: inherit; 
    color: var(--acc); 
    margin-left: 0; 
    font-weight: 500; 
    text-shadow: none !important;
    filter: none !important;
}

/* --- CUSTOM CONFIGURATOR EVOLUTION --- */
.configurator-section { padding: 6rem 0; position: relative; }

.config-deck {
    max-width: 600px;
    margin: 4rem auto 0;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    position: relative;
    box-shadow: 0 40px 100px -20px rgba(0,0,0,0.8);
}

.config-deck::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 40px; height: 1px;
    background: var(--acc);
    box-shadow: 0 0 15px var(--acc);
}

.config-panel { display: flex; flex-direction: column; gap: 2.5rem; margin-bottom: 3rem; }
.config-group { display: flex; flex-direction: column; gap: 1rem; }
.config-group label { 
    font-family: var(--font-mono); 
    font-size: 0.7rem; 
    color: var(--text-muted); 
    text-transform: uppercase; 
    letter-spacing: 0.15em;
    display: flex; 
    justify-content: space-between; 
}
.config-group label span { color: var(--acc); font-weight: 800; font-size: 0.9rem; }

/* RANGE INPUT: CYBER-GLOW EDITION */
input[type="range"].cyber-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.05);
    background-image: linear-gradient(var(--acc), var(--acc));
    background-size: var(--fill-pct, 0%) 100%;
    background-repeat: no-repeat;
    outline: none;
    cursor: pointer;
    border-radius: 2px;
}

input[type="range"].cyber-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 24px;
    background: var(--acc);
    border-radius: 1px;
    box-shadow: 0 0 15px var(--acc);
    cursor: pointer;
    transition: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

input[type="range"].cyber-range::-webkit-slider-thumb:hover { transform: scaleY(1.2); box-shadow: 0 0 25px var(--acc); }

/* INTEGRATED HUD telemetry */
.config-hud {
    padding: 1.5rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hud-main {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    align-items: center;
}

.node-viz-container { 
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 4px;
    width: 80px;
    height: 80px;
}

.config-hud::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 30px; height: 30px;
    border-top: 1px solid var(--acc);
    border-left: 1px solid var(--acc);
    opacity: 0.5;
}

.config-hud::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0; width: 30px; height: 30px;
    border-bottom: 1px solid var(--acc);
    border-right: 1px solid var(--acc);
    opacity: 0.5;
}

.node-dot {
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.05);
    border-radius: 1px;
}
.node-dot {
    width: 100%;
    aspect-ratio: 1;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 1px;
    transition: all 0.4s ease;
}
.node-dot.active {
    background: var(--acc);
    box-shadow: 0 0 8px var(--acc);
}
.node-dot.pulse {
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

/* ACTION BAR */
.hud-action-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-top: 1rem;
}

.config-total { line-height: 1; }

.btn-compile {
    flex-grow: 1;
    max-width: 280px;
    height: 50px;
    background: #fff;
    color: #000;
    border: none;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.btn-compile:hover {
    background: var(--acc);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.4);
}

@keyframes scanLine {
    0% { top: -50%; }
    100% { top: 150%; }
}

.config-summary-pro { padding: 3rem; border-radius: 12px; }
@keyframes floatCode {
    0% { transform: translateX(-20px) translateY(0) rotate(var(--rot, 0deg)); }
    50% { transform: translateX(20px) translateY(-10px) rotate(var(--rot, 0deg)); }
    100% { transform: translateX(-20px) translateY(0) rotate(var(--rot, 0deg)); }
} 

/* Adjust individual rotations */
.cd-dom-1 { --rot: -5deg; }
.cd-dom-2 { --rot: 5deg; }
.cd-dom-3 { --rot: 12deg; }
.cd-dom-4 { --rot: -3deg; }

/* --- RESPONSIVE OVERHAUL v9.0 --- */
@media (max-width: 1100px) {
    :root { font-size: 14px; }
    .container { width: 92%; }
    .hero h1 { font-size: 4.5rem !important; }
}

@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(2, 2, 2, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 4rem 2rem;
        gap: 2rem;
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
        border-top: 1px solid var(--border);
    }

    .nav-links.active { left: 0; }

    #menu-toggle { display: block !important; background: none; border: none; cursor: pointer; }
    
    .hero { padding: 10rem 0 6rem !important; }
    .hero h1 { font-size: 3.5rem !important; }
    
    .price-grid, .arch-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .trust-bar .logo-strip { gap: 2.5rem !important; }
    
    /* Hide technical noise on mobile */
    .terminal-metadata-overlay { display: none !important; } 
    .code-drop { display: none !important; }
    .grid-system { display: none !important; }
}

@media (max-width: 600px) {
    .hero h1 { font-size: 2.8rem !important; }
    .hero-btns { flex-direction: column; gap: 1rem; }
    .btn-p, .btn-s { width: 100%; text-align: center; }
    
    .section-title { font-size: 2.5rem !important; }
    .domain-bar { flex-direction: column; gap: 0.5rem; background: none !important; border: none !important; }
    .domain-input { border: 1px solid var(--border) !important; border-radius: 4px !important; width: 100% !important; }
    .domain-btn { width: 100% !important; border-radius: 4px !important; }
}
