@import url('https://fonts.googleapis.com/css2?family=Geist+Mono:wght@300;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important; /* Forces custom cursor usage everywhere */
}

:root {
    --bg-color: #050811;
    --accent-fluid: #00ffcc;
    --accent-blue: #0066ff;
    --text-muted: #8a99ad;
    --danger-color: #ff3366;
}

body {
    background-color: var(--bg-color);
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* WebGL Background Canvas */
.webgl {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* Custom Liquid Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
}
.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-fluid);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}
.cursor-fluid {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 255, 204, 0.25);
    background: rgba(0, 255, 204, 0.02);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

/* Navigation Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

/* REVISION 1: Custom Vector Logo Ruleset */
.site-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-title {
    font-family: 'Geist Mono', monospace;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 1.3rem;
    text-transform: uppercase;
    font-style: italic;
    line-height: 1;
}
.logo-subtitle {
    font-family: 'Geist Mono', monospace;
    font-weight: 500;
    font-size: 0.6rem;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: var(--accent-fluid);
    margin-top: 4px;
    line-height: 1;
}

.nav-links {
    display: flex;
    gap: 40px;
}
.nav-item {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.nav-item:hover {
    color: #fff;
}
.nav-cta {
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-size: 0.85rem;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(5px);
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}
.tagline {
    font-family: 'Geist Mono', monospace;
    color: var(--accent-fluid);
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
}
.hero h1 {
    font-size: 6.5vw;
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -3px;
    margin-bottom: 30px;
}
.gradient-text {
    background: linear-gradient(45deg, var(--accent-fluid), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
}
.btn-group {
    display: flex;
    gap: 20px;
}
.magnetic-btn {
    display: inline-block;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.95rem;
    transition: background 0.3s, transform 0.1s;
}
.primary-btn {
    background: #fff;
    color: #000;
    padding: 18px 36px;
    font-weight: 600;
    border: none;
}
.secondary-btn {
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 18px 36px;
}

/* Content Sections */
.content-section {
    padding: 150px 0;
    position: relative;
    z-index: 2;
}
.section-sticky-title h2 {
    font-size: 3rem;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.2;
}
.section-sticky-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}
.section-number {
    font-family: 'Geist Mono', monospace;
    color: var(--accent-fluid);
    display: block;
    margin-bottom: 10px;
}

/* Data Center Image Styling */
.datacenter-image-container {
    margin-top: 50px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.datacenter-img {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(0.5) brightness(1);
    transition: filter 0.5s;
}
.datacenter-image-container:hover .datacenter-img {
    filter: saturate(1) brightness(0.8);
}

/* Feature Cards & Blocks */
.cards-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: border-color 0.4s;
}
.feature-card:hover {
    border-color: rgba(0, 255, 204, 0.3);
}
.feature-card h3, .info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.feature-card p, .info-block p {
    color: var(--text-muted);
}
.info-block {
    background: rgba(255,255,255,0.01);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 40px 20px;
}

/* Footer & Call To Action */
.footer-cta {
    padding: 150px 0 40px 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(to top, #001122, transparent);
}
.text-center {
    text-align: center;
}
.footer-cta h2 {
    font-size: 4vw;
    letter-spacing: -2px;
    margin-bottom: 20px;
}
.footer-cta p {
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 1.2rem;
}
.cta-large {
    border: 1px solid var(--accent-fluid);
    color: var(--accent-fluid);
    padding: 25px 50px;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 0 30px rgba(0, 255, 204, 0.1);
}
.sub-footer {
    margin-top: 150px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    text-align: center;
    font-family: 'Geist Mono', monospace;
    font-size: 0.8rem;
    color: #4a5568;
}

/* Modals Overlay Base */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 4, 10, 0.85);
    backdrop-filter: blur(20px);
    z-index: 200;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.modal-content {
    width: 92%;
    max-width: 480px;
    position: relative;
    border-color: rgba(255,255,255,0.08) !important;
    background: rgba(10, 15, 30, 0.7) !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}
.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
}
.modal-close-btn:hover {
    color: #fff;
}

/* Input Fields & Textareas */
.input-group {
    margin-bottom: 18px;
}
.input-group input, .input-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, background-color 0.3s;
}
.input-group textarea {
    resize: none;
}
.input-group input:focus, .input-group textarea:focus {
    outline: none;
    border-color: var(--accent-fluid);
    background: rgba(255, 255, 255, 0.04);
}
.forget-pwd-btn {
    font-size: 0.8rem !important;
    font-family: 'Geist Mono', monospace;
}

/* REVISION 5: Modern Dynamic UI Banner Layout */
.stratus-notification {
    position: fixed;
    bottom: 40px;
    right: 40px;
    padding: 20px 35px;
    background: rgba(6, 11, 25, 0.9);
    border-left: 3px solid var(--accent-fluid);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-right: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    border-radius: 6px;
    color: #fff;
    font-size: 0.9rem;
    font-family: 'Geist Mono', monospace;
    z-index: 1000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    transform: translateY(100px);
    opacity: 0;
}
.stratus-notification.error-style {
    border-left-color: var(--danger-color);
}

/* Utilities */
.w-100 { width: 100%; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.text-white { color: #fff; }
.text-accent { color: var(--accent-fluid); font-family: 'Geist Mono', monospace; font-size: 0.8rem; letter-spacing: 2px; }
.font-mono { font-family: 'Geist Mono', monospace; }

@media(max-width: 968px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 40px; }
    .site-header .nav-links { display: none; }
    .hero h1 { font-size: 10vw; }
    .section-sticky-title h2 { font-size: 2.5rem; }
    .stratus-notification { left: 20px; right: 20px; bottom: 20px; text-align: center; }
}