*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --bg: #050A12;
    --surface: #0C1420;
    --surface2: #111C2E;
    --border: #1A2A40;
    --accent: #00D4FF;
    --accent3: #00FF9F;
    --text: #E8F0F8;
    --muted: #6A85A0;
    --white: #FFFFFF
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: none
}

.cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .2s, height .2s;
    mix-blend-mode: screen
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0, 212, 255, .4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all .15s ease-out
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(5, 10, 18, .98), transparent);
    backdrop-filter: blur(10px)
}

.logo-text {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -.04em;
    text-decoration: none;
    display: flex;
    align-items: baseline
}

.l-white {
    color: #fff
}

.l-cyan {
    color: #00D4FF
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: .875rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: color .2s
}

.nav-links a:hover {
    color: var(--accent)
}

.nav-cta {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 10px 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: .875rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    cursor: none;
    transition: background .2s, color .2s
}

.nav-cta:hover {
    background: var(--accent);
    color: var(--bg)
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 60px 100px;
    position: relative;
    overflow: hidden
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 212, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 212, 255, .04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%)
}

.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 212, 255, .12) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none
}

.hero-glow2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 159, .06) 0%, transparent 70%);
    bottom: 100px;
    left: 100px;
    pointer-events: none
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    background: var(--surface);
    padding: 6px 16px;
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 32px;
    width: fit-content;
    animation: fadeUp .8s ease both
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent3);
    border-radius: 50%;
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.hero h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: .95;
    letter-spacing: -.03em;
    color: var(--white);
    max-width: 900px;
    animation: fadeUp .8s .1s ease both
}

.hero h1 em {
    font-style: normal;
    -webkit-text-stroke: 1px var(--accent);
    color: transparent
}

.hero-sub {
    margin-top: 32px;
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.7;
    animation: fadeUp .8s .2s ease both
}

.hero-actions {
    margin-top: 48px;
    display: flex;
    gap: 16px;
    align-items: center;
    animation: fadeUp .8s .3s ease both
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.btn-primary {
    background: var(--accent);
    color: var(--bg);
    padding: 14px 36px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: .95rem;
    border: none;
    cursor: none;
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
    display: inline-block
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, .3)
}

.btn-ghost {
    color: var(--text);
    padding: 14px 36px;
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    border: 1px solid var(--border);
    cursor: none;
    text-decoration: none;
    display: inline-block;
    transition: border-color .2s, color .2s
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent)
}

.marquee-wrap {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 16px 0
}

.marquee-track {
    display: flex;
    animation: marquee 24s linear infinite;
    width: max-content
}

.marquee-item {
    padding: 0 48px;
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 24px;
    white-space: nowrap
}

.marquee-item::after {
    content: '//';
    color: var(--accent);
    font-weight: 700
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

section {
    padding: 120px 60px
}

.section-tag {
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px
}

.section-tag::before {
    content: '-- '
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--white);
    letter-spacing: -.02em;
    line-height: 1.1
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    margin-top: 64px;
    border: 1px solid var(--border)
}

.service-card {
    background: var(--surface);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background .3s
}

.service-card:hover {
    background: var(--surface2)
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent3));
    transform: scaleX(0);
    transition: transform .3s;
    transform-origin: left
}

.service-card:hover::before {
    transform: scaleX(1)
}

.service-num {
    font-family: 'Syne', sans-serif;
    font-size: .7rem;
    color: var(--muted);
    letter-spacing: .1em;
    margin-bottom: 32px
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    display: block
}

.service-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 16px
}

.service-desc {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.7
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px
}

.service-tag {
    font-size: .7rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid rgba(0, 212, 255, .2);
    padding: 3px 10px
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.about-visual {
    position: relative;
    height: 500px
}

.about-box {
    position: absolute;
    background: var(--surface);
    border: 1px solid var(--border)
}

.about-box-main {
    inset: 0 40px 40px 0
}

.about-box-accent {
    width: 200px;
    height: 200px;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center
}

.about-box-accent .big-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: var(--bg)
}

.about-box-accent .big-label {
    font-size: .75rem;
    color: rgba(5, 10, 18, .7);
    letter-spacing: .08em
}

.about-inner {
    padding: 48px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.about-inner p {
    color: var(--muted);
    line-height: 1.8;
    margin-top: 12px
}

.about-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.about-feat {
    display: flex;
    align-items: flex-start;
    gap: 16px
}

.feat-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0
}

.about-text p {
    color: var(--muted);
    line-height: 1.8;
    margin-top: 20px;
    max-width: 460px
}

.process-section {
    background: var(--surface)
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border);
    margin-top: 64px;
    border: 1px solid var(--border)
}

.process-step {
    background: var(--surface);
    padding: 48px 32px
}

.step-num {
    font-family: 'Syne', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--border);
    line-height: 1;
    margin-bottom: 20px
}

.step-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 12px
}

.step-desc {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.7
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 48px
}

.tech-chip {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 10px 20px;
    font-size: .8rem;
    color: var(--muted);
    letter-spacing: .05em;
    transition: border-color .2s, color .2s
}

.tech-chip:hover {
    border-color: var(--accent);
    color: var(--accent)
}

.cta-section {
    text-align: center;
    background: var(--surface);
    position: relative;
    overflow: hidden
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, .08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none
}

.cta-section .section-title {
    max-width: 700px;
    margin: 0 auto
}

.cta-section>p {
    color: var(--muted);
    margin: 20px auto 0;
    max-width: 480px;
    line-height: 1.7
}

.cta-actions {
    margin-top: 48px;
    display: flex;
    gap: 16px;
    justify-content: center
}

.cta-email {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    justify-content: center;
    color: var(--muted);
    font-size: .875rem
}

.cta-email a {
    color: var(--accent);
    text-decoration: none
}

.cta-email a:hover {
    text-decoration: underline
}

footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 60px 60px 40px
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border)
}

.footer-brand p {
    color: var(--muted);
    font-size: .875rem;
    max-width: 280px;
    line-height: 1.6;
    margin-top: 16px
}

.footer-cols {
    display: flex;
    gap: 80px
}

.footer-col h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.footer-col a {
    color: var(--muted);
    font-size: .875rem;
    text-decoration: none;
    transition: color .2s
}

.footer-col a:hover {
    color: var(--accent)
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px
}

.footer-copy {
    font-size: .8rem;
    color: var(--muted)
}

.footer-socials {
    display: flex;
    gap: 20px
}

.footer-socials a {
    color: var(--muted);
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color .2s
}

.footer-socials a:hover {
    color: var(--accent)
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s
}

.popup-overlay.active {
    opacity: 1;
    pointer-events: all
}

.popup-box {
    background: #0C1420;
    border: 1px solid #1A2A40;
    padding: 48px;
    width: 100%;
    max-width: 520px;
    position: relative;
    transform: translateY(24px);
    transition: transform .3s;
    margin: 16px
}

.popup-overlay.active .popup-box {
    transform: translateY(0)
}

.popup-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    color: #6A85A0;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: color .2s
}

.popup-close:hover {
    color: #fff
}

.popup-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 6px
}

.popup-sub {
    font-size: .875rem;
    color: #6A85A0;
    margin-bottom: 28px;
    line-height: 1.6
}

.form-group {
    margin-bottom: 18px
}

.form-group label {
    display: block;
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #6A85A0;
    margin-bottom: 7px
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: #050A12;
    border: 1px solid #1A2A40;
    color: #E8F0F8;
    padding: 11px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    outline: none;
    transition: border-color .2s;
    resize: none
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #00D4FF
}

.form-group textarea {
    height: 110px
}

.form-submit {
    width: 100%;
    background: #00D4FF;
    color: #050A12;
    border: none;
    padding: 14px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: .95rem;
    cursor: pointer;
    margin-top: 6px;
    transition: opacity .2s
}

.form-submit:hover {
    opacity: .85
}

.form-submit:disabled {
    opacity: .5
}

.form-success {
    display: none;
    text-align: center;
    padding: 32px 0
}

.form-success .check-icon {
    font-size: 3rem;
    color: #00D4FF;
    margin-bottom: 16px
}

.form-success p {
    color: #6A85A0;
    line-height: 1.7
}

.form-success strong {
    color: #fff
}

@media(max-width:1024px) {
    nav {
        padding: 20px 32px
    }

    .hero {
        padding: 120px 32px 60px
    }

    section {
        padding: 80px 32px
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr)
    }

    .about-split {
        grid-template-columns: 1fr
    }

    .about-visual {
        display: none
    }

    footer {
        padding: 48px 32px 32px
    }

    .footer-top {
        flex-direction: column;
        gap: 40px
    }
}

@media(max-width:640px) {
    .nav-links {
        display: none
    }

    .hero h1 {
        font-size: 2.8rem
    }

    .services-grid {
        grid-template-columns: 1fr
    }

    .process-steps {
        grid-template-columns: 1fr
    }

    .footer-cols {
        flex-direction: column;
        gap: 40px
    }
}