@charset "UTF-8";

:root {
    /* Extreme Contrast Palette */
    --bg-dark: #050505;
    --bg-light: #ffffff;
    --bg-subtle: #111111;
    --text-light: #f5f5f5;
    --text-dark: #121212;
    --text-muted: #888888;
    
    /* Cyber Accents (used very sparingly for CTA) */
    --accent: #ff003c; 
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Animation easing */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

/* Base Reset & Smooth Scrolling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-sans);
    line-height: 1.5;
    overflow-x: hidden;
    cursor: none; /* For custom cursor */
}

body.loading {
    overflow: hidden;
}

/* 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: 6px;
    height: 6px;
    background-color: var(--bg-light);
}
.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}
.cursor-outline.hovered {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: transparent;
}

/* Typography Classes */
.serif { font-family: var(--font-serif); }
.serif-italic { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
h1, h2, h3 { font-weight: 400; line-height: 1.1; }
a { text-decoration: none; color: inherit; cursor: none; }
ul { list-style: none; }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4vw;
}

/* Minimalist Navigation */
.site-nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 4vw; /* Slightly slimmed padding for fixed header */
    z-index: 900;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-brand a {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 2.2rem;
    letter-spacing: 4px;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px var(--text-muted),
        0 0 40px var(--accent);
    transition: all 0.4s var(--ease-out-expo);
    display: inline-block;
}
.nav-brand a:hover {
    text-shadow: 
        0 0 10px #fff,
        0 0 20px #fff,
        0 0 40px var(--text-muted),
        0 0 80px var(--accent),
        0 0 120px var(--accent);
    transform: scale(1.05);
}
.brand-thin { 
    font-weight: 300; 
    opacity: 1;
    color: #00f0ff; /* Neon cyan for LABS */
    text-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff, 0 0 40px #00f0ff;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.lang-dropdown {
    position: relative;
    font-family: var(--font-sans);
}

.lang-current {
    background: transparent;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: none;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 0;
    transition: color 0.3s;
}

.lang-current:hover {
    color: var(--accent);
}

.lang-options {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--bg-subtle);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-out-expo);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 1000;
}

.lang-options.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.lang-option {
    padding: 0.5rem 1.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: none;
    transition: all 0.2s;
    text-align: center;
}

.lang-option:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--accent);
}

.btn-primary {
    border: 1px solid var(--text-light);
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s var(--ease-out-expo);
}
.btn-primary:hover {
    background-color: var(--text-light);
    color: var(--text-dark);
}

.menu-trigger {
    background: transparent;
    border: none;
    cursor: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 200;
}
.menu-trigger .line {
    width: 30px;
    height: 2px;
    background-color: var(--text-light);
    transition: 0.3s;
}
.menu-trigger.active .line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-trigger.active .line:nth-child(2) { transform: translateY(-0px) rotate(-45deg); }

/* Full Screen Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background-color: var(--bg-subtle);
    z-index: 150;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out-expo);
}
.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
.huge-menu {
    text-align: center;
}
.huge-menu li {
    margin: 2rem 0;
    overflow: hidden;
}
.menu-link {
    font-family: var(--font-serif);
    font-size: 5vw;
    color: var(--text-light);
    position: relative;
    display: inline-block;
}
.menu-link::after {
    content: attr(data-text);
    position: absolute;
    left: 0; top: 0;
    color: var(--accent);
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
    transition: clip-path 0.4s var(--ease-out-expo);
}
.menu-link:hover::after {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* Animations Trigger */
.fade-up, .reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s var(--ease-out-expo);
}
.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-canvas-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 100; /* Pulled much higher to override canvas context */
    text-align: center;
    pointer-events: none;
    width: 100%; /* Ensure flex container works */
    margin-top: 80px; /* Prevent clipping at the top */
}

.hero-badge {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.huge-title {
    font-size: clamp(3.5rem, 8vw, 10rem);
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -2px;
    color: var(--text-light); /* Explicit color */
    margin: 0;
}

.scroll-prompt {
    position: absolute;
    bottom: 3rem;
    left: 4vw;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}
.scroll-line {
    width: 50px;
    height: 1px;
    background-color: var(--text-muted);
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background-color: var(--bg-light);
    animation: slideRight 2s infinite ease-in-out;
}
@keyframes slideRight { 100% { left: 100%; } }

/* Light Section Override */
.light-section {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

/* Statement Section */
.statement-section {
    padding: 15rem 0;
    text-align: center;
}
.statement-text {
    font-size: clamp(2rem, 5vw, 4.5rem);
    max-width: 1200px;
    margin: 0 auto;
}
.highlight-text {
    font-style: italic;
    color: var(--accent);
}
.statement-meta {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    font-size: 0.9rem;
    color: #666;
    text-align: left;
}
.meta-label { text-transform: uppercase; letter-spacing: 1px; }
.meta-desc { max-width: 300px; }

/* Expertise Section */
.expertise-section {
    padding: 10rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.section-header {
    margin-bottom: 8rem;
}
.section-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 2rem;
    max-width: 500px;
}

.expertise-list {
    border-top: 1px solid rgba(255,255,255,0.1);
}
.expertise-item {
    display: grid;
    grid-template-columns: 100px 1fr 50px;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
}
.exp-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-muted);
}
.expertise-item h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.4s var(--ease-out-expo);
}
.expertise-item p {
    color: var(--text-muted);
    max-width: 600px;
}
.exp-icon {
    font-size: 2rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s var(--ease-out-expo);
}

.expertise-item:hover h3 {
    transform: translateX(20px);
    color: var(--bg-light);
}
.expertise-item:hover .exp-icon {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Section */
.contact-section {
    padding: 10rem 0;
}
.contact-madlibs {
    max-width: 1200px;
    margin: 0 auto;
}

.massive-contact {
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1.4;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.madlibs-input {
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--text-dark);
    font-family: var(--font-serif);
    font-size: inherit;
    color: var(--accent);
    padding: 0 10px;
    margin: 0 10px;
    outline: none;
    width: auto;
    min-width: 250px;
    text-align: center;
    transition: all 0.3s ease;
}

.madlibs-input:focus {
    border-bottom-color: var(--accent);
    background-color: rgba(255, 0, 60, 0.05);
}

.madlibs-input::placeholder {
    color: #999;
    font-style: italic;
    opacity: 0.7;
}

.contact-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
}
.btn-submit {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: none;
}
.btn-submit .btn-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-out-expo);
}
.btn-submit:hover .btn-arrow {
    background: var(--text-dark);
    color: var(--bg-light);
}
.form-feedback {
    display: none;
    margin-top: 1rem;
    color: #0ab050;
    font-weight: 500;
}
.form-feedback.show { display: block; }

/* Footer */
.site-footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.footer-brand {
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-light);
}
.footer-socials {
    display: flex;
    gap: 2rem;
}

/* Responsiveness */
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .expertise-item { grid-template-columns: 50px 1fr 30px; padding: 3rem 0; }
    .expertise-item h3 { font-size: 2rem; }
    .statement-section { padding: 8rem 0; }
    .statement-meta { flex-direction: column; gap: 1rem; }
}
@media (max-width: 600px) {
    .nav-controls .btn-primary { display: none; }
    .footer-flex { flex-direction: column; gap: 2rem; text-align: center; }
}
