/* ══════════════════════════════════════
   RESET & TOKENS
══════════════════════════════════════ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
}

body {
    background: #0a0a0a;
    color: #E8E8F0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
}

:root {
    --bg: #0a0a0a;
    --bg2: #121212;
    --bg3: #1a1a1a;
    --surface: rgba(255, 255, 255, 0.04);
    --surface2: rgba(255, 255, 255, 0.07);
    --border: rgba(255, 255, 255, 0.07);
    --border2: rgba(255, 255, 255, 0.12);

    --red: #FF3D2E;
    --amber: #FF9F1C;
    --green: #2ECC8A;
    --blue: #3B9EFF;
    --purple: #A855F7;
    --cyan: #06C8E8;
    --pink: #F43F8E;
    --orange: #FF6B35;

    --text: #E8E8F0;
    --text2: #9090A8;
    --text3: #5A5A72;

    --nav-h: 72px;
    --radius: 14px;
}

/* ══════════════════════════════════════
   CURSOR
══════════════════════════════════════ */
#cur {
    position: fixed;
    width: 9px;
    height: 9px;
    background: var(--red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .2s, height .2s, background .2s;
}

#cur-ring {
    position: fixed;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 61, 46, .3);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all .1s ease;
}

@media(pointer:coarse) {

    #cur,
    #cur-ring {
        display: none;
    }
}

/* ══════════════════════════════════════
   SCROLL PROGRESS
══════════════════════════════════════ */
#prog {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    z-index: 201;
    width: 0%;
    background: linear-gradient(90deg, var(--red), var(--amber), var(--green), var(--blue), var(--purple));
}

/* ══════════════════════════════════════
   SCROLLBAR
══════════════════════════════════════ */
::-webkit-scrollbar {
    width: 3px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--red), var(--purple));
    border-radius: 3px;
}

/* ══════════════════════════════════════
   NOISE OVERLAY
══════════════════════════════════════ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 500;
    opacity: .025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}





/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */

/* ════════════════ NAVIGATION ════════════════ 
   (Handled by theme.css globally)
════════════════ */


/* Mobile Menu handled by theme.css */

/* ══════════════════════════════════════
   HERO  — full viewport, fits screen
══════════════════════════════════════ */
#hero {
    min-height: 75vh;
    padding-top: 80px;
    background: url('../../../images/bg.jpg') center/cover no-repeat;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    position: relative;
    overflow: hidden;
    gap: 0;
}

/* — Background layers — */
.hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

/* Grid */
.hc-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 40px 40px;
    -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 90%);
    mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 90%);
    animation: gridMove 50s linear infinite;
    opacity: 0.22;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 40px 40px;
    }
}

/* Gradient orbs */
.hc-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hco1 {
    width: 580px;
    height: 580px;
    background: radial-gradient(circle, rgba(255, 61, 46, .06), transparent 65%);
    top: -160px;
    right: -80px;
    animation: orbDrift 15s ease-in-out infinite;
}

.hco2 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(59, 158, 255, .05), transparent 65%);
    bottom: -100px;
    left: -60px;
    animation: orbDrift 12s ease-in-out infinite reverse;
}

.hco3 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(168, 85, 247, .07), transparent 65%);
    top: 35%;
    left: 20%;
    animation: orbDrift 10s ease-in-out infinite 3s;
}

@keyframes orbDrift {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    50% {
        transform: translate(22px, -18px) scale(1.06)
    }
}

/* — Hero Left Content — */
.hero-l {
    position: relative;
    z-index: 1;
    padding: 2rem 0 0rem clamp(1.5rem, 5vw, 5rem);
    display: flex;
    flex-direction: column;
}

.h-badge {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: rgba(255, 61, 46, .08);
    border: 1px solid rgba(255, 61, 46, .2);
    border-radius: 50px;
    padding: .38rem .95rem;
    width: fit-content;
    margin-bottom: 1.4rem;
    animation: fadeSlide .6s .1s both;
}

.h-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(46, 204, 138, .5)
    }

    60% {
        opacity: .7;
        box-shadow: 0 0 0 6px rgba(46, 204, 138, 0)
    }
}

.h-badge-txt {
    font-family: 'JetBrains Mono', monospace;
    font-size: .6rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
}

/* — HERO HEADLINE — */
.hero-h1 {
    font-family: 'Manrope', sans-serif;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.05em;
    color: #fff;
    margin-bottom: 1.2rem;
    font-size: clamp(3.5rem, 5.8vw, 9.5rem);
    max-width: none;
    width: 100%;
}

.h1-grad {
    background: linear-gradient(90deg,
            var(--red) 0%,
            var(--amber) 25%,
            var(--green) 50%,
            var(--blue) 75%,
            var(--purple) 100%);
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: chromaFlow 4s linear infinite;
    filter: drop-shadow(0 0 30px rgba(255, 61, 46, .2));
}

.h1-line1 {
    display: block;
    animation: fadeSlide .7s .25s both;
}

.h1-line2 {
    display: block;
    animation: fadeSlide .7s .4s both;
    /* "Digital Futures." — animated gradient + glow */
    background: linear-gradient(90deg,
            var(--red) 0%,
            var(--amber) 20%,
            var(--green) 38%,
            var(--blue) 55%,
            var(--purple)72%,
            var(--pink) 88%,
            var(--red) 100%);
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeSlide .7s .4s both, chromaFlow 4s linear infinite .4s;
    filter: drop-shadow(0 0 28px rgba(255, 61, 46, .22));
}

@keyframes chromaFlow {
    0% {
        background-position: 0%
    }

    100% {
        background-position: 300%
    }
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-desc {
    font-size: clamp(.88rem, 1.3vw, 1.05rem);
    line-height: 1.8;
    color: var(--text2);
    max-width: 460px;
    margin-bottom: 1.6rem;
    animation: fadeSlide .6s .58s both;
}

/* Hero CTA */
.hero-btns {
    display: flex;
    gap: .9rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1.8rem;
    animation: fadeSlide .6s .72s both;
}

.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--red), var(--orange));
    color: #fff;
    padding: .92rem 2.2rem;
    border: none;
    border-radius: 9px;
    cursor: none;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    box-shadow: 0 0 0 0 rgba(255, 61, 46, .4);
    text-decoration: none;
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}

.btn-glow:hover::before {
    transform: scaleX(1);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 61, 46, .35);
}

.btn-glow span {
    position: relative;
    z-index: 1;
}

.btn-glow .arr {
    position: relative;
    z-index: 1;
    transition: transform .3s;
}

.btn-glow:hover .arr {
    transform: translateX(5px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    background: transparent;
    color: var(--text2);
    padding: .92rem 2rem;
    border: 1px solid var(--border2);
    border-radius: 9px;
    cursor: none;
    transition: all .25s;
    text-decoration: none;
}

.btn-ghost:hover {
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-2px);
}

/* Hero stats row */
.hero-stats {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.25);
    overflow: hidden;
    width: 100%;
    margin-top: 0;
}

.hs {
    flex: 1;
    padding: 0.8rem 0.5rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hs:last-child {
    border-right: none;
}

.hs-n {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.0rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
}

.hs-l {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #4A4A62;
    font-weight: 700;
}

/* ═ HERO RIGHT — dark card panel ═ */
.hero-r {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: clamp(1rem, 2vw, 1.5rem);
}

/* NexureSphere Animation */
.nexure-sphere {
    position: absolute;
    width: 1200px;
    height: 1200px;
    top: 50%;
    right: -300px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.22;
}

.ns-core {
    position: absolute;
    inset: 30%;
    background: radial-gradient(circle, var(--red), var(--orange));
    border-radius: 50%;
    filter: blur(40px);
    animation: pulseCore 4s ease-in-out infinite;
}

.ns-ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 61, 46, 0.25);
    border-radius: 50%;
    animation: rotateRing 10s linear infinite;
}

.ns-ring::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    width: 12px;
    height: 12px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 25px var(--red), 0 0 10px rgba(255, 255, 255, 0.5);
}

.ns-ring:nth-child(2) {
    inset: 10%;
    animation-duration: 15s;
    border-color: rgba(59, 158, 255, 0.3);
}

.ns-ring:nth-child(2)::after {
    background: var(--blue);
    box-shadow: 0 0 25px var(--blue), 0 0 10px rgba(255, 255, 255, 0.5);
}

.ns-ring:nth-child(3) {
    inset: 20%;
    animation-duration: 12s;
    animation-direction: reverse;
    border-color: rgba(168, 85, 247, 0.3);
}

.ns-ring:nth-child(3)::after {
    background: var(--purple);
    box-shadow: 0 0 25px var(--purple), 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes rotateRing {
    from {
        transform: rotate(0deg) rotateX(60deg);
    }

    to {
        transform: rotate(360deg) rotateX(60deg);
    }
}

@keyframes pulseCore {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Inner grid on right bg */
.hr-inner-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 40px 40px;
    -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black, transparent);
    mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black, transparent);
    animation: gridMove 30s linear infinite reverse;
    opacity: 0.5;
}

.hero-panel {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: panelIn .8s .35s both;
    /* Removed big box background and border */
    background: transparent;
    padding: 0.5rem;
}

/* Status Dot Fix */
.panel-status,
.ps-dot {
    display: none !important;
}

/* Brand card */
.panel-brand {
    background: rgba(255, 255, 255, .035);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.4rem 1.8rem 1.6rem;
    position: relative;
    overflow: hidden;
}

.pb-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    top: -80px;
    right: -60px;
    background: radial-gradient(circle, rgba(255, 61, 46, .14), transparent);
    filter: blur(50px);
}

.pb-logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.4rem;
    position: relative;
    z-index: 1;
}

.pb-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--red), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
}

.pb-name {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.02em;
}

.pb-sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: .52rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--text3);
}

.pb-headline {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -.04em;
    color: #fff;
    margin-bottom: 1.1rem;
    position: relative;
    z-index: 1;
}

.pb-hl-grad {
    background: linear-gradient(90deg, var(--red), var(--amber), var(--green));
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: chromaFlow 4s linear infinite;
}

.pb-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    position: relative;
    z-index: 1;
}

.pb-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .04em;
    padding: .28rem .75rem;
    border-radius: 6px;
}

/* Service mini 2x2 grid */
.panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.pg-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 1.2rem;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: none;
    position: relative;
    overflow: hidden;
}

.pg-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pg-ico {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: block;
}

.pg-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.0rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
}

.pg-sub {
    font-size: 0.9rem;
    color: #5A5A72;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
}

/* Stats bottom row */
.panel-stats {
    display: flex;
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.ps {
    flex: 1;
    text-align: center;
    padding: .85rem .5rem;
    border-right: 1px solid var(--border);
}

.ps:last-child {
    border-right: none;
}

.ps-n {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.03em;
}

.ps-l {
    font-family: 'JetBrains Mono', monospace;
    font-size: .5rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text3);
    margin-top: 2px;
}

/* ══════════════════════════════════════
   TICKER / COLOR STRIP
══════════════════════════════════════ */
.ticker {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: .95rem 0;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: tickRoll 22s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ti {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: 0 2rem;
    white-space: nowrap;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .02em;
}

.ti-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes tickRoll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* ══════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════ */
.sec {
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem);
}

.sec-dark {
    background: var(--bg);
}

.sec-dark2 {
    background: var(--bg2);
}

.sec-dark3 {
    background: var(--bg3);
}

.sec-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: .9rem;
}

.sec-eyebrow::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
}

.sec-h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -.035em;
    color: #fff;
    margin-bottom: .9rem;
}

.sec-desc {
    font-size: clamp(.86rem, 1.2vw, .98rem);
    line-height: 1.8;
    color: var(--text2);
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s, transform .75s;
}

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

.d1 {
    transition-delay: .1s
}

.d2 {
    transition-delay: .2s
}

.d3 {
    transition-delay: .3s
}

.d4 {
    transition-delay: .4s
}

.d5 {
    transition-delay: .5s
}

.d6 {
    transition-delay: .6s
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
#services {
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem);
    background: var(--bg2);
}

.srv-hd {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 2.8rem;
    flex-wrap: wrap;
}

.srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.srv-card {
    background: var(--bg2);
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
    cursor: none;
    transition: background .3s, transform .3s;
}

.srv-card:hover {
    background: var(--bg3);
}

.srv-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}

.srv-card:hover .srv-top {
    transform: scaleX(1);
}

.srv-card:hover {
    transform: translateY(-2px);
}

.srv-ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.3rem;
}

.srv-num {
    position: absolute;
    top: 1.3rem;
    right: 1.5rem;
    font-family: 'Manrope', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.05em;
    color: rgba(255, 255, 255, .03);
    transition: color .3s;
}

.srv-card:hover .srv-num {
    color: rgba(255, 255, 255, .055);
}

.srv-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.06rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: .65rem;
    letter-spacing: -.02em;
}

.srv-body {
    font-size: .83rem;
    line-height: 1.74;
    color: var(--text2);
    margin-bottom: 1.3rem;
}

.srv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
}

.stag {
    font-family: 'JetBrains Mono', monospace;
    font-size: .6rem;
    letter-spacing: .04em;
    padding: .22rem .65rem;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, .07);
    color: var(--text2);
    transition: all .25s;
}

.srv-card:hover .stag {
    border-color: rgba(255, 255, 255, .14);
}

/* ══════════════════════════════════════
   STATS BAND
══════════════════════════════════════ */
#stats {
    background: var(--bg3);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

#stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 61, 46, .03), rgba(59, 158, 255, .03), rgba(168, 85, 247, .03));
}

.sb {
    padding: clamp(2rem, 4vh, 3.5rem) 2rem;
    text-align: center;
    border-right: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.sb:last-child {
    border-right: none;
}

.sb-icon {
    font-size: 1.5rem;
    margin-bottom: .5rem;
    display: block;
}

.sb-num {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.04em;
    margin-bottom: .3rem;
}

.sb-lbl {
    font-family: 'JetBrains Mono', monospace;
    font-size: .58rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text3);
}

/* ══════════════════════════════════════
   WHY NEXURESOFT
══════════════════════════════════════ */
#why {
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem);
    background: var(--bg);
}

.why-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

/* Big dark card */
.why-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.8rem;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.wc-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: -80px;
    right: -60px;
    background: radial-gradient(circle, rgba(255, 61, 46, .09), transparent);
    filter: blur(60px);
}

.wc-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 40px 40px;
}

.wc-since {
    font-family: 'JetBrains Mono', monospace;
    font-size: .58rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--text3);
    margin-bottom: .7rem;
    position: relative;
    z-index: 1;
}

.wc-big {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: .96;
    letter-spacing: -.04em;
    color: #fff;
    position: relative;
    z-index: 1;
}

.wc-big em {
    font-style: normal;
    background: linear-gradient(90deg, var(--red), var(--amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Floating pills */
.why-pill {
    position: absolute;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: .8rem 1.2rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .4);
    display: flex;
    align-items: center;
    gap: .8rem;
}

.wp1 {
    top: -16px;
    right: -16px;
    animation: wfloat1 7s ease-in-out infinite;
}

.wp2 {
    bottom: -16px;
    left: -16px;
    animation: wfloat2 8s ease-in-out infinite;
}

@keyframes wfloat1 {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

@keyframes wfloat2 {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(8px)
    }
}

.wp-ico {
    font-size: 1.5rem;
}

.wp-num {
    font-family: 'Manrope', sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
}

.wp-lbl {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .68rem;
    font-weight: 500;
    color: var(--text2);
}

/* Feat list */
.feat-list {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.feat {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: .85rem 1.1rem;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid transparent;
    border-left: 3px solid transparent;
    transition: all .3s;
    cursor: none;
}

.feat:hover {
    background: var(--surface2);
    border-color: var(--border);
    transform: translateX(5px);
}

.feat-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}



.feat-title {
    font-size: .88rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.feat-sub {
    font-size: .76rem;
    color: var(--text2);
    line-height: 1.4;
}

/* ══════════════════════════════════════
   PROCESS
══════════════════════════════════════ */
#process {
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem);
    background: var(--bg2);
}

/* ——— PROCESS ——— */
#process {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.proc-container {
    max-width: 1400px;
    margin: 4rem auto 0;
    padding: 0 clamp(1.5rem, 5vw, 5rem);
    position: relative;
}

.proc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.proc-line-container {
    position: absolute;
    top: 72px;
    left: 12.5%;
    right: 12.5%;
    height: 4px;
    z-index: 0;
    pointer-events: none;
}

.proc-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.proc-path-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 2px;
}

.proc-path-main {
    fill: none;
    stroke: url(#procGradient);
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 2.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.on .proc-path-main {
    stroke-dashoffset: 0;
}

.pstep {
    position: relative;
    padding: 2.5rem 1.5rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 1;
    overflow: hidden;
    cursor: none;
}

.pstep:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pstep-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), var(--bg, rgba(255, 255, 255, 0.05)), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.pstep:hover .pstep-glow {
    opacity: 0.8;
}

.pstep-num {
    width: 64px;
    height: 64px;
    background: var(--bg3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--c);
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pstep:hover .pstep-num {
    transform: scale(1.15) rotate(10deg);
    border-color: var(--c);
    box-shadow: 0 0 30px var(--bg);
}

.pstep-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 2;
}

.pstep-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text2);
    position: relative;
    z-index: 2;
}

/* SVG Gradient Definition */
#process svg.defs-only {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* ══════════════════════════════════════
   TECH MARQUEE
══════════════════════════════════════ */
#tech {
    background: var(--bg3);
    padding: clamp(3.5rem, 6vw, 6rem) 0;
    overflow: hidden;
}

#tech .t-inner {
    padding: 0 clamp(1.5rem, 5vw, 5rem);
    margin-bottom: 2.8rem;
    text-align: center;
}

.marq-wrap {
    overflow: hidden;
    padding: .25rem 0;
}

.marq-r {
    display: flex;
    gap: .75rem;
    width: max-content;
    animation: mLeft 26s linear infinite;
}

.marq-r:hover {
    animation-play-state: paused;
}

.marq-r2 {
    animation: mRight 32s linear infinite;
}

@keyframes mLeft {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

@keyframes mRight {
    0% {
        transform: translateX(-50%)
    }

    100% {
        transform: translateX(0)
    }
}

.tpill {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .55rem 1.3rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .76rem;
    font-weight: 600;
    color: var(--text2);
    background: var(--bg2);
    white-space: nowrap;
    flex-shrink: 0;
    cursor: none;
    transition: all .25s;
}

.tpill:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .2);
    background: var(--surface2);
}

.tpill-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
#testimonials {
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem);
    background: var(--bg);
}

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

.testi {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.8rem;
    transition: transform .3s, border-color .3s, box-shadow .3s;
    cursor: none;
    position: relative;
    overflow: hidden;
}

.testi:hover {
    transform: translateY(-4px);
    border-color: var(--border2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .4);
}

.testi-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 2px 2px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}

.testi:hover .testi-bar {
    transform: scaleX(1);
}

.testi-stars {
    font-size: .95rem;
    letter-spacing: .1em;
    margin-bottom: .85rem;
}

.testi-txt {
    font-size: .84rem;
    line-height: 1.76;
    color: var(--text2);
    margin-bottom: 1.4rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.testi-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-size: .82rem;
    font-weight: 900;
    color: #fff;
}

.testi-name {
    font-family: 'Manrope', sans-serif;
    font-size: .86rem;
    font-weight: 800;
    color: #fff;
}

.testi-role {
    font-size: .72rem;
    color: var(--text3);
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
#contact {
    padding: clamp(4.5rem, 9vw, 8rem) clamp(1.5rem, 5vw, 5rem);
    background: var(--bg2);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ct-orb1 {
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    top: -220px;
    left: -180px;
    background: radial-gradient(circle, rgba(255, 61, 46, .07), transparent);
    filter: blur(100px);
}

.ct-orb2 {
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    bottom: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(59, 158, 255, .07), transparent);
    filter: blur(100px);
}

.ct-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 28px 28px;
}

.ct-label {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.ct-label::before,
.ct-label::after {
    content: '';
    display: block;
    width: 16px;
    height: 1px;
    background: var(--green);
}

.ct-h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(3rem, 7vw, 7rem);
    font-weight: 900;
    line-height: .93;
    letter-spacing: -.04em;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.ct-grad {
    background: linear-gradient(90deg, var(--amber), var(--green), var(--cyan));
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: chromaFlow 5s linear infinite;
}

.ct-sub {
    max-width: 480px;
    font-size: clamp(.88rem, 1.2vw, 1rem);
    line-height: 1.8;
    color: var(--text2);
    margin-bottom: 2.8rem;
    position: relative;
    z-index: 1;
}

.ct-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    margin-bottom: 2.5rem;
}

.ct-btn1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--red), var(--orange));
    color: #fff;
    padding: 1rem 2.6rem;
    border: none;
    border-radius: 9px;
    cursor: none;
    transition: all .3s;
    box-shadow: 0 0 32px rgba(255, 61, 46, .25);
}

.ct-btn1:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(255, 61, 46, .35);
}

.ct-btn2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    background: transparent;
    color: var(--text2);
    padding: 1rem 2.4rem;
    border: 1px solid var(--border2);
    border-radius: 9px;
    cursor: none;
    transition: all .3s;
}

.ct-btn2:hover {
    border-color: rgba(255, 255, 255, .3);
    color: #fff;
    transform: translateY(-3px);
}

.ct-cards {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.ct-card {
    display: flex;
    align-items: center;
    gap: .7rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: .7rem 1.1rem;
}

.ct-card-ico {
    font-size: 1rem;
}

.ct-card-txt {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .78rem;
    font-weight: 500;
    color: var(--text2);
}

.ct-card-txt a {
    color: var(--cyan);
    text-decoration: none;
    transition: color .2s;
}

.ct-card-txt a:hover {
    color: var(--green);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */








/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media(max-width:1100px) {
    #hero {
        grid-template-columns: 1fr;
    }

    .hero-r {
        display: none;
    }

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

    .why-wrap {
        grid-template-columns: 1fr;
    }

    .why-card {
        min-height: 280px;
    }

    .why-pill {
        display: none;
    }

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

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

    .sb:nth-child(2) {
        border-right: none;
    }

    .sb:nth-child(3) {
        border-top: 1px solid var(--border);
    }

    .sb:nth-child(4) {
        border-right: none;
        border-top: 1px solid var(--border);
    }
}

@media(max-width:768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .ham {
        display: flex;
    }

    #nav {
        top: 10px;
        width: calc(100% - 20px);
        padding: 0 1.2rem;
        height: 56px;
    }



    .srv-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .proc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .proc-line-container {
        display: none;
    }

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

    .sec-h2 {
        font-size: clamp(1.8rem, 6vw, 2.6rem);
    }

    .hero-stats {
        width: 100%;
    }

    .hs {
        flex: 1;
    }
}

@media(max-width:480px) {
    .hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-glow,
    .btn-ghost {
        justify-content: center;
    }

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

    .pstep {
        padding: 1.8rem 1.2rem;
    }

    .ct-cards {
        flex-direction: column;
        align-items: center;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }

    .foot-links {
        justify-content: center;
    }
}