/* =====================================================
   DIGITAL SCORPION INTERACTIVE - MODERNIZED ABOUT PAGE
   =====================================================
   Refined dark sci-fi aesthetic with modular design.
   Built on the blog design system foundation.
   
   Enhanced Features:
   - Modular card-based sections
   - Scroll-triggered animations
   - Layered ambient backgrounds
   - Premium visual hierarchy
   - Dynamic hover interactions
   ===================================================== */

/* Import refined typography */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Exo+2:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Rajdhani:wght@300;400;500;600;700&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* =====================================================
   REFINED VARIABLES
   ===================================================== */
:root {
    /* Refined Color Palette */
    --scorpion-primary: #FF6B35;
    --golden-accent: #D4AF37;
    --mystic-purple: #7C3AED;
    --tech-teal: #00D4AA;
    --deep-void: #1A202C;
    --steel-gray: #2D3748;
    --silver-mist: #718096;
    --pure-light: #F7FAFC;
    --content-gray: #4A5568;
    --border-subtle: #E2E8F0;
    
    /* Sophisticated Gradients */
    --primary-gradient: linear-gradient(135deg, var(--scorpion-primary) 0%, var(--golden-accent) 100%);
    --accent-gradient: linear-gradient(135deg, var(--mystic-purple) 0%, var(--tech-teal) 100%);
    --content-gradient: linear-gradient(180deg, var(--pure-light) 0%, #F8F9FA 100%);
    --shadow-gradient: linear-gradient(to bottom, rgba(26, 32, 44, 0.97) 0%, rgba(45, 55, 72, 0.95) 100%);
    --section-gradient: linear-gradient(135deg, rgba(26, 32, 44, 0.95) 0%, rgba(45, 55, 72, 0.9) 100%);
    
    /* Professional Typography */
    --font-display: 'Orbitron', monospace;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-accent: 'Exo 2', sans-serif;
    --font-tech: 'Rajdhani', sans-serif;
    
    /* Refined Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-elegant: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* =====================================================
   GLOBAL FOUNDATION
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body), Arial, sans-serif;
    background: var(--deep-void);
    color: var(--pure-light);
    line-height: 1.7;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Multi-layered ambient background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 212, 170, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

#app {
    position: relative;
    z-index: 2;
}

/* =====================================================
   NAVIGATION - ENHANCED FROM BLOG SYSTEM
   ===================================================== */
.navbar {
    background: var(--shadow-gradient);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.2);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(26, 32, 44, 0.98);
    backdrop-filter: blur(25px);
    border-bottom-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.25);
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    transition: var(--transition-smooth);
}

.navbar.scrolled .navbar__container {
    padding: 0.75rem 2rem;
}

.navbar__logo img {
    height: 50px;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.4));
}

.navbar.scrolled .navbar__logo img {
    height: 45px;
}

.navbar__logo:hover img {
    filter: drop-shadow(0 0 25px rgba(255, 107, 53, 0.6));
    transform: scale(1.05);
}

.navbar__links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.navbar__links a {
    color: var(--pure-light);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: var(--transition-smooth);
    position: relative;
}

.navbar__links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: var(--scorpion-primary);
    transition: transform 0.3s ease;
}

.navbar__links a:hover,
.navbar__links a.active {
    color: var(--scorpion-primary);
    background: rgba(255, 107, 53, 0.1);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger i {
    color: var(--pure-light);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.hamburger:hover i {
    color: var(--scorpion-primary);
}

/* =====================================================
   HERO STUDIO INTRODUCTION
   ===================================================== */
.studio-intro {
    padding: 8rem 0 4rem;
    background: var(--deep-void);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.studio-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.studio-intro__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.intro__text {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 1s ease-out 0.3s forwards;
}

.intro__text h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--pure-light);
    line-height: 1.1;
    margin-bottom: 2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro__text p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(247, 250, 252, 0.9);
    margin-bottom: 3rem;
    font-family: var(--font-body);
}

.intro__cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary-gradient);
    color: var(--pure-light);
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--font-tech);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-elegant);
    border: 2px solid transparent;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
    border-color: var(--golden-accent);
}

.cta-button.secondary {
    background: rgba(124, 58, 237, 0.1);
    color: var(--mystic-purple);
    border: 2px solid rgba(124, 58, 237, 0.3);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.2);
}

.cta-button.secondary:hover {
    background: var(--mystic-purple);
    color: var(--pure-light);
    border-color: var(--mystic-purple);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.4);
}

.intro__image {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 1s ease-out 0.5s forwards;
}

.intro__image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 60px rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition-elegant);
}

.intro__image-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
                0 0 80px rgba(255, 107, 53, 0.2);
}

.intro__image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-elegant);
}

/* =====================================================
   MEET THE TEAM SECTION
   ===================================================== */
.meet-team {
    padding: 6rem 0;
    background: rgba(45, 55, 72, 0.3);
    position: relative;
    overflow: hidden;
}

.meet-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 60%, rgba(124, 58, 237, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 40%, rgba(0, 212, 170, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.meet-team__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.team__image {
    overflow: hidden;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 60px rgba(255, 107, 53, 0.1);
    transition: var(--transition-elegant);
}

.team__image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
                0 0 80px rgba(255, 107, 53, 0.2);
}

.team__image-container {
    border-radius: 20px;
    overflow: hidden;
    /* Removed extra box-shadow and border to avoid duplication */
    transition: var(--transition-elegant);
}


.team__image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-elegant);
}

.team__text {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 1s ease-out forwards;
    animation-delay: 0.4s;
}

.team__text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--pure-light);
    margin-bottom: 2rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team__text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(247, 250, 252, 0.9);
    margin-bottom: 2.5rem;
}

.team__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition-smooth);
}

.stat-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--scorpion-primary);
    transform: translateY(-5px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--scorpion-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-tech);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--silver-mist);
}

/* =====================================================
   TEAM PROFILES SECTION
   ===================================================== */
.team-profiles {
    padding: 6rem 0;
    background: var(--deep-void);
    position: relative;
}

.team-profiles__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.team-profiles h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--pure-light);
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 1s ease-out forwards;
}

.team-select {
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

.team-select select {
    background: rgba(45, 55, 72, 0.8);
    color: var(--pure-light);
    border: 2px solid rgba(255, 107, 53, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-tech);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    outline: none;
}

.team-select select:hover,
.team-select select:focus {
    border-color: var(--scorpion-primary);
    background: rgba(45, 55, 72, 0.9);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

.profiles__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-items: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.4s forwards;
}

.profile__card {
    background: rgba(45, 55, 72, 0.6);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition-elegant);
    text-align: center;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 250px;
}

.profile__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
    border-color: var(--scorpion-primary);
}

.profile__image {
    margin-bottom: 1.5rem;
    position: relative;
}

.profile__image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 107, 53, 0.3);
    transition: var(--transition-smooth);
}

.profile__card:hover .profile__image img {
    border-color: var(--scorpion-primary);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.4);
}

.profile__card h3 {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--pure-light);
    margin-bottom: 0.5rem;
}

.profile__role {
    font-family: var(--font-tech);
    font-size: 0.9rem;
    color: var(--silver-mist);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =====================================================
   VALUES SECTION (NEW)
   ===================================================== */
.values-section {
    padding: 6rem 0;
    background: rgba(45, 55, 72, 0.2);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 40% 80%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(255, 107, 53, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.values__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.values__header {
    text-align: center;
    margin-bottom: 4rem;
}

.values__header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--pure-light);
    margin-bottom: 1.5rem;
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.value__card {
    background: rgba(26, 32, 44, 0.8);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition-elegant);
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.value__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.value__card:hover::before {
    transform: scaleX(1);
}

.value__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
    border-color: var(--scorpion-primary);
}

.value__icon {
    font-size: 3rem;
    color: var(--scorpion-primary);
    margin-bottom: 1.5rem;
}

.value__card h3 {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--pure-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value__card p {
    color: rgba(247, 250, 252, 0.9);
    line-height: 1.7;
    font-size: 1rem;
}

/* =====================================================
   HIRING SECTION ENHANCED
   ===================================================== */
.hiring {
    padding: 8rem 0;
    background: var(--deep-void);
    position: relative;
    overflow: hidden;
    background-image: url('src/About/dsiHiring.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hiring::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 32, 44, 0.85);
    backdrop-filter: blur(2px);
}

.hiring::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hiring__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hiring__text {
    position: relative;
    z-index: 3;
}

.hiring__text h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--pure-light);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hiring__text p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(247, 250, 252, 0.95);
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.modal__buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: var(--primary-gradient);
    color: var(--pure-light);
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--font-tech);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-elegant);
    border: 2px solid transparent;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    text-shadow: none;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);
    border-color: var(--golden-accent);
}

.social__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(124, 58, 237, 0.1);
    color: var(--mystic-purple);
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.5rem;
    border: 2px solid rgba(124, 58, 237, 0.3);
    transition: var(--transition-elegant);
    backdrop-filter: blur(10px);
}

.social__link:hover {
    background: var(--mystic-purple);
    color: var(--pure-light);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
}

.hiring__video {
    position: relative;
    z-index: 3;
}

.hiring__video-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
                0 0 60px rgba(255, 107, 53, 0.2);
    border: 2px solid rgba(255, 107, 53, 0.3);
    transition: var(--transition-elegant);
}

.hiring__video-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5),
                0 0 80px rgba(255, 107, 53, 0.3);
}

.hiring__video video {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-elegant);
}

/* =====================================================
   FOOTER ENHANCED
   ===================================================== */
.footer {
    background: var(--shadow-gradient);
    padding: 3rem 0 2rem;
    text-align: center;
    border-top: 2px solid rgba(255, 107, 53, 0.3);
    position: relative;
}

.footer__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer__content p {
    color: var(--pure-light);
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.footer__links {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    gap: 2rem;
}

.footer__links a {
    color: var(--golden-accent);
    text-decoration: none;
    font-family: var(--font-tech);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.footer__links a:hover {
    color: var(--scorpion-primary);
    background: rgba(255, 107, 53, 0.1);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Scroll-triggered animations */
@media (prefers-reduced-motion: no-preference) {
    .animate-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease-out;
    }
    
    .animate-on-scroll.in-view {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1024px) {
    .studio-intro__container,
    .meet-team__container,
    .hiring__container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .team__stats {
        justify-items: center;
    }
    
    .hiring {
        background-attachment: scroll;
    }
    
    .navbar__links {
        display: none;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        background: var(--shadow-gradient);
        padding: 2rem;
        position: absolute;
        top: 100%;
        left: 0;
        border-top: 2px solid rgba(255, 107, 53, 0.3);
        backdrop-filter: blur(20px);
    }

    .navbar__links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .studio-intro {
        padding: 6rem 0 3rem;
        min-height: auto;
    }
    
    .intro__text h1 {
        font-size: 2.5rem;
    }
    
    .intro__text p,
    .team__text p,
    .hiring__text p {
        font-size: 1rem;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .values__grid {
        grid-template-columns: 1fr;
    }
    
    .value__card {
        padding: 2rem 1.5rem;
    }
    
    .profiles__grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }
    
    .profile__card {
        padding: 1.5rem;
    }
    
    .modal__buttons {
        align-items: center;
    }
    
    .team__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .studio-intro {
        padding: 5rem 0 2rem;
    }
    
    .intro__text h1 {
        font-size: 2rem;
    }
    
    .intro__text,
    .team__text,
    .hiring__text {
        padding: 0 1rem;
    }
    
    .profile__image img {
        width: 100px;
        height: 100px;
    }
    
    .profile__card h3 {
        font-size: 1.1rem;
    }
    
    .profile__role {
        font-size: 0.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .team__stats {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   ACCESSIBILITY ENHANCEMENTS
   ===================================================== */
.cta-button:focus,
.btn:focus,
.social__link:focus,
.navbar__links a:focus {
    outline: 3px solid var(--golden-accent);
    outline-offset: 3px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .profile__card,
    .value__card,
    .intro__image-container,
    .team__image-container,
    .hiring__video-container {
        border-width: 4px;
    }
    
    .navbar {
        border-bottom-width: 4px;
    }
    
    .footer {
        border-top-width: 4px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hiring {
        background-attachment: scroll;
    }
}

/* =====================================================
   CUSTOM SCROLLBAR
   ===================================================== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--deep-void);
    border: 1px solid var(--steel-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 6px;
    border: 2px solid var(--deep-void);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gradient);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

/* =====================================================
   SELECTION STYLING
   ===================================================== */
::selection {
    background: var(--scorpion-primary);
    color: var(--pure-light);
    text-shadow: none;
}

::-moz-selection {
    background: var(--scorpion-primary);
    color: var(--pure-light);
    text-shadow: none;
}