:root {
    --bg: #050a0a;
    --bg2: #080f0f;
    --bg3: #0d1a1a;
    --cyan: #3ef5dc;
    --cyan2: #1dd0b8;
    --cyan3: #0fac97;
    --cdim: rgba(62, 245, 220, 0.1);
    --cborder: rgba(62, 245, 220, 0.16);
    --cglow: rgba(62, 245, 220, 0.3);
    --white: #edfaf8;
    --muted: #3d6b68;
    --muted2: #658f8c;
    --grad: linear-gradient(130deg, var(--cyan), var(--cyan2));
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

::-webkit-scrollbar {
    width: 6px;
    background: #050505;
}
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--cyan), var(--cyan2));
    border-radius: 50px;
}
::-webkit-scrollbar-thumb:hover { background: var(--cyan); }
* { scrollbar-width: thin; scrollbar-color: var(--cyan) #0a0a0a; }

html { scroll-behavior: smooth }

body {
    background: var(--bg);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: none
}

/* ── AI CANVAS (neural net background) ── */
#ai-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
}

/* All content above canvas */
nav, .hero, .stats-bar, .mq, section, .cta-b, footer, #btt, .mnav {
    position: relative;
    z-index: 2;
}

/* CURSOR */
#cur {
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 14px var(--cglow);
    transition: width .15s, height .15s;
}
#cur-r {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(62, 245, 220, .45);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width .18s, height .18s, border-color .18s;
}
#cur.g { width: 14px; height: 14px; }
#cur-r.g { width: 50px; height: 50px; border-color: var(--cyan); }

/* NAV */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 22px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .4s;
}
nav.s {
    background: rgba(5, 10, 10, .92);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--cborder);
}
.nav-logo img { height: 100px; }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
    color: var(--muted2);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color .3s;
}
.nav-links a:hover { color: var(--cyan); }
.nav-btn {
    border: 1px solid var(--cborder);
    background: transparent;
    color: var(--cyan);
    padding: 10px 26px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: none;
    transition: all .35s;
    position: relative;
    overflow: hidden;
    display: inline-block;
}
.nav-btn::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--cyan);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(.7, 0, .3, 1);
}
.nav-btn:hover::before { transform: scaleX(1); }
.nav-btn span { position: relative; z-index: 1; }
.nav-btn:hover span { color: var(--bg); }
.burger { display: none; flex-direction: column; gap: 5px; cursor: none; background: none; border: none; }
.burger b { width: 22px; height: 1px; background: var(--white); display: block; transition: .3s; }

/* HERO */
.hero {
    min-height: 100vh;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column;
    padding: 120px 6% 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Subtle radial glow layers on hero */
.hero-glow {
    position: absolute;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(62, 245, 220, .055) 0%, transparent 60%);
    top: -200px; right: -200px;
    pointer-events: none;
    animation: float1 8s ease-in-out infinite;
}
.hero-glow2 {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(62, 245, 220, .04) 0%, transparent 60%);
    bottom: -100px; left: 0%;
    pointer-events: none;
    animation: float2 10s ease-in-out infinite;
}
@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 30px); }
}
@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(62, 245, 220, .02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(62, 245, 220, .02) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 80%);
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--cborder);
    background: var(--cdim);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 32px;
    opacity: 0;
    backdrop-filter: blur(8px);
}
.badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
    animation: blink 2s infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--cyan); }
    50% { opacity: .3; box-shadow: 0 0 2px var(--cyan); }
}

.hero-h1 {
    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(54px, 7.5vw, 100px);
    font-weight: 800;
    line-height: .93;
    letter-spacing: -.03em;
    margin-bottom: 28px;
    opacity: 0;
    text-align: center;
}
.hero-h1 .hl {
    background: linear-gradient(130deg, var(--cyan) 0%, var(--cyan2) 55%, #7ff8e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-p {
    font-size: 15px;
    line-height: 1.82;
    color: var(--muted2);
    max-width: 480px;
    margin-bottom: 44px;
    opacity: 0;
    text-align: center;
}
.hero-btns {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    opacity: 0;
    justify-content: center;
}
.btn-fill {
    background: linear-gradient(130deg, var(--cyan), var(--cyan2));
    color: var(--bg);
    padding: 15px 36px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    border: none;
    cursor: none;
    text-decoration: none;
    display: inline-block;
    transition: transform .25s, box-shadow .25s;
    position: relative;
    overflow: hidden;
}
.btn-fill::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(130deg, rgba(255,255,255,.15), transparent);
    opacity: 0;
    transition: opacity .3s;
}
.btn-fill:hover::after { opacity: 1; }
.btn-fill:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 44px rgba(62, 245, 220, .35);
}
.btn-ghost {
    border: 1px solid var(--cborder);
    color: var(--muted2);
    padding: 15px 28px;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s;
    backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.hero-tags {
    display: flex;
    gap: 8px;
    margin-top: 36px;
    flex-wrap: wrap;
    opacity: 0;
    justify-content: center;
}
.htag {
    padding: 6px 14px;
    border: 1px solid var(--cborder);
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted2);
    transition: all .3s;
    cursor: none;
    background: rgba(62,245,220,.04);
    backdrop-filter: blur(6px);
}
.htag:hover { border-color: var(--cyan); color: var(--cyan); background: var(--cdim); }

/* HERO RIGHT — hidden */
.hero-right { display: none !important; }

/* STATS BAR */
.stats-bar {
    background: rgba(8,15,15,0.85);
    border-top: 1px solid var(--cborder);
    border-bottom: 1px solid var(--cborder);
    padding: 0 6%;
    display: flex;
    align-items: stretch;
    backdrop-filter: blur(16px);
}
.sb-item {
    flex: 1;
    padding: 32px 20px;
    border-right: 1px solid var(--cborder);
    text-align: center;
    transition: background .3s;
}
.sb-item:last-child { border-right: none; }
.sb-item:hover { background: rgba(62,245,220,.04); }
.sb-n {
    font-family: 'Times New Roman', Times, serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(130deg, var(--cyan), var(--cyan2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sb-l { font-size: 11px; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; margin-top: 4px; }

/* MARQUEE */
.mq {
    overflow: hidden;
    border-top: 1px solid var(--cborder);
    border-bottom: 1px solid var(--cborder);
    padding: 15px 0;
    background: rgba(8,15,15,0.7);
    backdrop-filter: blur(12px);
}
.mq-track {
    display: flex;
    gap: 44px;
    width: max-content;
    animation: mq 32s linear infinite;
}
.mq-item {
    font-family: 'Times New Roman', Times, serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--muted);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 44px;
}
.mq-item::after { content: '✦'; font-size: 9px; color: var(--cyan); }
@keyframes mq {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* SECTIONS */
section { padding: 130px 6%; }
.st {
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.st::before { content: ''; width: 24px; height: 1px; background: var(--cyan); }
.sh {
    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(38px, 5vw, 66px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.025em;
    margin-bottom: 14px;
}
.sh .g {
    background: linear-gradient(130deg, var(--cyan), var(--cyan2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ABOUT */
.ab-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ab-text p { font-size: 15px; line-height: 1.85; color: var(--muted2); margin-bottom: 18px; }
.ab-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--cborder);
    border: 1px solid var(--cborder);
}
.sc {
    background: rgba(8,15,15,0.8);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: background .3s;
    backdrop-filter: blur(12px);
}
.sc:hover { background: rgba(13,26,26,0.9); }
.sc::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--cyan), transparent);
    transition: width .5s;
}
.sc:hover::after { width: 100%; }
.sc-n {
    font-family: 'Times New Roman', Times, serif;
    font-size: 50px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(130deg, var(--cyan), var(--cyan2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sc-l { font-size: 11px; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; margin-top: 6px; }

/* PROCESS */
.proc-section { background: rgba(8,15,15,0.6); backdrop-filter: blur(4px); }
.proc-list { margin-top: 60px; }
.pi {
    display: grid;
    grid-template-columns: 60px 1fr 40px;
    align-items: center;
    gap: 28px;
    padding: 36px 0;
    border-bottom: 1px solid var(--cborder);
    cursor: none;
    transition: padding-left .3s;
}
.pi:last-child { border-bottom: none; }
.pi:hover { padding-left: 20px; }
.pi-num {
    font-family: 'Times New Roman', Times, serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: .2em;
}
.pi-body h3 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 6px;
    transition: color .3s;
}
.pi:hover .pi-body h3 { color: var(--cyan); }
.pi-body p { font-size: 14px; color: var(--muted2); line-height: 1.7; }
.pi-arr {
    font-size: 18px;
    color: var(--muted);
    opacity: 0;
    transform: translateX(-10px);
    transition: all .3s;
}
.pi:hover .pi-arr { opacity: 1; transform: translateX(0); color: var(--cyan); }

/* PORTFOLIO */
.pf-section { background: transparent; }
.pf-filters { display: flex; gap: 4px; margin: 44px 0 32px; flex-wrap: wrap; }
.fb {
    padding: 10px 22px;
    border: 1px solid var(--cborder);
    background: rgba(8,15,15,0.7);
    backdrop-filter: blur(8px);
    color: var(--muted2);
    font-family: 'Times New Roman', Times, serif;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: none;
    transition: all .3s;
}
.fb.on, .fb:hover { background: var(--cyan); border-color: var(--cyan); color: var(--bg); }
.pg { columns: 4; gap: 10px; }
.pc {
    break-inside: avoid;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    cursor: none;
    border: 1px solid transparent;
    transition: border-color .3s;
}
.pc:hover { border-color: var(--cborder); }
.pc img { width: 100%; display: block; transition: transform .65s; }
.pc:hover img { transform: scale(1.07); }
.pc-ov {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(5, 10, 10, .88) 0%, transparent 50%);
    opacity: 0;
    transition: opacity .3s;
    display: flex;
    align-items: flex-end;
    padding: 14px;
}
.pc:hover .pc-ov { opacity: 1; }
.pc-cat { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--cyan); }

/* PRICING */
.pr-section { background: rgba(8,15,15,0.6); backdrop-filter: blur(4px); }
.pr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--cborder);
    border: 1px solid var(--cborder);
    margin-top: 60px;
}
.prcard {
    background: rgba(8,15,15,0.85);
    padding: 48px 36px;
    position: relative;
    transition: background .3s;
    backdrop-filter: blur(16px);
}
.prcard.hot { background: rgba(13,26,26,0.9); }
.prcard.hot::before {
    content: 'POPULAR';
    position: absolute;
    top: -1px; left: 50%;
    transform: translateX(-50%);
    background: var(--cyan);
    color: var(--bg);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .25em;
    padding: 5px 14px;
    font-family: 'Times New Roman', Times, serif;
}
.prcard.hot::after {
    content: '';
    position: absolute; inset: 0;
    box-shadow: inset 0 0 80px rgba(62, 245, 220, .06);
    pointer-events: none;
}
.pr-price {
    font-family: 'Times New Roman', Times, serif;
    font-size: 66px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(130deg, var(--cyan), var(--cyan2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pr-price sup { font-size: 22px; vertical-align: top; margin-top: 14px; display: inline-block; }
.pr-pkg { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin: 8px 0 6px; }
.pr-name {
    font-family: 'Times New Roman', Times, serif;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--cborder);
}
.pr-list { list-style: none; margin-bottom: 40px; }
.pr-list li {
    font-size: 14px;
    color: var(--muted2);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    display: flex;
    align-items: center;
    gap: 12px;
}
.pr-list li::before { content: '→'; color: var(--cyan); font-size: 12px; }
.pr-cta {
    display: block;
    text-align: center;
    border: 1px solid var(--cborder);
    color: var(--cyan);
    padding: 14px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}
.pr-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--cyan);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .4s cubic-bezier(.7, 0, .3, 1);
}
.pr-cta:hover::before { transform: scaleY(1); }
.pr-cta span { position: relative; z-index: 1; }
.pr-cta:hover span { color: var(--bg); }
.prcard.hot .pr-cta { background: var(--cyan); color: var(--bg); border-color: var(--cyan); }
.prcard.hot .pr-cta::before { background: var(--cyan2); }
.prcard.hot .pr-cta:hover span { color: var(--bg); }

/* TESTIMONIALS */
.te-section { background: transparent; }
.te-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--cborder);
    border: 1px solid var(--cborder);
    margin-top: 60px;
}
.tc {
    background: rgba(5,10,10,0.7);
    padding: 38px 32px;
    transition: background .3s;
    backdrop-filter: blur(12px);
}
.tc:hover { background: rgba(8,15,15,0.85); }
.tc-stars { color: var(--cyan); font-size: 12px; letter-spacing: 3px; margin-bottom: 18px; }
.tc-q { font-size: 14px; line-height: 1.82; color: var(--muted2); margin-bottom: 28px; font-style: italic; }
.tc-aut { display: flex; align-items: center; gap: 14px; }
.tc-av {
    width: 40px; height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--cborder);
    filter: grayscale(.4);
}
.tc-name { font-family: 'Times New Roman', Times, serif; font-size: 14px; font-weight: 700; }
.tc-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* CTA BANNER */
.cta-b {
    margin: 0 6% 80px;
    border: 1px solid var(--cborder);
    background: rgba(8,15,15,0.8);
    backdrop-filter: blur(20px);
    padding: 72px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
}
.cta-b::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.cta-b::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(62,245,220,.3), transparent);
}
.cta-b-glow {
    position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(62, 245, 220, .08) 0%, transparent 70%);
    pointer-events: none;
}
.cta-b-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(26px, 3.5vw, 50px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
}
.cta-b-title .g {
    background: linear-gradient(130deg, var(--cyan), var(--cyan2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* FOOTER */
footer {
    background: rgba(8,15,15,0.9);
    border-top: 1px solid var(--cborder);
    padding: 80px 6% 40px;
    backdrop-filter: blur(20px);
}
.ft { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.fb2 img { height: 80px; margin-bottom: 20px; display: block; }
.fb2 p { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 240px; margin-bottom: 22px; }
.fb2 a { display: block; color: var(--muted2); text-decoration: none; font-size: 14px; margin-bottom: 8px; transition: color .3s; }
.fb2 a:hover { color: var(--cyan); }
.fc h5 { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--cyan); margin-bottom: 22px; }
.fc ul { list-style: none; }
.fc li { margin-bottom: 12px; }
.fc a { color: var(--muted2); text-decoration: none; font-size: 14px; transition: color .3s; }
.fc a:hover { color: var(--white); }
.fb3 {
    padding-top: 28px;
    border-top: 1px solid var(--cborder);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.fb3 span { font-size: 13px; color: var(--muted); }

/* BACK TO TOP */
#btt {
    position: fixed;
    bottom: 36px; right: 36px;
    width: 44px; height: 44px;
    border: 1px solid var(--cborder);
    background: rgba(5, 10, 10, .88);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-size: 16px;
    cursor: none;
    z-index: 100;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s, background .3s;
}
#btt.v { opacity: 1; pointer-events: auto; }
#btt:hover { background: var(--cyan); color: var(--bg); }

/* MOBILE NAV */
.mnav {
    display: none;
    position: fixed; inset: 0;
    background: rgba(5, 10, 10, .97);
    z-index: 980;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    backdrop-filter: blur(24px);
}
.mnav.o { display: flex; }
.mnav a {
    font-family: 'Times New Roman', Times, serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -.02em;
    transition: color .3s;
}
.mnav a:hover { color: var(--cyan); }

/* REVEAL */
.rv { opacity: 0; transform: translateY(44px); }
.rl { opacity: 0; transform: translateX(-44px); }

/* RESPONSIVE */
@media(max-width:1100px) {
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .ab-wrap { grid-template-columns: 1fr; }
    .pg { columns: 3; }
    .te-grid { grid-template-columns: repeat(2, 1fr); }
    .pr-grid { grid-template-columns: 1fr; }
    .stats-bar { flex-wrap: wrap; }
    .sb-item { min-width: 50%; border-bottom: 1px solid var(--cborder); }
    .sb-item:nth-child(2) { border-right: none; }
}
@media(max-width:768px) {
    .nav-links, .nav-btn { display: none; }
    .burger { display: flex; }
    .pg { columns: 2; }
    .te-grid { grid-template-columns: 1fr; }
    .ft { grid-template-columns: 1fr; }
    section { padding: 80px 5%; }
    .cta-b { padding: 44px 28px; text-align: center; justify-content: center; }
    .ab-right { grid-template-columns: 1fr 1fr; }
}
@media(max-width:480px) {
    .pg { columns: 1; }
    body { cursor: auto; }
    #cur, #cur-r { display: none; }
    #ha { align-items: center; justify-content: center; }
    #ht { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════
   PRELOADER
═══════════════════════════════════════════════════════ */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
#pre-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.pre-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}
.pre-logo {
    height: 90px;
    opacity: 0;
    transform: translateY(18px);
    animation: preLogoIn .8s cubic-bezier(.4,0,.2,1) .2s forwards;
    filter: drop-shadow(0 0 22px rgba(62,245,220,.45));
}
@keyframes preLogoIn {
    to { opacity: 1; transform: translateY(0); }
}
.pre-bar-wrap {
    width: 220px;
    height: 2px;
    background: rgba(62,245,220,.12);
    border-radius: 99px;
    overflow: hidden;
    opacity: 0;
    animation: preBarWrapIn .5s ease .6s forwards;
}
@keyframes preBarWrapIn { to { opacity: 1; } }
.pre-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--cyan2), var(--cyan));
    border-radius: 99px;
    box-shadow: 0 0 12px var(--cglow);
    transition: width .05s linear;
}
.pre-pct {
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    letter-spacing: .2em;
    color: var(--muted2);
    opacity: 0;
    animation: preBarWrapIn .5s ease .6s forwards;
}

/* Preloader exit animation */
#preloader.done {
    animation: preExit .7s cubic-bezier(.7,0,.3,1) forwards;
}
@keyframes preExit {
    0%   { opacity: 1; transform: scale(1); }
    60%  { opacity: 1; transform: scale(1.04); }
    100% { opacity: 0; transform: scale(1.08); pointer-events: none; }
}
