:root {
    --bg: #f7f8fc;
    --deep: #ffffff;
    --crimson: #8b0000;
    --red: #c0392b;
    --ember: #e8573a;
    --indigo: #4a4f8a;
    --violet: #6b5fcf;
    --steel: #d6d9e6;
    --cream: #1a1a1a;
    --muted: rgba(20, 20, 30, 0.5);
    --glass: rgba(0, 0, 0, 0.04);
    --glass-border: rgba(0, 0, 0, 0.08);
    --font-display: 'Orbitron', monospace;
    --font-body: 'Rajdhani', sans-serif;
    --font-mono: 'Courier Prime', monospace;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--cream);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: none;
}

/* CURSOR */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--crimson);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .15s, height .15s, background .15s;
    mix-blend-mode: screen;
}

.cursor-ring {
    position: fixed;
    width: 34px;
    height: 34px;
    border: 1px solid rgb(196, 66, 40);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
}

/* MOBILE NAV */
#mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: rgba(8, 8, 14, 0.96);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(232, 87, 58, 0.2);
}

.mobile-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}

.mobile-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    cursor: pointer;
}

.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 22px;
    color: var(--steel);
    cursor: pointer;
    padding: 4px 8px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 8px 0 16px;
}

.mobile-menu.open {
    display: flex;
}

.mob-item {
    background: none;
    border: none;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--steel);
    padding: 14px 24px;
    text-align: left;
    cursor: pointer;
    text-transform: uppercase;
    transition: color .3s;
}

.mob-item:hover {
    color: var(--ember);
}

/* SIDE NAV */
#side-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 70px;
    height: 100vh;
    background: rgba(8, 8, 14, 0.96);
    border-right: 1px solid rgba(232, 87, 58, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    z-index: 1000;
    backdrop-filter: blur(24px);
}

.nav-logo-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    cursor: pointer;
    transition: filter .3s, transform .3s;
    opacity: 0.85;
}

.nav-logo-img:hover {
    filter: brightness(0) saturate(100%) invert(45%) sepia(80%) saturate(600%) hue-rotate(340deg);
    transform: scale(1.08);
    opacity: 1;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    width: 100%;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 14px 0;
    cursor: pointer;
    transition: all .3s;
    color: var(--steel);
    width: 100%;
    position: relative;
    border: none;
    background: none;
}

.nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 0;
    background: var(--ember);
    transition: height .3s;
}

.nav-item:hover::before,
.nav-item.active::before {
    height: 30px;
}

.nav-item:hover,
.nav-item.active {
    color: var(--cream);
}

.nav-icon {
    font-size: 16px;
    line-height: 1;
}

.nav-label {
    font-family: var(--font-mono);
    font-size: 6.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.nav-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.nav-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--glass-border);
    transition: background .3s;
    cursor: pointer;
}

.nav-dot.active {
    background: var(--ember);
    box-shadow: 0 0 6px var(--ember);
}

/* PAGES */
#app {
    margin-left: 70px;
}

.page {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: none;
}

.page.active {
    display: block;
}

/* BOTTOM STRIP */
#bottom-strip {
    position: fixed;
    bottom: 0;
    left: 70px;
    right: 0;
    height: 34px;
    background: rgba(6, 6, 9, 0.95);
    border-top: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    z-index: 900;
    backdrop-filter: blur(20px);
}

.strip-left {
    font-family: var(--font-mono);
    font-size: 9.5px;
    color: rgba(240, 230, 200, 0.25);
    letter-spacing: 3px;
}

.strip-center {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 8px;
    letter-spacing: 6px;
    color: var(--ember);
    opacity: 0.5;
}

.strip-center img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(45%) sepia(80%) saturate(600%) hue-rotate(340deg);
    opacity: 0.6;
}

.strip-right {
    font-family: var(--font-mono);
    font-size: 9.5px;
    color: rgba(240, 230, 200, 0.25);
    letter-spacing: 2px;
}

/* ORBS */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

/* ANIMATIONS */
@keyframes drift1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    50% {
        transform: translate(-30px, 40px) scale(1.1)
    }
}

@keyframes drift2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    50% {
        transform: translate(40px, -30px) scale(0.9)
    }
}

@keyframes drift3 {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(-20px, 20px)
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(30px)
    }

    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0)
    }
}

@keyframes watermark-pulse {

    0%,
    100% {
        -webkit-text-stroke: 1px rgba(232, 87, 58, 0.07)
    }

    50% {
        -webkit-text-stroke: 1px rgba(232, 87, 58, 0.14)
    }
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: .4;
        transform: scaleY(1)
    }

    50% {
        opacity: 1;
        transform: scaleY(1.2)
    }
}

@keyframes gridPulse {

    0%,
    100% {
        opacity: 0.03
    }

    50% {
        opacity: 0.07
    }
}

@keyframes scanline {
    0% {
        transform: translateY(-100%)
    }

    100% {
        transform: translateY(100vh)
    }
}

/* HOME */
#page-home {
    background: var(--bg);
}

.home-orb1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.55), transparent 70%);
    top: -120px;
    right: -80px;
    animation: drift1 8s ease-in-out infinite;
}

.home-orb2 {
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(45, 27, 105, 0.65), transparent 70%);
    bottom: 80px;
    left: 60px;
    animation: drift2 11s ease-in-out infinite;
}

.home-orb3 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(26, 26, 62, 0.7), transparent 70%);
    top: 38%;
    right: 32%;
    animation: drift3 13s ease-in-out infinite;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(232, 87, 58, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(232, 87, 58, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPulse 6s ease-in-out infinite;
}

.scanline {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(transparent, rgba(232, 87, 58, 0.08), transparent);
    z-index: 0;
    pointer-events: none;
    animation: scanline 8s linear infinite;
}

.ngc-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(100px, 22vw, 300px);
    font-weight: 900;
    letter-spacing: -8px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(232, 87, 58, 0.07);
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
    animation: watermark-pulse 6s ease-in-out infinite;
}

.home-content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding: 0 54px 80px;
    display: flex;
    align-items: center;
}

.home-left {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 6px;
    color: var(--ember);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    animation: fadeUp 1s ease forwards;
    opacity: 0;
}

.hero-eyebrow::before {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--ember);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(46px, 7.5vw, 110px);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -3px;
    color: var(--cream);
    animation: fadeUp 1s .2s ease forwards;
    opacity: 0;
}

.hero-title span {
    color: var(--ember);
    display: block;
}

.hero-sub {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--muted);
    margin-top: 28px;
    max-width: 420px;
    line-height: 1.7;
    animation: fadeUp 1s .4s ease forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-top: 36px;
    animation: fadeUp 1s .6s ease forwards;
    opacity: 0;
    flex-wrap: wrap;
}

.btn-primary {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 14px 36px;
    background: var(--ember);
    color: var(--bg);
    border: none;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transition: all .3s;
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

.btn-ghost {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 13px 36px;
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: all .3s;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn-ghost:hover {
    border-color: var(--ember);
    color: var(--ember);
    transform: translateY(-2px);
}

/* 3D HERO */
.hero-3d-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 480px;
    animation: fadeLeft 1s .5s ease forwards;
    opacity: 0;
}

.hero-logo-bg {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.25) 0%, rgba(45, 27, 105, 0.2) 50%, transparent 80%);
    filter: blur(40px);
}

.hero-logo-ring {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(232, 87, 58, 0.15);
}

.hero-logo-ring2 {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 1px solid rgba(232, 87, 58, 0.08);
    animation: drift3 10s ease-in-out infinite;
}

#hero-canvas {
    position: fixed;
    top: 0;
    right: 0;
    width: 340px;
    height: 340px;
    z-index: 500;
    pointer-events: none;
    transition: top 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-ngc-text {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 10px;
    color: rgba(232, 87, 58, 0.5);
    text-transform: uppercase;
    white-space: nowrap;
}

/* HOME STATS */
.home-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--glass-border);
    border: 1px solid var(--glass-border);
    animation: fadeUp 1s .8s ease forwards;
    opacity: 0;
    margin-top: 44px;
}

.stat-item {
    background: var(--glass);
    padding: 20px 24px;
    backdrop-filter: blur(10px);
    transition: background .3s;
}

.stat-item:hover {
    background: rgba(232, 87, 58, 0.06);
}

.stat-num {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 900;
    color: var(--ember);
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 3px;
    color: var(--muted);
    margin-top: 4px;
    text-transform: uppercase;
}

/* ABOUT */
.home-about {
    position: relative;
    z-index: 1;
    padding: 80px 54px;
    background: var(--deep);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.about-label {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 5px;
    color: var(--ember);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.about-heading {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 900;
    color: var(--cream);
    letter-spacing: -1px;
    line-height: 1.1;
}

.about-heading em {
    font-style: normal;
    color: var(--ember);
}

.about-body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--muted);
    line-height: 1.8;
    font-weight: 300;
    max-width: 600px;
}

/* MARQUEE */
.tech-marquee {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 14px 0;
    background: rgba(232, 87, 58, 0.03);
}

.tech-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: ticker 22s linear infinite;
}

.tech-item {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--indigo);
    white-space: nowrap;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 16px;
}

.tech-item .sep {
    color: var(--ember);
    opacity: 0.5;
}

/* CLIENTS */
.home-clients {
    position: relative;
    z-index: 1;
    padding: 60px 54px;
}

.clients-label {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 5px;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 32px;
    text-align: center;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--glass-border);
    border: 1px solid var(--glass-border);
}

.client-item {
    background: var(--glass);
    padding: 28px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s;
}

.client-item:hover {
    background: rgba(232, 87, 58, 0.05);
}

.client-name {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--indigo);
    text-transform: uppercase;
    transition: color .3s;
}

.client-item:hover .client-name {
    color: rgba(240, 230, 200, 0.5);
}

/* TESTIMONIAL */
.home-testimonial {
    position: relative;
    z-index: 1;
    padding: 80px 54px;
    background: var(--deep);
}

.testimonial-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.testimonial-quote {
    font-family: var(--font-body);
    font-size: clamp(18px, 2vw, 24px);
    color: var(--cream);
    line-height: 1.6;
    font-weight: 300;
    font-style: italic;
    position: relative;
    padding: 0 40px;
}

.testimonial-quote::before,
.testimonial-quote::after {
    font-family: var(--font-display);
    font-size: 60px;
    color: var(--ember);
    opacity: 0.3;
    position: absolute;
    line-height: 1;
}

.testimonial-quote::before {
    content: '"';
    top: -10px;
    left: 0;
}

.testimonial-quote::after {
    content: '"';
    bottom: -30px;
    right: 0;
}

.testimonial-author {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--ember);
    text-transform: uppercase;
}

.testimonial-role {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--muted);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.t-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--glass-border);
    cursor: pointer;
    transition: background .3s;
}

.t-dot.active {
    background: var(--ember);
}

/* CTA BAND */
.home-cta-band {
    position: relative;
    z-index: 1;
    padding: 70px 54px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2) 0%, rgba(45, 27, 105, 0.15) 50%, rgba(6, 6, 9, 0) 100%);
    border-top: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-band-heading {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 52px);
    font-weight: 900;
    color: var(--cream);
    letter-spacing: -2px;
    line-height: 1;
}

.cta-band-heading em {
    font-style: normal;
    color: var(--ember);
}

.cta-band-sub {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--muted);
    margin-top: 12px;
    max-width: 380px;
    line-height: 1.6;
}

.cta-band-action {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* SCROLL HINT */
.scroll-hint {
    position: absolute;
    bottom: 56px;
    left: 54px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeUp 1s 1.3s ease forwards;
    opacity: 0;
}

.scroll-line {
    width: 1px;
    height: 46px;
    background: linear-gradient(to bottom, transparent, var(--ember));
    animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-text {
    font-family: var(--font-mono);
    font-size: 8.5px;
    letter-spacing: 4px;
    color: var(--muted);
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

/* SERVICES */
#page-services {
    background: var(--deep);
    padding: 80px 54px 100px;
}

.srv-orb1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 27, 105, 0.5), transparent 70%);
    top: -100px;
    left: -60px;
}

.srv-orb2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.4), transparent 70%);
    bottom: 0;
    right: 0;
    animation: drift1 9s ease-in-out infinite;
}

.srv-watermark {
    position: absolute;
    bottom: -40px;
    right: -20px;
    font-family: var(--font-display);
    font-size: 220px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(240, 230, 200, 0.04);
    user-select: none;
    pointer-events: none;
    z-index: 0;
    letter-spacing: -10px;
}

.page-header {
    position: relative;
    z-index: 1;
    margin-bottom: 48px;
}

.page-tag {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 5px;
    color: var(--ember);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.page-tag::after {
    content: '';
    flex: 0 0 40px;
    height: 1px;
    background: var(--ember);
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(38px, 5.5vw, 80px);
    font-weight: 900;
    line-height: .94;
    color: var(--cream);
    letter-spacing: -2px;
}

.page-title em {
    font-style: normal;
    color: var(--ember);
}

.ticker-wrap {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
    margin: 40px 0;
    background: rgba(232, 87, 58, 0.03);
}

.ticker-track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: ticker 20s linear infinite;
}

.ticker-item {
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--indigo);
    white-space: nowrap;
    text-transform: uppercase;
}

.ticker-item span {
    color: var(--indigo);
    margin: 0 8px;
}

.ngc-ticker {
    color: var(--ember) !important;
    opacity: 0.5;
    font-weight: 900;
}

.services-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--glass-border);
    border: 1px solid var(--glass-border);
}

.service-item {
    background: var(--deep);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all .4s;
    cursor: default;
}

.service-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--ember);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}

.service-item:hover {
    background: rgba(232, 87, 58, 0.04);
}

.service-item:hover::after {
    transform: scaleX(1);
}

.srv-num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: rgba(232, 87, 58, 0.1);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -3px;
}

.srv-name {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--cream);
    margin-bottom: 10px;
}

.srv-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 20px;
}

.srv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.tag {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 9px;
    border: 1px solid var(--glass-border);
    color: rgba(240, 230, 200, 0.45);
    transition: all .3s;
}

.service-item:hover .tag {
    border-color: rgba(232, 87, 58, 0.3);
    color: var(--ember);
}

.services-featured {
    position: relative;
    z-index: 1;
    margin-top: 1px;
    background: var(--glass-border);
}

.featured-inner {
    background: var(--deep);
    padding: 44px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.featured-text .srv-name {
    font-size: 20px;
    margin-bottom: 14px;
}

.featured-text .srv-desc {
    font-size: 15px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    transition: all .3s;
}

.step:hover {
    background: rgba(232, 87, 58, 0.05);
    border-color: rgba(232, 87, 58, 0.2);
}

.step-num {
    font-family: var(--font-display);
    font-size: 10px;
    color: var(--ember);
    letter-spacing: 2px;
    white-space: nowrap;
    margin-top: 2px;
}

.step-text {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

/* GALLERY */
#page-gallery {
    background: var(--bg);
    padding: 80px 54px 100px;
}

.gal-orb1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.28), transparent 70%);
    top: 0;
    right: -200px;
    animation: drift1 10s ease-in-out infinite;
}

.gal-orb2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45, 27, 105, 0.35), transparent 70%);
    bottom: 100px;
    left: -100px;
    animation: drift2 12s ease-in-out infinite;
}

.gallery-filters {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 0;
    margin-top: 40px;
    border: 1px solid var(--glass-border);
    width: fit-content;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 12px 24px;
    background: var(--glass);
    color: var(--muted);
    border: none;
    border-right: 1px solid var(--glass-border);
    cursor: pointer;
    transition: all .3s;
}

.filter-btn:last-child {
    border-right: none;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(232, 87, 58, 0.1);
    color: var(--ember);
}

.gallery-masonry {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 200px 200px 200px 200px;
    gap: 6px;
    margin-top: 20px;
}

.g-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all .4s;
}

.g-item:hover {
    z-index: 10;
}

.g1 {
    grid-column: 1/6;
    grid-row: 1/3
}

.g2 {
    grid-column: 6/9;
    grid-row: 1/2
}

.g3 {
    grid-column: 9/13;
    grid-row: 1/2
}

.g4 {
    grid-column: 6/10;
    grid-row: 2/3
}

.g5 {
    grid-column: 10/13;
    grid-row: 2/3
}

.g6 {
    grid-column: 1/5;
    grid-row: 3/5
}

.g7 {
    grid-column: 5/8;
    grid-row: 3/4
}

.g8 {
    grid-column: 8/13;
    grid-row: 3/4
}

.g9 {
    grid-column: 5/8;
    grid-row: 4/5
}

.g10 {
    grid-column: 8/13;
    grid-row: 4/5
}

.g-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform .5s;
}

.g-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    transition: opacity .4s, transform .5s;
    z-index: 0;
}

.g-item:hover .g-photo {
    opacity: 0.55;
    transform: scale(1.06);
}

.g-item:hover .g-bg {
    transform: scale(1.06);
}

.g1 .g-bg {
    background: linear-gradient(135deg, #0a0014, #1a0030 40%, #3d0020)
}

.g2 .g-bg {
    background: linear-gradient(225deg, #000a14, #001a30 50%, #002060)
}

.g3 .g-bg {
    background: linear-gradient(45deg, #14000a, #300010 40%, #600030)
}

.g4 .g-bg {
    background: linear-gradient(180deg, #000814, #001020 50%, #001a40)
}

.g5 .g-bg {
    background: linear-gradient(270deg, #140a00, #301400 40%, #501800)
}

.g6 .g-bg {
    background: linear-gradient(315deg, #0a0820, #1a1040 50%, #2a1860)
}

.g7 .g-bg {
    background: linear-gradient(90deg, #140808, #301010 40%, #500018)
}

.g8 .g-bg {
    background: linear-gradient(135deg, #001408, #003010 40%, #004820)
}

.g9 .g-bg {
    background: linear-gradient(270deg, #080014, #180040 50%, #280060)
}

.g10 .g-bg {
    background: linear-gradient(45deg, #140000, #300008 40%, #500010)
}

.g-geo {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    pointer-events: none;
}

.g-bigtext {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-weight: 900;
    color: transparent;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.g1 .g-bigtext {
    font-size: 90px;
    letter-spacing: -4px;
    -webkit-text-stroke: 1px rgba(240, 230, 200, 0.12)
}

.g2 .g-bigtext {
    font-size: 44px;
    -webkit-text-stroke: 1px rgba(232, 87, 58, 0.22)
}

.g3 .g-bigtext {
    font-size: 40px;
    -webkit-text-stroke: 1px rgba(192, 57, 43, 0.28)
}

.g4 .g-bigtext {
    font-size: 38px;
    -webkit-text-stroke: 1px rgba(45, 27, 105, 0.38)
}

.g5 .g-bigtext {
    font-size: 36px;
    -webkit-text-stroke: 1px rgba(240, 230, 200, 0.18)
}

.g6 .g-bigtext {
    font-size: 70px;
    letter-spacing: -3px;
    -webkit-text-stroke: 1px rgba(232, 87, 58, 0.15)
}

.g7 .g-bigtext {
    font-size: 38px;
    -webkit-text-stroke: 1px rgba(240, 230, 200, 0.14)
}

.g8 .g-bigtext {
    font-size: 36px;
    -webkit-text-stroke: 1px rgba(0, 100, 50, 0.3)
}

.g9 .g-bigtext {
    font-size: 38px;
    -webkit-text-stroke: 1px rgba(80, 0, 120, 0.35)
}

.g10 .g-bigtext {
    font-size: 40px;
    -webkit-text-stroke: 1px rgba(192, 57, 43, 0.22)
}

.g1 .c1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.55), transparent);
    top: 10%;
    right: 10%
}

.g1 .c2 {
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, rgba(45, 27, 105, 0.65), transparent);
    bottom: 20%;
    left: 10%
}

.g2 .c1 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 40, 120, 0.65), transparent);
    top: -10%;
    right: -10%
}

.g3 .c1 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(192, 57, 43, 0.5), transparent);
    bottom: 0;
    left: 0
}

.g4 .c1 {
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, rgba(0, 20, 80, 0.65), transparent);
    top: 0;
    right: 20%
}

.g5 .c1 {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(180, 80, 0, 0.48), transparent);
    bottom: 10%;
    left: 10%
}

.g6 .c1 {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(60, 30, 120, 0.5), transparent);
    bottom: 20%;
    right: 20%
}

.g6 .c2 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(232, 87, 58, 0.3), transparent);
    top: 15%;
    left: 15%
}

.g7 .c1 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.48), transparent);
    bottom: 0;
    right: 0
}

.g8 .c1 {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(0, 80, 40, 0.55), transparent);
    top: 10%;
    left: 10%
}

.g9 .c1 {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(80, 0, 120, 0.5), transparent);
    top: 0;
    right: 30%
}

.g10 .c1 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.45), transparent);
    bottom: 0;
    left: 20%
}

.g-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 6, 9, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity .4s;
    backdrop-filter: blur(2px);
}

.g-item:hover .g-overlay {
    opacity: 1;
}

.g-title {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--cream);
    margin-bottom: 3px;
}

.g-sub {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--ember);
    letter-spacing: 2px;
}

.g-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 18px;
    color: var(--ember);
    opacity: 0;
    transition: opacity .3s, transform .3s;
}

.g-item:hover .g-arrow {
    opacity: 1;
    transform: rotate(45deg);
}

.g-logo-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.12;
    transition: opacity .3s;
}

.g-item:hover .g-logo-badge {
    opacity: 0.3;
}

.gallery-caption {
    position: relative;
    z-index: 1;
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.caption-text {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--muted);
}

.caption-count {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: rgba(232, 87, 58, 0.25);
}

/* CONTACT */
#page-contact {
    background: var(--deep);
    padding: 80px 54px 100px;
    min-height: 100vh;
}

.con-orb1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45, 27, 105, 0.38), transparent 70%);
    bottom: -150px;
    right: -100px;
    animation: drift2 9s ease-in-out infinite;
}

.con-watermark {
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: var(--font-display);
    font-size: clamp(56px, 11vw, 150px);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(232, 87, 58, 0.055);
    user-select: none;
    pointer-events: none;
    z-index: 0;
    letter-spacing: -6px;
    line-height: 1;
}

.contact-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    margin-top: 44px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-line {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--glass-border);
}

.con-label {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 4px;
    color: var(--ember);
    text-transform: uppercase;
}

.con-value {
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--cream);
    letter-spacing: 1px;
}

.contact-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-btn {
    font-family: var(--font-mono);
    font-size: 8.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 9px 16px;
    border: 1px solid var(--glass-border);
    color: var(--muted);
    cursor: pointer;
    transition: all .3s;
    background: transparent;
    display: inline-block;
    text-decoration: none;
}

.social-btn:hover {
    border-color: var(--ember);
    color: var(--ember);
}

.contact-map {
    border: 1px solid var(--glass-border);
    overflow: hidden;
    line-height: 0;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 220px;
    filter: grayscale(40%) contrast(1.05) brightness(0.9);
}

.contact-logo-block {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
    padding: 20px;
    border: 1px solid var(--glass-border);
    background: var(--glass);
}

.contact-logo-block img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.contact-logo-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 900;
    color: var(--cream);
    letter-spacing: 4px;
}

.contact-logo-tagline {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 3px;
    color: var(--ember);
    margin-top: 4px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-row.full {
    grid-template-columns: 1fr;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.field label {
    font-family: var(--font-mono);
    font-size: 8.5px;
    letter-spacing: 3px;
    color: var(--ember);
    text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--cream);
    padding: 13px 15px;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: border-color .3s;
    resize: none;
    -webkit-appearance: none;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(240, 230, 200, 0.18);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--ember);
    background: rgba(232, 87, 58, 0.04);
}

.field textarea {
    min-height: 110px;
}

.field select option {
    background: var(--steel);
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
    flex-wrap: wrap;
    gap: 12px;
}

.form-note {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 2px;
    color: rgba(240, 230, 200, 0.18);
}

.field-error {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 2px;
    color: var(--red);
    margin-top: 2px;
}

.form-success {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
    padding: 16px 20px;
    border: 1px solid rgba(232, 87, 58, 0.4);
    background: rgba(232, 87, 58, 0.06);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--ember);
    text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    body {
        cursor: auto;
    }

    .cursor,
    .cursor-ring {
        display: none;
    }

    #side-nav {
        display: none;
    }

    #mobile-nav {
        display: block;
    }

    #app {
        margin-left: 0;
        padding-top: 64px;
    }

    #bottom-strip {
        left: 0;
    }

    .home-content {
        grid-template-columns: 1fr;
        padding: 0 24px 80px;
    }

    .home-right {
        display: none;
    }

    #hero-canvas {
        top: 64px;
        width: 180px;
        height: 180px;
    }

    .home-about {
        padding: 60px 24px;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .home-clients {
        padding: 40px 24px;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .home-testimonial {
        padding: 60px 24px;
    }

    .home-cta-band {
        padding: 50px 24px;
    }

    .cta-band-action {
        width: 100%;
    }

    #page-services {
        padding: 60px 24px 80px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .featured-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 28px;
    }

    #page-gallery {
        padding: 60px 24px 80px;
    }

    .gallery-masonry {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(6, 160px);
    }

    .g1 {
        grid-column: 1/7;
        grid-row: 1/2
    }

    .g2 {
        grid-column: 1/4;
        grid-row: 2/3
    }

    .g3 {
        grid-column: 4/7;
        grid-row: 2/3
    }

    .g4 {
        grid-column: 1/4;
        grid-row: 3/4
    }

    .g5 {
        grid-column: 4/7;
        grid-row: 3/4
    }

    .g6 {
        grid-column: 1/7;
        grid-row: 4/5
    }

    .g7 {
        grid-column: 1/4;
        grid-row: 5/6
    }

    .g8 {
        grid-column: 4/7;
        grid-row: 5/6
    }

    .g9 {
        grid-column: 1/4;
        grid-row: 6/7
    }

    .g10 {
        grid-column: 4/7;
        grid-row: 6/7
    }

    #page-contact {
        padding: 60px 24px 80px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .scroll-hint {
        left: 24px;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .gallery-filters {
        width: 100%;
    }

    .filter-btn {
        flex: 1;
    }

    .gallery-masonry {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .g1,
    .g2,
    .g3,
    .g4,
    .g5,
    .g6,
    .g7,
    .g8,
    .g9,
    .g10 {
        grid-column: auto;
        grid-row: auto;
        height: 160px;
    }
}