/* ===================================
   BYTEBUZZ INTERACTIVE - MINIMAL DESIGN
   Inspired by Interweb Builder
   =================================== */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand palette — deep navy + electric blue */
    --black: #060d1a;           /* page background (near-black navy) */
    --navy-900: #0a1628;        /* primary navy */
    --navy-800: #0f2038;
    --navy-700: #142a48;
    --navy-600: #1a3560;
    --brand-blue: #1e90ff;      /* signature electric blue */
    --brand-blue-light: #4aa9ff;
    --brand-blue-dark: #1573cc;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3b3c9;
    --gray-500: #7a8aa3;
    --gray-600: #52627a;
    --gray-700: #2a3a55;
    --gray-800: #142238;
    --gray-900: #0a1628;
    --radius-lg: 20px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --font-mono: 'JetBrains Mono', monospace;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-mono);
    font-size: 14px;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--black);
    background-image:
        radial-gradient(ellipse at top, rgba(30, 144, 255, 0.08), transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(30, 144, 255, 0.05), transparent 70%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--brand-blue);
    color: var(--white);
}

.accent {
    color: var(--brand-blue);
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   HEADER
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-800);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 68px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo-mark {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.logo-text .accent {
    color: var(--brand-blue);
}

.nav-desktop {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    opacity: 1;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-btn.active span:first-child {
    transform: rotate(45deg) translate(2px, 2px);
}

.mobile-menu-btn.active span:last-child {
    transform: rotate(-45deg) translate(2px, -2px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 48px 24px;
    gap: 24px;
}

.mobile-nav-link {
    font-size: 24px;
    font-weight: 500;
    color: var(--gray-400);
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: var(--white);
    opacity: 1;
}

/* ===================================
   SECTIONS
   =================================== */
.section {
    padding: 96px 0;
}

.section-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 64px;
}

.section-number {
    font-size: 12px;
    color: var(--brand-blue);
    letter-spacing: 1px;
    font-weight: 600;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
}

.divider {
    height: 1px;
    background: var(--gray-800);
    margin: 0 24px;
}

/* ===================================
   HERO
   =================================== */
.hero {
    padding-top: 140px;
    padding-bottom: 96px;
}

.hero-panel {
    position: relative;
    padding: 72px 56px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(140deg, var(--navy-800) 0%, var(--navy-900) 60%, #060d1a 100%);
    border: 1px solid var(--gray-800);
    overflow: hidden;
    box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.6);
}

.hero-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='320' height='320' viewBox='0 0 320 320' fill='none'><g stroke='%231e90ff' stroke-width='1' stroke-opacity='0.35' fill='none'><path d='M20 20 H120 V80 H200 V40 H300'/><path d='M20 120 H80 V180 H160 V240 H260 V300'/><path d='M300 100 V160 H220 V220'/><path d='M40 260 H140 V200'/></g><g fill='%231e90ff' fill-opacity='0.5'><circle cx='120' cy='80' r='3'/><circle cx='200' cy='40' r='3'/><circle cx='300' cy='20' r='3'/><circle cx='80' cy='180' r='3'/><circle cx='160' cy='240' r='3'/><circle cx='260' cy='300' r='3'/><circle cx='220' cy='160' r='3'/><circle cx='140' cy='200' r='3'/></g></svg>");
    background-size: 320px 320px;
    opacity: 0.35;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at 70% 40%, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 70% 40%, black 20%, transparent 75%);
}

.hero-panel::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 60%;
    height: 140%;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.18), transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 800px;
    z-index: 1;
}

.hero-label {
    font-size: 12px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
}

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 28px;
    border: 1px solid var(--gray-700);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn {
    border-radius: var(--radius-sm);
}

.btn-primary {
    background: var(--brand-blue);
    color: var(--white);
    border-color: var(--brand-blue);
    box-shadow: 0 6px 24px -8px rgba(30, 144, 255, 0.6);
}

.btn-primary:hover {
    background: var(--brand-blue-light);
    border-color: var(--brand-blue-light);
    box-shadow: 0 10px 30px -6px rgba(30, 144, 255, 0.7);
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--gray-700);
}

.btn-secondary:hover {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
    opacity: 1;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* ===================================
   SERVICES
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--gray-800);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-item {
    background: var(--navy-900);
    padding: 48px 32px;
    position: relative;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-blue);
    transition: width 0.4s ease;
}

.service-item:hover::before {
    width: 100%;
}

.service-name {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.service-desc {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.7;
}

.service-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.service-cta .btn {
    margin-top: 24px;
}

/* ===================================
   PORTFOLIO
   =================================== */
.filters {
    display: flex;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--gray-700);
    color: var(--gray-400);
    cursor: pointer;
    border-radius: 999px;
    transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--brand-blue);
    color: var(--white);
    border-color: var(--brand-blue);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--gray-800);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.portfolio-item {
    background: var(--navy-900);
    padding: 48px 32px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.portfolio-title {
    transition: color 0.2s ease;
}

.portfolio-item:hover .portfolio-title {
    color: var(--brand-blue);
}

.portfolio-item:hover {
    background: var(--gray-900);
}

.portfolio-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.portfolio-number,
.portfolio-date {
    font-size: 11px;
    color: var(--gray-500);
    letter-spacing: 1px;
}

.portfolio-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.portfolio-desc {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ===================================
   TEAM
   =================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--gray-800);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.team-member {
    background: var(--navy-900);
    padding: 48px 24px;
    text-align: center;
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
    border: 2px solid var(--gray-700);
    transition: border-color 0.3s ease;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .team-avatar {
    border-color: var(--brand-blue);
}

.team-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-role {
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.team-bio {
    font-size: 12px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonial-slider {
    max-width: 800px;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-quote {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
    font-style: italic;
    color: var(--gray-300);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--gray-700);
}

.testimonial-name {
    font-size: 14px;
    font-weight: 600;
}

.testimonial-role {
    font-size: 12px;
    color: var(--gray-500);
}

.slider-controls {
    display: flex;
    gap: 8px;
    margin-top: 48px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-700);
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.slider-dot.active {
    background: var(--brand-blue);
    width: 24px;
    border-radius: 4px;
}

/* ===================================
   ABOUT
   =================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.about-heading {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}

.about-text {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--gray-800);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ===================================
   CONTACT
   =================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.contact-value {
    font-size: 14px;
    margin-bottom: 8px;
}

.contact-list li {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.contact-link {
    color: var(--gray-400);
}

.contact-link:hover {
    color: var(--white);
}

/* Form */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    font-family: var(--font-mono);
    font-size: 14px;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gray-700);
    color: var(--white);
    transition: border-color 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--white);
}

.form-input::placeholder {
    color: var(--gray-600);
}

select.form-input {
    cursor: pointer;
    appearance: none;
}

textarea.form-input {
    resize: vertical;
    min-height: 100px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    border-top: 1px solid var(--gray-800);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.footer-logo .accent {
    color: var(--brand-blue);
}

.footer-tagline {
    font-size: 13px;
    color: var(--gray-500);
}

.footer-heading {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    font-size: 13px;
    color: var(--gray-400);
    transition: color 0.2s ease;
}

.footer-links ul li a:hover {
    color: var(--white);
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--gray-800);
    font-size: 12px;
    color: var(--gray-600);
}

.footer-status {
    color: var(--gray-500);
}

/* ===================================
   MODAL
   =================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: var(--navy-900);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s ease;
}

.modal-close:hover {
    background: var(--gray-800);
}

.modal-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-body {
    padding: 40px;
}

.modal-category {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

.modal-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.modal-desc {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 32px;
}

.modal-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 24px 0;
    border-top: 1px solid var(--gray-800);
    border-bottom: 1px solid var(--gray-800);
    margin-bottom: 32px;
}

.meta-label {
    display: block;
    font-size: 11px;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.meta-value {
    font-size: 13px;
    font-weight: 500;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .section {
        padding: 64px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .hero {
        padding-top: 120px;
        padding-bottom: 64px;
    }
    
    .hero-title {
        font-size: 36px;
    }

    .hero-panel {
        padding: 48px 24px;
        border-radius: var(--radius-md);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .modal-meta {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Animation */
.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* Slide In Left */
.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* Slide In Right */
.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Scale In */
.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.active {
    opacity: 1;
    transform: scale(1);
}

/* Enhanced Hover Effects */
.service-item {
    transition: background 0.3s ease, transform 0.3s ease;
}

.service-item:hover {
    background: var(--navy-800);
    transform: translateY(-4px);
}

.portfolio-item {
    transition: background 0.3s ease, transform 0.3s ease;
}

.portfolio-item:hover {
    background: var(--navy-800);
    transform: translateY(-4px);
}

.team-member {
    transition: background 0.3s ease;
}

.team-member:hover {
    background: var(--navy-800);
}

/* Button Pulse Animation */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

/* Text Glow on Hover */
.logo:hover {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Smooth Underline Animation */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Divider Animation */
.divider {
    position: relative;
    overflow: hidden;
}

.divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--white), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-label {
    animation: float 3s ease-in-out infinite;
}

/* Hero title (blinking cursor removed to match brand mark) */

/* Modal Animation */
.modal {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal:not(.hidden) {
    opacity: 1;
}

.modal-content {
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal:not(.hidden) .modal-content {
    transform: scale(1);
}

/* Form Input Focus Animation */
.form-input {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
    border-color: var(--white);
    box-shadow: 0 2px 0 0 var(--white);
}

/* Filter Button Active State */
.filter-btn.active {
    animation: pulse 0.3s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Team Avatar Hover */
.team-avatar {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover .team-avatar {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 64px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--white);
    z-index: 101;
    transition: width 0.1s ease;
}