@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Server+Mono:wght@400;700&family=Space+Grotesk:wght@300;400;500;700&display=swap');

:root {
    /* Blade Runner 2049 corporate monochrome */
    --bg-color: #0a0a0a;
    --bg-surface: #0f0f11;
    --bg-hover: #151519;
    --header-bg: #0a0a0a;
    --text-color: #ffffff;
    --text-primary: #e8e8ec;
    --text-secondary: #a8a8b0;
    --text-tertiary: #6a6a74;
    --accent-color: #c8c8d0;
    --accent-hover: #d8d8e0;
    --accent-light: rgba(200, 200, 208, 0.1);
    --border-color: rgba(255, 255, 255, 0.1);
    --border-light: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(200, 200, 208, 0.2);
    --subtle-bg: rgba(255, 255, 255, 0.02);
    --glass-bg: rgba(10, 10, 10, 0.6);
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --glow-sm: 0 0 20px rgba(255, 255, 255, 0.08);
    --glow-md: 0 0 40px rgba(255, 255, 255, 0.1);
    --glow-lg: 0 0 60px rgba(255, 255, 255, 0.15);
}

/* Keyframe Animations */
@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.15);
    }
}

@keyframes slide-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes line-expand {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes scroll-hint {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: translateY(8px);
        opacity: 1;
    }
}

@keyframes gradient-slide {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Ambient Background Animations */
@keyframes grid-drift-far {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 60px;
    }
}

@keyframes grid-drift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 40px;
    }
}

@keyframes grid-drift-near {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 25px 25px;
    }
}

@keyframes scan-line {
    0% {
        top: -2px;
    }
    100% {
        top: 100vh;
    }
}

@keyframes line-pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

@keyframes glow-drift {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Grid Overlay - Base (Shared) */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Far layer - slowest drift, loosest grid (depth background) */
.grid-overlay.grid-far {
    background-image: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.03) 1px,
        transparent 1px
    );
    background-size: 60px 60px;
    animation: grid-drift-far 90s linear infinite;
}

/* Mid layer - standard drift speed, normal grid (focal depth) */
.grid-overlay.grid-mid {
    background-image: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.06) 1px,
        transparent 1px
    );
    background-size: 40px 40px;
    animation: grid-drift 60s linear infinite;
}

/* Near layer - fastest drift, tightest grid (depth foreground) */
.grid-overlay.grid-near {
    background-image: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.04) 1px,
        transparent 1px
    );
    background-size: 25px 25px;
    animation: grid-drift-near 35s linear infinite;
}

/* Scan line across mid grid layer */
.grid-overlay.grid-mid::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
    animation: scan-line 15s linear infinite;
    pointer-events: none;
}

/* Ambient glow spots on mid grid layer */
.grid-overlay.grid-mid::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 40%, rgba(255, 255, 255, 0.012) 0%, transparent 40%),
                      radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.008) 0%, transparent 45%),
                      radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.005) 0%, transparent 50%);
    background-size: 200% 200%;
    background-position: 0% 0%;
    animation: glow-drift 40s ease-in-out infinite;
    pointer-events: none;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0em;
    position: relative;
    z-index: 2;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.3;
    color: var(--text-color);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.08);
    font-weight: 300;
    letter-spacing: 0.04em;
}

h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
    font-weight: 400;
    position: relative;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    margin-top: 2rem;
    font-weight: 400;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
    color: var(--accent-hover);
}

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

/* Content container */
.content .container {
    max-width: 900px;
}

/* Header & Navigation */
.header {
    padding: 1.5rem 0;
    margin-bottom: 3rem;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(16px) saturate(120%);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 20%, rgba(255,255,255,0.08) 80%, transparent 100%) 1;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.05), 
                0 1px 0 rgba(255, 255, 255, 0.1),
                0 -1px 0 rgba(255, 255, 255, 0.02);
}

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

.logo-link {
    color: var(--text-color);
    text-decoration: none;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
    z-index: 101;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-logotype {
    height: auto;
    max-height: 2.5rem;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.05));
}

.logo-font {
    height: auto;
    max-height: 2.5rem;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.05));
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 0;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: 'Server Mono', monospace;
    position: relative;
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

nav a:hover {
    color: var(--accent-color);
}

nav a:hover::after {
    transform: scaleX(1);
}

nav a.active {
    color: var(--accent-color);
    font-weight: 500;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 0;
    margin-bottom: 8rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}



.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    height: 12rem;
    width: auto;
    max-width: 90vw;
    object-fit: contain;
    animation: fade-in 0.8s ease-out;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 400px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    animation: line-expand 1s ease-out 0.8s both, line-pulse 8s ease-in-out 1.8s infinite;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.scroll-indicator::after {
    content: '';
    width: 1px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 1px;
    animation: scroll-hint 2s ease-in-out infinite;
}

/* Main Content */
main {
    position: relative;
    z-index: 2;
}

.content {
    padding: 3rem 0 6rem;
}

.content p {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.8;
}

.content ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0 2rem;
}

.content li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
}

.content li:before {
    content: "▸";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: 600;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.1));
}

.content a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Content Page - Geometric Panel Treatment */
.content h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    margin-top: 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%) 1;
}

.content h2 {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-left: 2px solid rgba(255, 255, 255, 0.15);
    padding: 1.5rem 2rem;
    margin: 3rem -2rem 0;
    margin-bottom: 0;
    position: relative;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.01);
    transition: all 0.3s ease;
}

.content h2::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: 8px;
    width: 10px;
    height: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0.6;
}

.content h2::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12" fill="none" stroke="currentColor" stroke-width="1" stroke-linecap="round" stroke-linejoin="round"><path d="M4 2l4 4-4 4"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.content h2:hover {
    border-left-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.02), 0 0 20px rgba(255, 255, 255, 0.02);
}

.content h2:hover::after {
    opacity: 0.7;
}

.content h2 + p,
.content h2 + ul {
    background: rgba(255, 255, 255, 0.005);
    border-left: 1px solid rgba(255, 255, 255, 0.04);
    padding-left: 2rem;
    margin-left: 0;
    padding: 1.5rem 2rem;
    margin: 0 -2rem;
}

.content h2 + ul li {
    margin-bottom: 0.8rem;
}

.content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-left: 16px;
    position: relative;
}

.content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(20px);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-delay-1.visible {
    transition-delay: 0.1s;
}

.reveal-delay-2.visible {
    transition-delay: 0.2s;
}

.reveal-delay-3.visible {
    transition-delay: 0.3s;
}

.reveal-delay-4.visible {
    transition-delay: 0.4s;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    padding: 3rem 2.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transform-origin: left;
    transition: opacity 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), transparent);
    background-position: 0 0;
    background-size: 200% 100%;
    animation: gradient-slide 2s ease infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.05), 0 0 80px rgba(255, 255, 255, 0.02);
    transform: translateY(-4px);
}

.service-card:hover::before,
.service-card:hover::after {
    opacity: 1;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--text-color);
    padding-left: 16px;
    position: relative;
}

.service-card h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
}

.service-card h3::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12" fill="none" stroke="currentColor" stroke-width="1" stroke-linecap="round" stroke-linejoin="round"><path d="M4 2l4 4-4 4"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.service-card:hover h3::after {
    opacity: 0.6;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Service card CTA buttons */
.service-card .contact-cta {
    margin-top: auto;
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
}

.service-card .contact-cta:hover {
    color: #000000;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    margin: 6rem 0;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
}

.about-section h2 {
    font-size: 2.2rem;
    margin-top: 0;
    margin-bottom: 2rem;
    background: none;
    border: none;
    backdrop-filter: none;
    padding: 0;
    margin: 0 0 2rem 0;
    box-shadow: none;
    position: relative;
    padding-left: 20px;
}

.about-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    border: none;
}

.about-section p {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.8;
    max-width: 800px;
}

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

.highlight-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.01);
    border-left: 2px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
}

.highlight-item:hover {
    border-left-color: rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.03);
}

.highlight-item h4 {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.highlight-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    text-align: center;
    margin-top: 4rem;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
}

.contact-section h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.08);
    background: none;
    border: none;
    backdrop-filter: none;
    padding: 0;
    box-shadow: none;
}

.contact-section h2::before {
    display: none;
}

.contact-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.contact-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    border: 1px solid var(--accent-color);
    border-radius: 2px;
    color: var(--accent-color);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
    animation: glow-pulse 3s ease-in-out infinite;
    font-family: 'Server Mono', monospace;
    position: relative;
}

.contact-cta::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12" fill="none" stroke="%23c8c8d0" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M4 2l4 4-4 4"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: brightness(1);
}

.contact-cta::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12" fill="none" stroke="%23c8c8d0" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M8 2L4 6l4 4"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: brightness(1);
}

.contact-cta:hover {
    background: var(--accent-color);
    color: var(--bg-color);
    transform: scale(1.02);
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.2);
    gap: 1.2rem;
}

.contact-cta:hover::before,
.contact-cta:hover::after {
    opacity: 1;
    filter: invert(1);
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-family: 'Server Mono', monospace;
    letter-spacing: 0.05em;
}

.breadcrumbs a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.breadcrumbs span {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: rgba(5, 5, 7, 0.9);
    border-top: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 20%, rgba(255,255,255,0.08) 80%, transparent 100%) 1;
    margin-top: 8rem;
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.footer-section h4 {
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 1.2rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'Server Mono', monospace;
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-tertiary);
    font-size: 0.85rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-legal a {
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .header {
        padding: 1rem 0;
        margin-bottom: 2rem;
    }

    .header .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    nav {
        width: 100%;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    nav a {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
    }

    .logo-logotype,
    .logo-font {
        max-height: 2rem;
    }

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

    .hero-logo-display img {
        height: 8rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .about-section {
        padding: 3rem 0;
        margin: 3rem 0;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 3rem 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

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

    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }

    .grid-overlay {
        display: none;
    }

    .contact-cta {
        animation: none;
        box-shadow: none;
    }

    .content h2 {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding: 1.5rem;
    }

    .content h2 + p,
    .content h2 + ul {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding: 1.5rem;
    }
}

/* Accessibility: Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    /* Disable all continuous ambient animations on all 3 grid layers */
    .grid-overlay.grid-far,
    .grid-overlay.grid-mid,
    .grid-overlay.grid-near {
        animation: none;
    }
    
    .grid-overlay.grid-mid::before {
        animation: none;
    }
    
    .grid-overlay.grid-mid::after {
        animation: none;
    }
    
    .hero::after {
        animation: line-expand 1s ease-out 0.8s both;
    }
    
    .hero p {
        background: none;
        -webkit-text-fill-color: unset;
        animation: slide-in-up 0.8s ease-out 0.3s both;
        color: var(--text-secondary);
    }
    
    /* Keep hover transitions but remove looping animations */
    .hero-logo-display {
        animation: fade-in 0.8s ease-out;
    }
    
    .hero-logo-display img {
        animation: none;
    }
    
    .hero-logo-display img:first-child {
        animation: none;
    }
    
    .scroll-indicator::after {
        animation: none;
    }
    
    .service-card::after {
        animation: none;
    }
    
    .contact-cta {
        animation: none;
    }
}
