:root {
    --bg-main: #e8f4fc; /* Very light icy blue */
    --text-navy: #001244; /* MUCH bluer and darker */
    --neon-lime: #ccff00; /* Neon Lime */
    --text-army-green: #0a4000; /* Deep dense toxic green */
    
    --font-heading: 'TikTok Sans', 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

/* Custom Cursor */
.cursor-crosshair {
    width: auto;
    height: auto;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    color: var(--neon-lime);
    font-size: 2rem;
    font-weight: 900;
    transition: transform 0.1s;
    background: transparent;
    font-family: monospace;
    text-shadow: 1px 1px 0 var(--text-navy);
}

.cursor-crosshair::after {
    content: '>';
    position: relative;
    top: -2px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-main);
    color: var(--text-navy);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a, button {
    cursor: none;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
    filter: grayscale(10%) contrast(110%);
    transition: filter 0.5s;
}

img:hover {
    filter: grayscale(0%) contrast(100%);
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-navy);
    line-height: 1.05;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(232, 244, 252, 0.9);
    backdrop-filter: blur(20px);
    z-index: 100;
    border-bottom: 2px solid var(--text-navy);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.nav-links a {
    margin: 0 16px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.3s;
}

.nav-links a:hover, a.hover-lime:hover {
    color: var(--neon-lime);
    background-color: var(--text-navy);
    padding: 4px 8px;
    margin: 0 8px;
}

.lang-switcher a {
    margin-left: 12px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 900;
    color: var(--text-navy);
    opacity: 0.4;
    transition: all 0.3s;
}

.lang-switcher a:hover {
    opacity: 1;
}

.lang-switcher a.active {
    opacity: 1;
    border-bottom: 3px solid var(--neon-lime);
    padding-bottom: 2px;
}

/* Layout Utilities */
.text-only-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hero */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
}

.hero-bg-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(204, 255, 0, 0.4) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

.claim-badge {
    display: inline-block;
    background-color: var(--neon-lime);
    color: var(--text-army-green);
    font-family: var(--font-heading);
    font-weight: 900;
    padding: 12px 24px;
    font-size: 1.5rem;
    margin-bottom: 32px;
}

.hero-text h1 {
    font-size: 6.5rem;
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 32px;
    text-transform: uppercase;
    color: var(--text-navy);
    max-width: 95%;
}

.hero-text .subtitle {
    font-size: 1.8rem;
    line-height: 1.5;
    color: var(--text-navy);
    max-width: 80%;
    font-weight: 600;
    border-left: 8px solid var(--neon-lime);
    padding-left: 24px;
}

/* Sections */
.section {
    padding: 140px 0;
}

.section-title {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    line-height: 1.05;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    height: 8px;
    width: 50%;
    background-color: var(--neon-lime);
}

.big-p {
    font-size: 2.2rem;
    line-height: 1.4;
    font-weight: 600;
    max-width: 900px;
}

/* Team */
.team-section {
    background-color: var(--neon-lime);
    color: var(--text-army-green);
}

.team-section h2, .team-section h3, .team-section .role, .team-section .desc {
    color: var(--text-army-green);
}

.team-section .section-title::after {
    background-color: var(--text-army-green);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.img-container {
    position: relative;
    margin-bottom: 32px;
}

.team-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border: 3px solid var(--text-army-green);
}

.team-info h3 {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 8px;
    text-transform: uppercase;
    line-height: 1.05;
}

.team-info .role {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 16px;
    border-bottom: 3px solid var(--text-army-green);
    display: inline-block;
}

.team-info .desc {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Projects */
.projects-list {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.project-item-text {
    border-bottom: 4px solid var(--text-navy);
    padding-bottom: 60px;
}

.project-details h3 {
    font-size: 4.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 24px;
    line-height: 1.05;
}

.project-details p {
    font-size: 1.8rem;
    color: var(--text-navy);
    line-height: 1.4;
    max-width: 900px;
    font-weight: 600;
}

/* Details */
.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.detail-card {
    position: relative;
    padding: 20px 0;
}

.metric-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--neon-lime);
}

.detail-card .metric-line {
    width: 60px;
    height: 4px;
    background: var(--neon-lime);
    margin-bottom: 24px;
}

/* Contact Form Input Syling extensions */
input[type="text"], input[type="email"], select, textarea {
    background-color: #f0f7fb; 
    border: 3px solid var(--text-navy);
    color: var(--text-navy);
    transition: box-shadow 0.2s, background-color 0.2s, transform 0.2s;
    font-family: var(--font-body);
}

input[type="text"]:focus, input[type="email"]:focus, select:focus, textarea:focus {
    outline: none;
    box-shadow: 8px 8px 0px 0px var(--neon-lime);
    background-color: #ffffff;
    transform: translate(-2px, -2px);
}

/* Form inputs hover effect */
input[type="text"]:hover, input[type="email"]:hover, select:hover, textarea:hover {
    box-shadow: 4px 4px 0px 0px var(--neon-lime);
}

.logo {
    white-space: nowrap;
}

.detail-card h3 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 16px;
    text-transform: uppercase;
    line-height: 1.05;
}

.detail-card p {
    font-size: 1.4rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: var(--text-navy);
    color: var(--bg-main);
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    flex-direction: column;
    gap: 80px;
}

.footer-brand h2 {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 10rem);
    font-weight: 900;
    line-height: 1.0;
    color: var(--bg-main);
}

.highlight-lime {
    color: var(--text-navy);
    background-color: var(--neon-lime);
    padding: 4px 12px;
    display: inline;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.45;
    position: relative;
    top: 14px;
}

.footer-links {
    margin-top: 60px;
    border-top: 3px solid var(--neon-lime);
    padding-top: 30px;
    display: flex;
    gap: 30px;
}

.footer-links a {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--neon-lime);
}

.btn {
    display: inline-block;
    padding: 24px 48px;
    background-color: var(--neon-lime);
    color: var(--text-army-green);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 3px solid var(--neon-lime);
    transition: all 0.3s;
}

.btn:hover {
    background-color: var(--text-navy);
    color: var(--bg-main);
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0px 0px var(--neon-lime);
}

/* Cursor Context Modifiers */
.cursor-crosshair.cursor-navy {
    color: var(--text-navy);
    text-shadow: 1px 1px 0 var(--bg-main);
}
.cursor-crosshair.cursor-lime {
    color: var(--text-navy);
    text-shadow: 1px 1px 0 var(--neon-lime);
}

.footer-bottom {
    margin-top: 40px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 450px;
    background-color: var(--text-navy);
    border: 4px solid var(--neon-lime);
    z-index: 10000;
    box-shadow: 20px 20px 0px rgba(204, 255, 0, 0.2);
    transition: right 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: row;
}

.cookie-banner.minimized {
    right: -410px;
}

.cookie-pull-tab {
    width: 40px;
    background: var(--neon-lime);
    color: var(--text-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
}

.cookie-pull-tab:hover {
    background: #e6ff66;
}

.cookie-pull-tab span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    letter-spacing: 0.1em;
    font-family: var(--font-heading);
    font-weight: 900;
}

.cookie-content {
    padding: 30px;
    flex: 1;
}

.cookie-content p {
    color: var(--neon-lime);
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.cookie-buttons {
    display: flex;
    gap: 16px;
}

.cookie-buttons .btn {
    padding: 16px 24px;
    font-size: 1.2rem;
    flex: 1;
    text-align: center;
}

/* --- ANIMATION CLASSES --- */
.overflow-hidden { overflow: hidden; }

.fade-in, .slide-in-left, .slide-in-right, .slide-in-top, .slide-in-bottom, .pop-scale {
    opacity: 0;
    will-change: transform, opacity;
}

.slide-in-left { transform: translateX(-100px); transition: all 1s cubic-bezier(0.19, 1, 0.22, 1); }
.slide-in-right { transform: translateX(100px); transition: all 1s cubic-bezier(0.19, 1, 0.22, 1); }
.slide-in-top { transform: translateY(-50px); transition: all 1s cubic-bezier(0.19, 1, 0.22, 1); }
.slide-in-bottom { transform: translateY(100px); transition: all 1s cubic-bezier(0.19, 1, 0.22, 1); }
.pop-scale { transform: scale(0.9); transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1); }
.fade-in { transition: all 1s ease-out; }

.slide-in-left.animated, .slide-in-right.animated, .slide-in-top.animated, .slide-in-bottom.animated, .fade-in.animated, .pop-scale.animated {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* Responsive */
@media (max-width: 1250px) {
    .nav-link-details { display: none !important; }
}

@media (max-width: 1080px) {
    .nav-link-team { display: none !important; }
}

@media (max-width: 1024px) {
    .hero-text h1 { font-size: 4rem; }
    .section-title { font-size: 3rem; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .details-grid { grid-template-columns: repeat(2, 1fr); }
    .cookie-banner { width: 90%; right: 5%; bottom: 5%; }
}

@media (max-width: 768px) {
    .team-grid, .details-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hero { padding-top: 140px; min-height: auto; }
}

/* Chrome vs Safari Tracking Override */
h1, h2, h3, h4, .logo, .section-title, .claim-badge, .highlight-lime {
    letter-spacing: -0.04em;
}
@supports (background: -webkit-named-image(i)) {
    h1, h2, h3, h4, .logo, .section-title, .claim-badge, .highlight-lime {
        letter-spacing: normal;
    }
}
