:root {
    --primary: #ff6a00;
    --text-light: #ffffff;
    --text-dim: #a0aec0;
    --glass-bg: rgba(15, 15, 15, 0.95);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #050505;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    overscroll-behavior: none;
}

#main-content {
    position: relative;
    z-index: 10;
}

/* --- Section Layouts --- */
.scroll-section {
    min-height: 100vh;
    width: 100%;
    padding: 100px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.centered-grid-section {
    background-color: transparent;
    align-items: center; 
}

.centered-content-wrapper {
    width: 100%;
    max-width: 1200px;
}

/* --- Standard Glass Cards --- */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 50px;
    border-radius: 8px;
    max-width: 800px;
}

.glass-card.full-width {
    max-width: 1200px;
    margin: 0 auto;
}

.center-text { text-align: center; }

/* --- TIMELINE BLOCK --- */
.timeline-block {
    display: grid;
    grid-template-columns: min-content 4px 1fr;
    gap: 30px;
    align-items: start;
    padding: 40px;
    background: #111111;
    border: 1px solid #222222;
    border-radius: 8px;
    width: 100%;
    max-width: 1200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.t-col-dates {
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #888888;
    font-size: 1.2rem;
    line-height: 1.2;
    white-space: nowrap;
}

.t-col-divider {
    background-color: var(--primary);
    width: 4px;
    height: 100%;
    border-radius: 2px;
}

.t-col-content {
    display: flex;
    flex-direction: column;
}

.t-company {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 5px 0;
    color: #ffffff;
    text-transform: uppercase;
}

.t-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 15px 0;
    color: var(--primary);
    text-transform: uppercase;
}

.t-bullets ul {
    margin: 0;
    padding-left: 20px;
}

.t-bullets li {
    color: #cccccc;
    margin-bottom: 12px;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* --- Smoother Sliding Animations --- */
.animate-up {
    opacity: 0;
    transform: translateY(60px);
    filter: blur(10px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.95);
    filter: blur(12px);
    transition: all 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.scroll-section.is-visible .animate-up {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.scroll-section.is-visible .animate-scale {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}


/* --- Typography --- */
h1, h2, h3, .job-meta {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.orange-text {
    color: var(--primary) !important;
}

.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    width: 250px;
    margin-bottom: 30px;
    animation: pulse 4s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.glitch-name {
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -2px;
    margin: 0;
}

.last-name {
    color: var(--primary);
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 5px;
    color: var(--text-dim);
    margin-top: 10px;
    margin-bottom: 20px;
}

.contact-chips {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-family: 'Inter', sans-serif;
    color: #ccc;
    font-size: 0.9rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.job-meta {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-dim);
    margin-bottom: 15px;
}

p, li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 15px;
}


/* --- Split Sections & Logos --- */
.split-section {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.content-left, .content-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.studio-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.brand-logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* --- Resources Grid & Interactive Meters --- */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.resource-item {
    background: rgba(0,0,0,0.4);
    padding: 30px;
    border-radius: 4px;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
}

.resource-item.highlight {
    border-color: var(--primary);
}

/* NEW INTERACTIVE METERS CSS */
.skill-meter {
    margin-bottom: 20px;
    margin-top: 5px;
}

.skill-meter:last-child {
    margin-bottom: 0;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #222222;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.progress {
    height: 100%;
    background: var(--primary);
    width: 0; /* Starts at 0, filled by JS */
    border-radius: 3px;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 10px rgba(255, 106, 0, 0.8);
}

/* --- Footer --- */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.footer-section, 
.footer-section * {
    color: #ffffff !important;
}

.footer-section .huge-contact {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    text-decoration: none;
    margin-bottom: 10px;
    transition: transform 0.3s;
}

.footer-section .huge-contact:hover {
    transform: translateY(-5px);
}

/* --- Scroll Indicator --- */
.scroll-indicator {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-dim);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-dim);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

@media (max-width: 900px) {
    .scroll-section {
        padding: 60px 5%;
        min-height: auto; 
    }
    
    .split-section, .split-section.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .glass-card {
        padding: 25px;
    }

    .timeline-block {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 25px;
    }

    .t-col-dates {
        flex-direction: row;
        gap: 10px;
        font-size: 1rem;
    }

    .t-col-divider {
        width: 50px;
        height: 4px;
    }
    
    .t-company {
        font-size: 1.8rem;
    }

    .hero-logo {
        width: 180px;
    }
}