:root {
    /* Color Palette */
    --bg-dark: #050A14;
    --bg-darker: #020408;
    --navy: #0A192F;
    --teal: #64FFDA;
    --teal-dim: rgba(100, 255, 218, 0.1);
    --gold: #FFD700;
    --text-white: #E6F1FF;
    --text-slate: #8892B0;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-slate);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    line-height: 1.1;
}

h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--teal);
}

.text-gradient {
    background: linear-gradient(120deg, var(--teal), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-label {
    display: inline-block;
    color: var(--teal);
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.centered {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Utilities */
.wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--teal);
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--teal-dim);
}

.btn-secondary {
    border: 1px solid var(--teal);
    color: var(--teal);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: var(--teal-dim);
}

/* Custom Cursor */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--teal);
}
.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--teal);
    transition: width 0.2s, height 0.2s, top 0.1s, left 0.1s;
    opacity: 0.5;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(5, 10, 20, 0.8);
    transition: all 0.3s;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.logo .accent {
    color: var(--teal);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--teal);
}

.btn-nav {
    border: 1px solid var(--teal);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    color: var(--teal) !important;
}

.btn-nav:hover {
    background: var(--teal-dim);
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Snap Scrolling Structure */
/* Note: We use visual sections but standard scrolling with extensive height for 'deck' feel */
.snap-container {
    width: 100%;
}

.snap-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--nav-height) 0 2rem 0;
}

/* Hero Section */
.hero-section {
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: 0;
    animation: zoomSlow 20s infinite alternate;
}

@keyframes zoomSlow {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5,10,20,0.8), var(--bg-dark));
    z-index: 1;
}

.hero-section .content {
    position: relative;
    z-index: 2;
    text-align: left;
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-slate);
    max-width: 600px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* About Section */
.about-section {
    background-color: var(--bg-dark);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.stats-row {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--teal);
}

.stat-desc {
    font-size: 0.9rem;
}

.card-stack {
    position: relative;
    height: 400px;
}

.glass-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    position: absolute;
    width: 80%;
    transition: transform 0.3s;
}

.glass-card:first-child {
    top: 0;
    left: 0;
    z-index: 1;
}

.glass-card.offset {
    top: 40px;
    left: 40px;
    z-index: 2;
    background: rgba(10, 25, 47, 0.9);
    border-color: var(--teal);
}

/* Services Section */
.services-section {
    background-color: var(--bg-darker);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--navy);
    padding: 2.5rem;
    border-radius: 8px;
    transition: transform 0.3s;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--teal);
}

.icon-box {
    color: var(--teal);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.feature-list li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--teal);
}

/* Future Section */
.future-section {
    background: radial-gradient(circle at center, #112240 0%, var(--bg-dark) 70%);
}

.glow-box {
    border: 1px solid var(--teal-dim);
    padding: 4rem 2rem;
    border-radius: 16px;
    background: rgba(10, 25, 47, 0.5);
    backdrop-filter: blur(5px);
}

.highlight {
    color: var(--teal);
}

.max-600 {
    max-width: 600px;
    margin: 1.5rem auto;
}

.feature-pills {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.pill {
    padding: 0.5rem 1.5rem;
    background: var(--glass);
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: var(--teal);
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-dark);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-white);
    text-decoration: none;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.contact-item:hover {
    color: var(--teal);
}

.glass-form {
    background: var(--navy);
    padding: 2rem;
    border-radius: 8px;
}

.glass-form input, .glass-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    color: var(--text-white);
    font-family: var(--font-body);
}

.glass-form input:focus, .glass-form textarea:focus {
    outline: none;
    border-color: var(--teal);
}

.full-width {
    width: 100%;
}

.main-footer {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-slate);
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}
.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}
.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease-out;
}

.visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-10px);}
    60% {transform: translateX(-50%) translateY(-5px);}
}

/* Mobile */
@media (max-width: 768px) {
    .split-layout, .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .nav-links {
        display: none; /* Simplification for this demo, usually hamburger menu toggle */
    }
    
    .hamburger {
        display: block;
    }
    
    .card-stack { height: 250px; }
    
    .cursor-dot, .cursor-outline { display: none; }
}
