:root {
    --blue: #0B1623;
    --blue-dark: #05080D;
    --green: #2AA889;
    --green-dark: #176E60;
    --red: #A93A47;
    --red-dark: #7D2934;
    --accent-red: #D65A66;
    --cream: #F5F0E8;
    --cream-dark: #2A3743;
    --charcoal: #111822;
    --panel: #0F1A26;
    --panel-soft: #142231;
    --line: rgba(245,240,232,0.16);
    --muted: rgba(245,240,232,0.68);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--blue-dark);
    color: var(--cream);
    overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1000;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(5, 8, 13, 0.92), rgba(5, 8, 13, 0.35), transparent);
    backdrop-filter: blur(10px);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--cream);
    letter-spacing: -0.02em;
    text-decoration: none;
}

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

.nav-links a {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    color: var(--cream);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

.nav-cta {
    background: var(--red);
    color: var(--cream);
    border: 1px solid rgba(245,240,232,0.12);
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s, background 0.3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    background: var(--red-dark);
}

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

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

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

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

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

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--blue-dark);
    z-index: 99;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    font-family: 'Space Mono', monospace;
    font-size: 1.25rem;
    color: var(--cream);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.75rem;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--green);
}

.mobile-menu .nav-cta {
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    min-height: 96vh;
    background: var(--blue-dark);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding: 9rem 4rem 5rem;
    overflow: hidden;
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    inset: -20%;
    background:
        repeating-linear-gradient(90deg, transparent 0 88px, rgba(245,240,232,0.055) 88px 89px),
        repeating-linear-gradient(0deg, transparent 0 88px, rgba(245,240,232,0.045) 88px 89px);
    opacity: 0.38;
    transform: rotate(-3deg);
    animation: gridDrift 24s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    left: 4rem;
    right: 4rem;
    bottom: 2rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(245,240,232,0.4), transparent);
    z-index: 1;
}

@keyframes gridDrift {
    from {
        transform: rotate(-3deg) translate3d(0, 0, 0);
    }
    to {
        transform: rotate(-3deg) translate3d(89px, 89px, 0);
    }
}

.hero-content {
    max-width: 760px;
    padding: 0;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-scene {
    position: absolute;
    top: 16%;
    right: 4rem;
    width: min(42vw, 560px);
    height: 62%;
    min-height: 360px;
    z-index: 1;
    pointer-events: none;
}

.hero-panel {
    position: absolute;
    background: rgba(15,26,38,0.78);
    border: 1px solid rgba(245,240,232,0.14);
    box-shadow: 0 24px 80px rgba(0,0,0,0.4);
    backdrop-filter: blur(12px);
    animation: floatPanel 7s ease-in-out infinite;
}

.hero-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-top: 3px solid rgba(42,168,137,0.55);
    opacity: 0.8;
}

.panel-primary {
    top: 3%;
    right: 0;
    width: 72%;
    height: 43%;
}

.panel-secondary {
    left: 0;
    bottom: 7%;
    width: 62%;
    height: 34%;
    animation-delay: -2.5s;
}

.panel-top {
    height: 2.25rem;
    border-bottom: 1px solid rgba(245,240,232,0.1);
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0 1rem;
}

.panel-dot {
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: rgba(245,240,232,0.34);
}

.panel-dot:nth-child(1) {
    background: var(--accent-red);
}

.panel-dot:nth-child(2) {
    background: var(--green);
}

.panel-rows {
    padding: 1.35rem 1rem;
    display: grid;
    gap: 0.75rem;
}

.panel-row {
    height: 0.45rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(42,168,137,0.88), rgba(245,240,232,0.16));
    transform-origin: left;
    animation: linePulse 3.6s ease-in-out infinite;
}

.panel-row:nth-child(2) {
    width: 76%;
    animation-delay: -0.8s;
}

.panel-row:nth-child(3) {
    width: 52%;
    background: linear-gradient(90deg, rgba(214,90,102,0.86), rgba(245,240,232,0.14));
    animation-delay: -1.4s;
}

.panel-row:nth-child(4) {
    width: 84%;
    animation-delay: -2.1s;
}

.hero-node {
    position: absolute;
    width: 0.95rem;
    height: 0.95rem;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(42,168,137,0.35);
    animation: nodePulse 2.8s ease-out infinite;
}

.node-a {
    top: 18%;
    left: 16%;
}

.node-b {
    top: 48%;
    right: 18%;
    background: var(--accent-red);
    animation-delay: -0.9s;
}

.node-c {
    bottom: 18%;
    right: 36%;
    animation-delay: -1.7s;
}

.hero-link {
    position: absolute;
    height: 1px;
    width: 220px;
    background: linear-gradient(90deg, transparent, rgba(42,168,137,0.72), transparent);
    transform-origin: left center;
    opacity: 0.7;
    animation: signalSweep 4.5s linear infinite;
}

.link-a {
    top: 29%;
    left: 22%;
    transform: rotate(18deg);
}

.link-b {
    bottom: 29%;
    right: 20%;
    transform: rotate(-24deg);
    animation-delay: -2s;
}

.hero-orbit {
    position: absolute;
    right: 18%;
    bottom: 12%;
    width: 8.5rem;
    height: 8.5rem;
    border: 1px solid rgba(245,240,232,0.13);
    border-radius: 50%;
    animation: orbitSpin 16s linear infinite;
}

.hero-orbit::before {
    content: '';
    position: absolute;
    top: -0.28rem;
    left: 50%;
    width: 0.56rem;
    height: 0.56rem;
    border-radius: 50%;
    background: var(--accent-red);
    box-shadow: 0 0 22px rgba(214,90,102,0.65);
}

.hero-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--green);
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.3s forwards;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.4rem, 8vw, 7.5rem);
    font-weight: 900;
    color: var(--cream);
    letter-spacing: -0.02em;
    line-height: 0.92;
    margin-bottom: 2rem;
    opacity: 0;
    text-wrap: balance;
    animation: fadeUp 0.8s ease-out 0.5s forwards;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--muted);
    max-width: 640px;
    margin: 0 0 2.5rem;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.7s forwards;
}

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

@keyframes floatPanel {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -12px, 0);
    }
}

@keyframes linePulse {
    0%, 100% {
        transform: scaleX(0.72);
        opacity: 0.55;
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes nodePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(42,168,137,0.42);
    }
    80%, 100% {
        box-shadow: 0 0 0 24px rgba(42,168,137,0);
    }
}

@keyframes signalSweep {
    0%, 100% {
        opacity: 0.16;
        clip-path: inset(0 100% 0 0);
    }
    45%, 65% {
        opacity: 0.8;
        clip-path: inset(0 0 0 0);
    }
}

@keyframes orbitSpin {
    to {
        transform: rotate(360deg);
    }
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.9s forwards;
}

.btn-primary {
    background: var(--red);
    color: var(--cream);
    padding: 1rem 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    padding: 1rem 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid rgba(245,240,232,0.42);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(245,240,232,0.1);
    color: var(--cream);
    border-color: rgba(245,240,232,0.7);
}

.hero-proof {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 720px;
    margin: 2.5rem 0 0;
    padding-top: 1.75rem;
    border-top: 1px solid var(--line);
    list-style: none;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 1.1s forwards;
}

.hero-proof li {
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    color: rgba(245,240,232,0.72);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Eagle decoration */
.eagle-icon {
    display: none;
}

/* Services Section */
.services {
    background: var(--blue-dark);
    padding: 8rem 4rem;
    position: relative;
    border-top: 1px solid var(--line);
}

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

.section-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--cream);
    letter-spacing: -0.02em;
}

.section-intro {
    max-width: 680px;
    margin: 1rem auto 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.7vw, 1.1rem);
    line-height: 1.7;
}

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

.service-card {
    background: var(--panel);
    padding: 3rem 2rem;
    border: 1px solid var(--line);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(42,168,137,0.42);
    box-shadow: 12px 12px 0 rgba(42,168,137,0.16);
}

.service-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 900;
    color: rgba(245,240,232,0.12);
    line-height: 1;
    margin-bottom: 1rem;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--muted);
    line-height: 1.7;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

/* Process Section */
.process {
    background: #08131D;
    padding: 7rem 4rem;
    border-top: 1px solid var(--line);
}

.process .section-label {
    color: var(--accent-red);
}

.process .section-title {
    color: var(--cream);
    max-width: 850px;
    margin: 0 auto;
}

.process .section-intro {
    color: rgba(245,240,232,0.76);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    background: var(--panel-soft);
    border: 1px solid var(--line);
    padding: 2rem;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s, box-shadow 0.3s;
}

.process-step:hover {
    transform: translateY(-6px);
    border-color: rgba(214,90,102,0.45);
    box-shadow: 10px 10px 0 rgba(214,90,102,0.18);
}

.process-number {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 1.25rem;
}

.process-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 1rem;
}

.process-desc {
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* About Section */
.about {
    background: #071A18;
    padding: 8rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    border-top: 1px solid var(--line);
}

.about-visual {
    position: relative;
}

.about-frame {
    background: var(--panel);
    padding: 2rem;
    position: relative;
    border: 1px solid rgba(42,168,137,0.25);
}

.about-frame-inner {
    background: rgba(214,90,102,0.12);
    padding: 2rem;
    border: 1px solid rgba(214,90,102,0.24);
}

.about-box {
    background: #0B111A;
    padding: 4rem;
    text-align: center;
    border: 1px solid var(--line);
}

.about-stat {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--green);
    line-height: 1;
}

.about-stat-label {
    font-family: 'Space Mono', monospace;
    font-size: clamp(0.7rem, 1.5vw, 0.85rem);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--cream);
    margin-top: 0.5rem;
}

.about-box-copy {
    color: var(--muted);
    line-height: 1.7;
    margin-top: 1.5rem;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--cream);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-content p {
    color: rgba(255,255,255,0.85);
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.about-feature {
    background: rgba(245,240,232,0.08);
    border: 1px solid rgba(245,240,232,0.12);
    padding: 0.75rem 1.25rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Tech Stack */
.tech {
    background: var(--blue-dark);
    padding: 6rem 4rem;
    text-align: center;
    border-top: 1px solid var(--line);
}

.tech .section-label {
    color: var(--green);
}

.tech .section-title {
    color: var(--cream);
    margin-bottom: 0;
}

.tech .section-intro {
    color: rgba(245,240,232,0.7);
    margin-bottom: 3rem;
}

.tech-logos {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.tech-item {
    font-family: 'Space Mono', monospace;
    font-size: clamp(0.75rem, 1.5vw, 1rem);
    color: rgba(245,240,232,0.76);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(245,240,232,0.04);
    transition: all 0.3s;
}

.tech-item:hover {
    border-color: var(--green);
    color: var(--green);
}

/* CTA Section */
.cta {
    background: #2A1118;
    padding: 8rem 4rem;
    text-align: center;
    border-top: 1px solid rgba(214,90,102,0.28);
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 900;
    color: var(--cream);
    max-width: 800px;
    margin: 0 auto 2rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.cta p {
    color: rgba(255,255,255,0.85);
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 500px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.cta-btn {
    background: var(--cream);
    color: var(--charcoal);
    padding: 1.25rem 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: var(--red);
    color: var(--cream);
    transform: translateY(-3px);
}

.contact-note {
    margin-top: 1.5rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.72);
    letter-spacing: 0.1em;
}

/* Footer */
footer {
    background: var(--blue-dark);
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    border-top: 1px solid var(--line);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--cream);
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--cream);
}

.footer-copy {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: rgba(245,240,232,0.58);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Large tablets / small desktops */
@media (max-width: 1024px) {
    nav {
        padding: 1.25rem 3rem;
    }

    .nav-links {
        gap: 2rem;
    }

    .hero-scene {
        right: 2rem;
        width: 44vw;
        opacity: 0.62;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process {
        padding: 6rem 3rem;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about {
        padding: 6rem 3rem;
        gap: 3rem;
    }

    .tech {
        padding: 5rem 3rem;
    }

    .cta {
        padding: 6rem 3rem;
    }
}

/* Tablets */
@media (max-width: 900px) {
    .about {
        grid-template-columns: 1fr;
    }

    .about-visual {
        order: 2;
    }

    .about-content {
        order: 1;
    }

    .about-box {
        padding: 3rem;
    }

    .about-frame {
        padding: 1.5rem;
    }

    .about-frame-inner {
        padding: 1.5rem;
    }
}

/* Mobile landscape / small tablets */
@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .mobile-menu .nav-cta {
        display: inline-flex;
    }

    .hero {
        min-height: 86vh;
        padding: 7rem 1.5rem 4rem;
    }

    .hero::after {
        left: 1.5rem;
        right: 1.5rem;
        bottom: 1.5rem;
    }

    .hero-content {
        padding: 0;
    }

    .hero-scene {
        display: none;
    }

    .hero-label {
        font-size: 0.65rem;
        letter-spacing: 0.2em;
    }

    .hero-title {
        font-size: clamp(2.7rem, 9vw, 4.5rem);
        line-height: 0.96;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 1rem 1.5rem;
    }

    .eagle-icon {
        width: 40px;
        height: 40px;
        bottom: 1rem;
        left: 1rem;
    }

    .services {
        padding: 4rem 1.5rem;
    }

    .hero-proof {
        gap: 0.75rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .hero-proof li {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .section-header {
        margin-bottom: 3rem;
    }

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

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

    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: 8px 8px 0 rgba(42,168,137,0.16);
    }

    .process {
        padding: 4rem 1.5rem;
    }

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

    .process-step {
        min-height: auto;
    }

    .about {
        padding: 4rem 1.5rem;
    }

    .about-content h2 {
        margin-bottom: 1rem;
    }

    .about-content p {
        margin-bottom: 1.5rem;
    }

    .about-features {
        gap: 0.75rem;
    }

    .about-feature {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }

    .tech {
        padding: 4rem 1.5rem;
    }

    .tech-logos {
        gap: 1rem;
    }

    .tech-item {
        padding: 0.75rem 1rem;
    }

    .cta {
        padding: 4rem 1.5rem;
    }

    .cta-btn {
        padding: 1rem 2rem;
        width: 100%;
        max-width: 300px;
    }

    footer {
        padding: 2rem 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        gap: 1.5rem;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-content {
        padding: 0;
    }

    .hero-scene {
        display: none;
    }

    .hero-title {
        font-size: clamp(2.25rem, 10.5vw, 3.2rem);
        line-height: 0.96;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        margin-bottom: 2rem;
    }

    .service-number {
        font-size: 2.5rem;
    }

    .about-box {
        padding: 2rem 1.5rem;
    }

    .about-frame {
        padding: 1rem;
    }

    .about-frame-inner {
        padding: 1rem;
    }

    .tech-item {
        flex: 1 1 calc(50% - 0.5rem);
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Extra small mobile */
@media (max-width: 360px) {
    .hero-content {
        padding: 0;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 0.75rem;
        padding: 0.875rem 1rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-proof li {
        flex-basis: 100%;
    }

    .about-feature {
        width: 100%;
        text-align: center;
    }
}

/* Landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 6rem 2rem 3rem;
    }

    .hero-content {
        padding: 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-cta-group {
        flex-direction: row;
    }

    .btn-primary,
    .btn-secondary {
        width: auto;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero-label,
    .hero-title,
    .hero-subtitle,
    .hero-cta-group,
    .hero-proof {
        animation: none;
        opacity: 1;
    }

    .hero::before,
    .hero-panel,
    .panel-row,
    .hero-link,
    .hero-node,
    .hero-orbit {
        animation: none;
    }

    .reveal {
        transition: none;
        opacity: 1;
        transform: none;
    }

    .service-card,
    .process-step,
    .tech-item,
    .nav-cta,
    .btn-primary,
    .btn-secondary,
    .cta-btn {
        transition: none;
    }
}
