:root {
    --noir: #0a0a0a;
    --ash: #1a1a1a;
    --silver: #e8e8e8;
    --pearl: #f5f5f5;
    --accent: #a2a680;
    --accent-dim: #8a8e6a;
    --glow: #e8e7df;
}

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

body {
    font-family: 'Crimson Pro', serif;
    background: var(--noir);
    color: var(--silver);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 90px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10001;
    background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
    backdrop-filter: blur(10px);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.logo {
    height: 50px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 100%;
    width: auto;
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.logo:hover img {
    filter: brightness(1.1);
}

.nav-profile {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 75px;
    height: 75px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
    box-shadow: 0 4px 15px rgba(162, 166, 128, 0.3);
    transition: all 0.3s ease;
}

.nav-profile:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(162, 166, 128, 0.5);
}

.nav-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--silver);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--pearl);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.nav-login {
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--accent);
    border-radius: 50px;
    color: var(--accent);
    transition: all 0.3s ease;
}

.nav-links a.nav-login::after {
    display: none;
}

.nav-links a.nav-login:hover {
    background: var(--accent);
    color: var(--noir);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 4rem;
}

.hero-content {
    max-width: 1200px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-label {
    font-family: 'Anybody', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

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

.hero h1 {
    font-family: 'Anybody', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--pearl);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.hero h1 .accent-word {
    color: var(--accent);
    display: block;
    font-style: italic;
}

.hero-description {
    font-size: 1.35rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--silver);
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.hero-roles {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

.role-badge {
    padding: 0.75rem 1.5rem;
    background: rgba(162, 166, 128, 0.1);
    border: 1px solid rgba(162, 166, 128, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--accent);
    transition: all 0.3s ease;
}

.role-badge:hover {
    background: rgba(162, 166, 128, 0.2);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent);
    color: var(--noir);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.1s forwards;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(162, 166, 128, 0.4);
}

/* Floating elements background */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.float-shape {
    position: absolute;
    border: 1px solid rgba(162, 166, 128, 0.15);
    animation: float 20s infinite ease-in-out;
}

.float-shape:nth-child(1) {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.float-shape:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
    transform: rotate(45deg);
}

.float-shape:nth-child(3) {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(5deg); }
    50% { transform: translateY(-60px) rotate(-5deg); }
    75% { transform: translateY(-30px) rotate(3deg); }
}

/* Section Styling */
section {
    padding: 8rem 4rem;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    font-family: 'Anybody', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Anybody', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--pearl);
    line-height: 1.2;
}

/* Expertise Section */
.expertise {
    background: linear-gradient(to bottom, var(--noir), var(--ash));
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.expertise-card {
    background: linear-gradient(135deg, rgba(162, 166, 128, 0.05), rgba(26, 26, 26, 0.8));
    border: 1px solid rgba(162, 166, 128, 0.2);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(162, 166, 128, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.expertise-card:hover::before {
    opacity: 1;
}

.expertise-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(162, 166, 128, 0.2);
}

.expertise-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.expertise-card h3 {
    font-family: 'Anybody', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--pearl);
    margin-bottom: 1rem;
}

.expertise-card p {
    font-size: 1.1rem;
    color: var(--silver);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.expertise-list {
    list-style: none;
}

.expertise-list li {
    padding: 0.5rem 0;
    color: var(--silver);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.expertise-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* About Section */
.about {
    background: var(--ash);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, rgba(162, 166, 128, 0.2), rgba(26, 26, 26, 0.8));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(162, 166, 128, 0.3);
    overflow: hidden;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(162, 166, 128, 0.1), transparent);
    z-index: 1;
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-text h3 {
    font-family: 'Anybody', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pearl);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-text p {
    font-size: 1.2rem;
    color: var(--silver);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(162, 166, 128, 0.05);
    border: 1px solid rgba(162, 166, 128, 0.2);
    border-radius: 15px;
}

.stat-number {
    font-family: 'Anybody', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Portfolio Preview */
.portfolio-preview {
    background: var(--noir);
}

.work-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.work-category {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(162, 166, 128, 0.2);
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
}

.work-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(10, 10, 10, 0.9));
    z-index: 1;
}

.work-category:hover {
    transform: scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(162, 166, 128, 0.3);
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 0.4s ease;
}

.work-category:hover .category-image {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.3) 0%, rgba(10, 10, 10, 0.9) 100%);
    z-index: 1;
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    z-index: 2;
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.category-content h3 {
    font-family: 'Anybody', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--pearl);
    margin-bottom: 0.5rem;
}

.category-content p {
    color: var(--silver);
    font-size: 1rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(to bottom, var(--ash), var(--noir));
    text-align: center;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-content h2 {
    font-family: 'Anybody', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--pearl);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.contact-content p {
    font-size: 1.3rem;
    color: var(--silver);
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(162, 166, 128, 0.05);
    border: 1px solid rgba(162, 166, 128, 0.2);
    border-radius: 10px;
    color: var(--pearl);
    font-size: 1rem;
    font-family: 'Crimson Pro', serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(162, 166, 128, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(232, 232, 232, 0.4);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a2a680' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    padding-right: 3rem;
}

.form-group select option {
    background: var(--ash);
    color: var(--pearl);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .cta-button {
    width: 100%;
    margin-top: 1rem;
    cursor: pointer;
    border: none;
    font-family: 'Anybody', sans-serif;
}

#form-messages {
    margin-top: 2rem;
    text-align: center;
}

.form-success {
    padding: 1.5rem;
    background: rgba(162, 166, 128, 0.2);
    border: 1px solid var(--accent);
    border-radius: 10px;
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 600;
}

.form-error {
    padding: 1.5rem;
    background: rgba(255, 77, 77, 0.1);
    border: 1px solid rgba(255, 77, 77, 0.5);
    border-radius: 10px;
    color: #ff6b6b;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
}

.popup {
    background: var(--ash);
    border: 2px solid var(--accent);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.popup-overlay.active .popup {
    transform: scale(1);
}

.popup h3 {
    font-family: 'Anybody', sans-serif;
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.popup-success h3 {
    color: var(--accent);
}

.popup-error h3 {
    color: #ff6b6b;
}

.popup p {
    font-size: 1.2rem;
    color: var(--silver);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.popup-close {
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: var(--noir);
    border: none;
    border-radius: 50px;
    font-family: 'Anybody', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(162, 166, 128, 0.4);
}

.popup-error .popup-close {
    background: #ff6b6b;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.contact-method {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(162, 166, 128, 0.1);
    border: 1px solid rgba(162, 166, 128, 0.3);
    border-radius: 50px;
    color: var(--pearl);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(162, 166, 128, 0.2);
    border-color: var(--accent);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: var(--noir);
    padding: 3rem 4rem;
    border-top: 1px solid rgba(162, 166, 128, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.footer-logo {
    height: 40px;
}

.footer-logo a {
    display: block;
    height: 100%;
}

.footer-logo img {
    height: 100%;
    width: auto;
    transition: filter 0.3s ease;
}

.footer-logo a:hover img {
    filter: brightness(1.1);
}

.footer-text {
    color: var(--silver);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.footer-social a {
    color: var(--silver);
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--silver);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Design */

/* Tablet - position nav profile below navbar */
@media (max-width: 1500px) {
    .nav-profile {
        position: fixed;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10000;
        transition: all 0.3s ease;
    }

    /* When scrolled on tablet, switch to mobile-style nav */
    .tablet-scrolled .nav-profile {
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .tablet-scrolled .hamburger {
        display: flex;
        position: absolute;
        right: 2rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10003;
    }

    .tablet-scrolled .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--ash);
        position: absolute;
        top: 100%;
        left: 0;
        padding: 1rem 0;
        border-top: 1px solid rgba(162, 166, 128, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        z-index: 10002;
    }

    .tablet-scrolled .nav-links.active {
        display: flex;
    }

    .tablet-scrolled .nav-links li {
        width: 100%;
        text-align: center;
    }

    .tablet-scrolled .nav-links a {
        display: block;
        padding: 1rem 2rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 100px !important;
    }

    nav {
        padding: 1rem 2rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        position: fixed;
        flex-wrap: wrap;
        z-index: 10001;
    }

    .logo {
        display: none;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 2rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10003;
    }

    .nav-profile {
        position: static;
        transform: none;
        margin: 0 auto;
        width: 55px;
        height: 55px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--ash);
        position: absolute;
        top: 100%;
        left: 0;
        padding: 1rem 0;
        border-top: 1px solid rgba(162, 166, 128, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        z-index: 10002;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links.active ~ .neural-canvas,
    body:has(.nav-links.active) .neural-canvas {
        opacity: 0.1 !important;
        transition: opacity 0.3s ease;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a.nav-login {
        margin: 1rem 2rem;
        display: inline-block;
    }

    .hero {
        padding: 0 2rem;
        min-height: 100vh;
    }

    section {
        padding: 4rem 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .footer-social {
        position: static;
        transform: none;
    }

    .work-categories {
        grid-template-columns: 1fr;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Interactive Mouse Follower - Neural Network */
.mouse-follower {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    opacity: 0.8;
    box-shadow: 0 0 10px rgba(162, 166, 128, 0.5);
}

.neural-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.6;
}

/* Accessibility - Skip Link */
.skip-link {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ash);
    color: var(--accent);
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--accent);
    border-top: none;
    border-radius: 0 0 8px 8px;
    font-family: 'Anybody', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    z-index: 99999;
    transition: top 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.skip-link:focus {
    top: 0;
    outline: none;
    box-shadow: 0 4px 20px rgba(162, 166, 128, 0.3);
}

/* Accessibility - Focus Visible Styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

.cta-button:focus-visible {
    outline: 3px solid var(--pearl);
    outline-offset: 3px;
}

.hamburger:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 5px;
    border-radius: 5px;
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .scroll-reveal {
        opacity: 1;
        transform: none;
    }

    .hero-label,
    .hero h1,
    .hero-description,
    .hero-roles,
    .cta-button {
        opacity: 1;
        animation: none;
    }

    .neural-canvas {
        display: none;
    }

    .float-shape {
        animation: none;
    }
}
