:root {
    --color-bg: #050505;
    --color-bg-secondary: #0E0E0E;
    --color-text: #EAEAEA;
    --color-text-muted: #888888;
    --color-accent: #00A3FF;
    --color-border: rgba(255, 255, 255, 0.1);
    --font-display: 'Clash Display', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-ease: cubic-bezier(0.25, 1, 0.5, 1);
    --container-padding: 5%;
    --section-padding: clamp(80px, 15vh, 200px);
}

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

::selection {
    background-color: var(--color-accent);
    color: var(--color-bg);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background-color: #222;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #333;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

html.is-loading {
    overflow: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    position: relative;
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* Section Spacing */
section {
    padding: var(--section-padding) 0;
    position: relative;
    width: 100%;
    overflow: hidden;
    clear: both;
}

section:not(.craft-section) {
    z-index: 1;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

/* Background Grid */
.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image:
        linear-gradient(to right, var(--color-border) 1px, transparent 1px),
        linear-gradient(to bottom, var(--color-border) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.2;
    z-index: -1;
    pointer-events: none;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 600;
    opacity: 0;
}

/* Custom Cursor */
.cursor {
    display: none;
}

@media (pointer: fine) and (min-width: 769px) {
    body {
        cursor: none;
    }

    .cursor {
        opacity: 0;
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 9999;
        will-change: transform;
    }

    .cursor-dot {
        width: 6px;
        height: 6px;
        background-color: var(--color-accent);
        border-radius: 50%;
    }

    .cursor-outline {
        width: 30px;
        height: 30px;
        border: 1px solid var(--color-accent);
        border-radius: 50%;
        position: absolute;
        top: -12px;
        left: -12px;
        transition: transform 0.3s var(--transition-ease),
            width 0.4s var(--transition-ease),
            height 0.4s var(--transition-ease),
            background-color 0.4s ease,
            border-color 0.4s ease;
    }

    .cursor.cursor--hover .cursor-outline {
        transform: scale(1.5);
        background-color: rgba(0, 163, 255, 0.2);
        border-color: transparent;
    }

    .cursor.cursor--text .cursor-outline {
        width: 85px;
        height: 85px;
        top: -39px;
        left: -39px;
        background-color: var(--color-text);
        border-color: transparent;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--color-bg);
        font-weight: 600;
        font-size: 0.9rem;
    }
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: clamp(15px, 3vh, 20px) 0;
    z-index: 100;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-100%);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    text-decoration: none;
    color: var(--color-text);
    z-index: 102;
    position: relative;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--color-accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    list-style: none;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent);
}

.nav-cta {
    display: inline-block;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    padding: clamp(8px, 2vw, 10px) clamp(18px, 4vw, 24px);
    border-radius: 50px;
    font-weight: 500;
    font-size: clamp(0.9rem, 2vw, 1rem);
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.nav-cta:hover {
    background-color: var(--color-text);
    color: var(--color-bg);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 102;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 163, 255, 0.15), transparent 50%);
    animation: pulse 10s infinite ease-in-out;
    pointer-events: none;
}

@keyframes pulse {
    50% {
        transform: scale(1.3);
        opacity: 0.6;
    }
}

.hero h1 {
    font-size: clamp(3rem, 12vw, 9rem);
    text-transform: uppercase;
    line-height: 1.05;
    text-align: center;
    position: relative;
    z-index: 1;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    /* Ensure text resets properly */
    transform: none;
}

.line-mask {
    display: block;
    overflow: hidden;
    will-change: transform;
    /* Prevent layout shifts */
    position: relative;
}

.hero .word,
.contact .word {
    transform: translateY(110%);
    display: inline-block;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.scroll-prompt {
    position: absolute;
    bottom: 5vh;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-text-muted);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    letter-spacing: 0.1em;
    white-space: nowrap;
}

/* Section Intro */
.section-intro {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 5vw, 4rem);
    max-width: 30ch;
    margin: 0 auto clamp(60px, 10vh, 120px);
    text-align: center;
    line-height: 1.2;
}

.section-heading {
    font-size: clamp(2rem, 6vw, 4rem);
    margin-bottom: clamp(40px, 8vh, 80px);
    text-align: center;
}

/* Approach Section */
.approach {
    background-color: var(--color-bg-secondary);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
}

.approach-card {
    border: 1px solid var(--color-border);
    padding: clamp(2rem, 4vw, 2.5rem);
    border-radius: 20px;
    position: relative;
    background:
        radial-gradient(circle at 100% 100%, rgba(100, 108, 255, 0.05), transparent 40%),
        var(--color-bg);
    transition: transform 0.5s ease, border-color 0.4s ease, background-color 0.4s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    background-color: rgba(0, 163, 255, 0.03);
}

.approach-card .card-number {
    position: absolute;
    display: block;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--color-text-muted);
    z-index: 1;
}

.approach-card h3 {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.approach-card p {
    color: var(--color-text-muted);
    position: relative;
    z-index: 2;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Craft Section (Horizontal Scroll) */
.craft-section {
    padding: 0;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.craft-section.is-mobile {
    padding: clamp(80px, 15vh, 200px) 0;
    position: relative;
}

.craft-pin-wrapper {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.craft-section.is-mobile .craft-pin-wrapper {
    height: auto;
    overflow: visible;
}

.craft-container {
    width: 300%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    will-change: transform;
}

.craft-section.is-mobile .craft-container {
    width: 100%;
    height: auto;
    display: block;
}

.craft-panel {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    padding: 0 var(--container-padding);
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03), transparent 70%);
}

.craft-section.is-mobile .craft-panel {
    height: auto;
    padding: clamp(80px, 12vh, 150px) var(--container-padding);
}

.craft-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--craft-color);
    margin-bottom: 1rem;
}

.craft-title {
    font-size: clamp(2rem, 8vw, 7rem);
    margin-bottom: clamp(1rem, 3vh, 2rem);
    line-height: 1.1;
}

.craft-description {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    max-width: 45ch;
    margin: 0 auto;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.horizontal-scroll-progress {
    position: absolute;
    bottom: 5vh;
    left: 50%;
    transform: translateX(-50%);
    width: min(200px, 40vw);
    height: 2px;
    background-color: var(--color-border);
}

.progress-bar {
    width: 100%;
    height: 100%;
    background-color: var(--color-text);
    transform: scaleX(0);
    transform-origin: left;
}

/* Work Section */
.work {
    background-color: var(--color-bg-secondary);
}

.swiper {
    width: 100%;
    overflow: visible;
    padding-bottom: 60px;
    will-change: transform;
    /* Hardware acceleration for smooth swiping */
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

.project-card {
    display: block;
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: var(--color-text);
    border: 1px solid transparent;
    transition: border-color 0.4s var(--transition-ease);
    /* Hardware acceleration for smoother interactions */
    will-change: border-color;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

@media (pointer: fine) and (min-width: 769px) {
    .project-card {
        cursor: none;
    }
}

.project-card:hover {
    border-color: var(--color-accent);
}

.project-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s var(--transition-ease);
    /* GPU acceleration for smooth scaling */
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.project-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: clamp(1rem, 3vw, 1.5rem);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    transform: translateY(calc(100% - 70px));
    transition: transform 0.5s var(--transition-ease);
    /* GPU acceleration for smooth slide */
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.project-card:hover .project-card-overlay {
    transform: translateY(0);
}

.project-card-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
}

.project-text h3 {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    line-height: 1.2;
    color: var(--color-text);
    margin: 0;
}

.project-text p {
    font-size: clamp(0.7rem, 2vw, 0.8rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent);
    margin-top: 0.25rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

.project-card:hover .project-text p {
    opacity: 1;
    transform: translateY(0);
}

.project-arrow-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(36px, 8vw, 44px);
    height: clamp(36px, 8vw, 44px);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.4s var(--transition-ease), background-color 0.4s var(--transition-ease);
}

.project-arrow-wrapper svg {
    width: clamp(18px, 4vw, 24px);
    height: clamp(18px, 4vw, 24px);
}

.project-card:hover .project-arrow-wrapper {
    background-color: var(--color-accent);
    transform: rotate(-45deg);
}

/* Swiper Scrollbar */
.swiper-scrollbar {
    position: relative;
    margin-top: 3rem;
    height: 2px;
    background-color: var(--color-border);
    width: 100%;
    bottom: 0;
    /* Smooth scrollbar rendering */
    will-change: opacity;
}

.swiper-scrollbar-drag {
    height: 100%;
    background-color: var(--color-text);
    border-radius: 1px;
    /* GPU acceleration for smooth scrollbar movement */
    will-change: transform, width;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* View All Button */
.view-all-container {
    text-align: center;
    margin-top: clamp(3rem, 8vh, 5rem);
}

.view-all-btn {
    display: inline-block;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    padding: clamp(10px, 2vw, 12px) clamp(22px, 4vw, 28px);
    border-radius: 50px;
    font-weight: 500;
    font-size: clamp(0.9rem, 2vw, 1rem);
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.view-all-btn:hover {
    background-color: var(--color-text);
    color: var(--color-bg);
    transform: translateY(-2px);
}

/* Projects Page */
.projects-page .work {
    padding-top: clamp(120px, 20vh, 200px);
}

.projects-page .projects-grid,
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 400px), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
}

.page-heading {
    font-size: clamp(2.5rem, 8vw, 7rem);
    text-align: center;
    margin-bottom: clamp(60px, 10vh, 120px);
}

/* Process Section */
.process .section-heading {
    text-align: center;
}

.process-steps {
    display: grid;
    gap: clamp(2.5rem, 6vh, 4rem);
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: minmax(80px, 100px) 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
    align-items: start;
    border-top: 1px solid var(--color-border);
    padding-top: clamp(2rem, 4vh, 2.5rem);
    border-radius: 12px;
    position: relative;
    transition: background-color 0.3s ease;
}

.process-step:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.process-step::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-text);
    transform: scaleX(var(--border-scale, 0));
    transform-origin: left;
}

.process-step-num {
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--color-text-muted);
    font-family: var(--font-display);
    line-height: 1;
    transition: color 0.4s ease;
}

.process-step.is-active .process-step-num {
    color: var(--color-text);
}

.process-step-content h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 0.5rem;
}

.process-step-content p {
    color: var(--color-text-muted);
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact h2 {
    font-size: clamp(2rem, 8vw, 7rem);
    max-width: 100%;
    margin-bottom: clamp(40px, 5vh, 60px);
    line-height: 1.1;
}

.final-cta-btn {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-bg);
    padding: clamp(14px, 3vw, 18px) clamp(32px, 6vw, 40px);
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.4s ease;
}

.final-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 163, 255, 0.25);
}

.final-cta-btn span {
    position: relative;
    z-index: 2;
}

.final-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-text);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--transition-ease);
    z-index: 1;
}

.final-cta-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Footer */
.footer {
    padding: clamp(30px, 5vh, 40px) 0;
    color: var(--color-text-muted);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    border-top: 1px solid var(--color-border);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* About Page */
.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 8vw, 7rem);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.about-hero-description {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--color-text-muted);
    max-width: 50ch;
    margin: 0 auto;
    line-height: 1.6;
}

.about-story {
    background-color: var(--color-bg-secondary);
}

.story-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: clamp(2rem, 6vw, 4rem);
    align-items: center;
}

.story-text h2 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    margin-bottom: 2rem;
}

.story-text p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.about-values {
    background-color: var(--color-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
}

.value-card {
    text-align: center;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 16px;
    border: 1px solid transparent;
    transition: border-color 0.4s ease, background-color 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.value-card:hover {
    border-color: var(--color-border);
    background-color: var(--color-bg-secondary);
}

.value-icon {
    font-size: clamp(2.5rem, 6vw, 3rem);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--color-text-muted);
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Responsive Overrides */
@media (max-width: 768px) {
    :root {
        --container-padding: 6%;
        --section-padding: clamp(60px, 12vh, 120px);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: right 0.5s ease;
        z-index: 101;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .nav-cta {
        padding: 12px 28px;
        font-size: 1.1rem;
    }

    .process-step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
        padding: clamp(1.5rem, 3vh, 2rem) clamp(1rem, 2vw, 1.5rem);
    }

    .footer .container {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .project-card-overlay {
        transform: translateY(calc(100% - 65px));
    }
    
    /* Optimize touch scrolling performance */
    .swiper {
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y pinch-zoom;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 5%;
    }

    .section-intro {
        font-size: 1.5rem;
    }

    .approach-card {
        padding: 1.5rem;
    }
}

/* Accessibility */
@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;
    }

    .hero-gradient {
        animation: none;
    }
}

/* Print Styles */
@media print {

    .header,
    .cursor,
    .background-grid,
    #preloader,
    .mobile-menu-toggle {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}