:root {
    --sx-black: #050607;
    --sx-black-2: #080a0c;
    --sx-panel: #0b0e11;
    --sx-panel-2: #101419;
    --sx-line: rgba(255, 255, 255, .085);

    --sx-text: #f4f6f7;
    --sx-muted: #929ca3;

    --sx-green: #b8ff00;
    --sx-green-dark: #8fda00;
    --sx-green-soft: rgba(184, 255, 0, .10);

    --sx-radius: 20px;
    --sx-max: 1480px;
}


/* RESET */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--sx-black);
    color: var(--sx-text);

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

::selection {
    background: var(--sx-green);
    color: #050607;
}


/* LAYOUT */

.sx-container {
    width: min(calc(100% - 56px), var(--sx-max));
    margin: 0 auto;
}


/* HEADER */

.sx-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(5, 6, 7, .72);
    border-bottom: 1px solid transparent;

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    transition:
        background .25s ease,
        border-color .25s ease;
}

.sx-header.is-scrolled {
    background: rgba(5, 6, 7, .94);
    border-color: var(--sx-line);
}

.sx-header-inner {
    height: 82px;

    display: flex;
    align-items: center;

    gap: 42px;
}

.sx-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    font-size: 22px;
    font-weight: 900;

    letter-spacing: .07em;

    white-space: nowrap;
}

.sx-logo-text > span {
    color: var(--sx-green);
}

.sx-logo-mark {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(184, 255, 0, .35);
    border-radius: 11px;

    color: var(--sx-green);

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(184, 255, 0, .12),
            transparent 60%
        ),
        #090b0d;

    box-shadow:
        inset 0 0 24px rgba(184, 255, 0, .04),
        0 0 32px rgba(184, 255, 0, .04);

    font-weight: 900;
}

.sx-nav {
    display: flex;
    align-items: center;

    gap: 32px;

    margin-left: auto;
}

.sx-nav a {
    position: relative;

    color: #c7cdd1;

    font-size: 13px;
    font-weight: 700;

    transition: color .2s ease;
}

.sx-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 100%;
    height: 1px;

    background: var(--sx-green);

    transform: scaleX(0);
    transform-origin: right;

    transition: transform .2s ease;
}

.sx-nav a:hover {
    color: var(--sx-text);
}

.sx-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


/* BUTTONS */

.sx-button {
    min-height: 52px;

    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    border: 1px solid var(--sx-green);
    border-radius: 9px;

    background: var(--sx-green);
    color: #050607;

    font-size: 13px;
    font-weight: 900;

    box-shadow: 0 0 36px rgba(184, 255, 0, .09);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.sx-button:hover {
    transform: translateY(-2px);

    background: #c4ff26;

    box-shadow: 0 10px 44px rgba(184, 255, 0, .18);
}

.sx-button-small {
    min-height: 44px;

    padding: 0 18px;
}

.sx-button-large {
    min-height: 60px;

    padding: 0 28px;

    font-size: 14px;
}

.sx-button-ghost {
    border-color: rgba(255, 255, 255, .16);

    background: rgba(255, 255, 255, .02);
    color: var(--sx-text);

    box-shadow: none;
}

.sx-button-ghost:hover {
    border-color: rgba(184, 255, 0, .42);

    background: rgba(184, 255, 0, .04);
}


/* MOBILE MENU */

.sx-menu-button {
    width: 44px;
    height: 44px;

    display: none;

    margin-left: auto;

    align-items: center;
    justify-content: center;

    flex-direction: column;
    gap: 6px;

    border: 1px solid var(--sx-line);
    border-radius: 8px;

    background: transparent;
    cursor: pointer;
}

.sx-menu-button span {
    width: 18px;
    height: 1px;

    display: block;

    background: white;

    transition: .2s ease;
}

.sx-menu-button.is-active span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.sx-menu-button.is-active span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.sx-mobile-menu {
    display: none;
}


/* HERO */

.sx-hero {
    position: relative;

    min-height: calc(100vh - 82px);

    overflow: hidden;

    border-bottom: 1px solid var(--sx-line);

    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(184, 255, 0, .055),
            transparent 35%
        );
}

.sx-grid-bg {
    position: absolute;
    inset: 0;

    opacity: .14;

    background-image:
        linear-gradient(
            rgba(184, 255, 0, .08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(184, 255, 0, .08) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 15%,
            black 70%,
            transparent
        );
}

.sx-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(120px);

    pointer-events: none;
}

.sx-glow-one {
    width: 320px;
    height: 320px;

    right: 8%;
    top: 10%;

    background: rgba(184, 255, 0, .08);
}

.sx-glow-two {
    width: 280px;
    height: 280px;

    left: -120px;
    bottom: 0;

    background: rgba(184, 255, 0, .025);
}

.sx-hero-grid {
    position: relative;
    z-index: 2;

    min-height: calc(100vh - 82px);

    display: grid;

    grid-template-columns:
        minmax(0, .95fr)
        minmax(520px, 1.05fr);

    gap: 70px;

    align-items: center;
}

.sx-eyebrow {
    color: var(--sx-green);

    font-size: 12px;
    font-weight: 900;

    letter-spacing: .18em;
}

.sx-hero h1 {
    max-width: 900px;

    margin: 22px 0 28px;

    font-size: clamp(60px, 6.2vw, 104px);
    line-height: .94;

    letter-spacing: -.06em;
}

.sx-hero h1 span {
    display: block;

    color: var(--sx-green);
}

.sx-hero-text {
    max-width: 720px;

    margin: 0;

    color: #a5aeb4;

    font-size: 18px;
    line-height: 1.8;
}

.sx-hero-actions {
    display: flex;

    gap: 14px;

    margin-top: 38px;
}

.sx-trust-line {
    margin-top: 30px;

    color: #747e85;

    font-size: 12px;
}

.sx-trust-line span {
    margin-right: 9px;

    color: var(--sx-green);
}


/* HERO GRAPHIC */

.sx-hero-visual {
    position: relative;

    height: 650px;

    display: grid;
    place-items: center;
}

.sx-x-symbol {
    position: relative;
    z-index: 5;

    width: 420px;
    height: 420px;

    filter:
        drop-shadow(
            0 0 38px rgba(184, 255, 0, .12)
        );
}

.sx-x-left,
.sx-x-right {
    position: absolute;

    width: 110px;
    height: 400px;

    top: 10px;
    left: 155px;

    border-radius: 9px;
}

.sx-x-left {
    transform: rotate(-42deg);

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #b7bdc2 100%
        );
}

.sx-x-right {
    transform: rotate(42deg);

    background:
        linear-gradient(
            180deg,
            #d2ff35 0%,
            #8ede00 100%
        );

    box-shadow:
        0 0 48px rgba(184, 255, 0, .24);
}

.sx-x-core {
    position: absolute;
    z-index: 10;

    width: 138px;
    height: 138px;

    top: 141px;
    left: 141px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;

    background:
        radial-gradient(
            circle at 50% 35%,
            #101419,
            #050607 70%
        );

    color: var(--sx-green);

    font-size: 40px;
    font-weight: 900;

    box-shadow: 0 24px 70px rgba(0, 0, 0, .7);
}

.sx-orbit {
    position: absolute;

    border: 1px solid rgba(184, 255, 0, .18);
    border-radius: 50%;

    transform: rotateX(68deg);
}

.sx-orbit-one {
    width: 610px;
    height: 350px;
}

.sx-orbit-two {
    width: 780px;
    height: 440px;

    opacity: .42;
}

.sx-tech-note {
    position: absolute;
    z-index: 6;

    min-width: 160px;

    padding: 14px 16px;

    border: 1px solid rgba(184, 255, 0, .14);
    border-radius: 8px;

    background: rgba(7, 9, 10, .78);

    backdrop-filter: blur(14px);
}

.sx-tech-note span {
    display: block;

    margin-bottom: 4px;

    color: #687179;

    font-size: 9px;
    letter-spacing: .13em;
}

.sx-tech-note strong {
    color: var(--sx-green);

    font-size: 12px;
    letter-spacing: .12em;
}

.sx-tech-note-one {
    right: 3%;
    top: 23%;
}

.sx-tech-note-two {
    left: 5%;
    bottom: 20%;
}


/* SECTIONS */

.sx-services,
.sx-process,
.sx-projects,
.sx-about,
.sx-contact {
    padding: 120px 0;
}

.sx-section-head {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 54px;
}

.sx-section-head h2,
.sx-about h2,
.sx-contact h2 {
    max-width: 800px;

    margin: 12px 0 0;

    font-size: clamp(38px, 4vw, 64px);
    line-height: 1.03;

    letter-spacing: -.045em;
}

.sx-section-head p {
    max-width: 590px;

    margin: 0;

    color: var(--sx-muted);

    font-size: 16px;
    line-height: 1.8;
}


/* SERVICES */

.sx-service-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--sx-line);
    border-left: 1px solid var(--sx-line);
}

.sx-card {
    position: relative;

    min-height: 310px;

    padding: 34px;

    overflow: hidden;

    border-right: 1px solid var(--sx-line);
    border-bottom: 1px solid var(--sx-line);

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, .014),
            transparent
        );

    transition:
        background .25s ease,
        transform .25s ease;
}

.sx-card::after {
    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    right: -80px;
    bottom: -80px;

    border-radius: 50%;

    background: rgba(184, 255, 0, .07);

    filter: blur(50px);

    opacity: 0;

    transition: opacity .25s ease;
}

.sx-card:hover {
    transform: translateY(-4px);

    background:
        linear-gradient(
            180deg,
            rgba(184, 255, 0, .055),
            transparent 75%
        );
}

.sx-card:hover::after {
    opacity: 1;
}

.sx-card-number {
    position: absolute;

    top: 20px;
    right: 22px;

    color: #394047;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .15em;
}

.sx-card-icon {
    color: var(--sx-green);

    font-size: 34px;
    line-height: 1;
}

.sx-card h3 {
    margin: 38px 0 14px;

    font-size: 19px;
}

.sx-card p {
    max-width: 290px;

    margin: 0 0 28px;

    color: var(--sx-muted);

    font-size: 13px;
    line-height: 1.75;
}

.sx-card-link {
    color: var(--sx-green);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: .09em;
    text-transform: uppercase;
}


/* PROCESS */

.sx-process {
    border-top: 1px solid var(--sx-line);
    border-bottom: 1px solid var(--sx-line);

    background: #080a0c;
}

.sx-process-grid {
    display: grid;

    grid-template-columns: repeat(6, 1fr);

    margin-top: 70px;
}

.sx-process-grid article {
    position: relative;

    padding: 40px 26px 10px;

    border-top: 1px solid rgba(184, 255, 0, .20);
}

.sx-process-grid strong {
    position: absolute;

    width: 44px;
    height: 44px;

    top: -22px;
    left: 25px;

    display: grid;
    place-items: center;

    border: 1px solid var(--sx-green);
    border-radius: 50%;

    background: #080a0c;
    color: var(--sx-green);

    font-size: 11px;
}

.sx-process-grid h3 {
    margin: 18px 0 10px;

    font-size: 16px;
}

.sx-process-grid p {
    margin: 0;

    color: var(--sx-muted);

    font-size: 12px;
    line-height: 1.7;
}


/* PROJECTS */

.sx-project-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.sx-project {
    overflow: hidden;

    border: 1px solid var(--sx-line);
    border-radius: var(--sx-radius);

    background: var(--sx-panel);

    transition:
        transform .25s ease,
        border-color .25s ease;
}

.sx-project:hover {
    transform: translateY(-5px);

    border-color: rgba(184, 255, 0, .20);
}

.sx-project-preview {
    position: relative;

    height: 300px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-bottom: 1px solid var(--sx-line);

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(184, 255, 0, .12),
            transparent 48%
        ),
        #07090b;
}

.sx-preview-window {
    position: relative;

    width: 76%;
    height: 65%;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 10px;

    background: #0c1013;

    box-shadow: 0 30px 70px rgba(0, 0, 0, .45);
}

.sx-preview-top {
    height: 28px;

    display: flex;
    align-items: center;

    gap: 5px;

    padding: 0 10px;

    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.sx-preview-top span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #3c4449;
}

.sx-preview-top span:first-child {
    background: var(--sx-green);
}

.sx-preview-sidebar {
    position: absolute;

    left: 0;
    top: 28px;
    bottom: 0;

    width: 28%;

    border-right: 1px solid rgba(255, 255, 255, .06);

    background: rgba(255, 255, 255, .015);
}

.sx-preview-content {
    position: absolute;

    left: 35%;
    right: 8%;
    top: 48px;
}

.sx-preview-content div {
    height: 12px;

    margin-bottom: 12px;

    border-radius: 3px;

    background: rgba(255, 255, 255, .065);
}

.sx-preview-content div:first-child {
    width: 68%;

    background: rgba(184, 255, 0, .35);
}

.sx-project-preview-alt {
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(184, 255, 0, .08),
            transparent 48%
        ),
        #07090b;
}

.sx-mobile-mockup {
    position: relative;

    width: 125px;
    height: 235px;

    padding: 34px 13px 15px;

    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 25px;

    background: #0b0e11;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, .5),
        0 0 50px rgba(184, 255, 0, .08);
}

.sx-mobile-notch {
    position: absolute;

    width: 42px;
    height: 5px;

    top: 13px;
    left: 50%;

    border-radius: 10px;

    background: #293037;

    transform: translateX(-50%);
}

.sx-mobile-line {
    height: 7px;

    margin-bottom: 10px;

    border-radius: 3px;

    background: rgba(255, 255, 255, .08);
}

.sx-mobile-line-short {
    width: 60%;

    background: rgba(184, 255, 0, .35);
}

.sx-mobile-block {
    height: 85px;

    margin: 16px 0;

    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            rgba(184, 255, 0, .14),
            rgba(255, 255, 255, .02)
        );

    border: 1px solid rgba(184, 255, 0, .10);
}

.sx-project-preview-next {
    flex-direction: column;

    padding: 30px;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(255, 255, 255, .05),
            transparent 46%
        ),
        #07090b;
}

.sx-project-preview-next span {
    color: var(--sx-green);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .22em;
}

.sx-project-preview-next strong {
    margin-top: 12px;

    font-size: 27px;
    letter-spacing: -.04em;
}

.sx-project-preview-next a {
    margin-top: 22px;

    color: #aab2b7;

    font-size: 12px;
}

.sx-project-body {
    padding: 28px;
}

.sx-project-category {
    color: var(--sx-green);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .14em;
}

.sx-project-body h3 {
    margin: 9px 0 10px;

    font-size: 20px;
    line-height: 1.3;
}

.sx-project-body p {
    margin: 0;

    color: var(--sx-muted);

    font-size: 13px;
    line-height: 1.7;
}

.sx-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 20px;
}

.sx-tags span {
    padding: 5px 8px;

    border: 1px solid var(--sx-line);
    border-radius: 5px;

    color: #929ba2;

    font-size: 9px;
}


/* STATS */

.sx-stats {
    border-top: 1px solid var(--sx-line);
    border-bottom: 1px solid var(--sx-line);

    background: #080a0c;
}

.sx-stats-grid {
    min-height: 140px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    align-items: stretch;
}

.sx-stats-grid > div {
    padding: 28px 38px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-right: 1px solid var(--sx-line);
}

.sx-stats-grid > div:last-child {
    border-right: 0;
}

.sx-stats strong {
    display: block;

    color: var(--sx-green);

    font-size: 32px;
    line-height: 1;
}

.sx-stats span {
    margin-top: 10px;

    color: #818b91;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .12em;
    text-transform: uppercase;
}


/* ABOUT */

.sx-about-grid {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 110px;
}

.sx-about-copy {
    max-width: 700px;
}

.sx-about p {
    margin: 0 0 24px;

    color: var(--sx-muted);

    font-size: 17px;
    line-height: 1.85;
}


/* CONTACT */

.sx-contact {
    padding-top: 20px;
}

.sx-contact-box {
    position: relative;

    padding: 68px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;

    overflow: hidden;

    border: 1px solid rgba(184, 255, 0, .20);
    border-radius: var(--sx-radius);

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(184, 255, 0, .10),
            transparent 35%
        ),
        var(--sx-panel);
}

.sx-contact-box::after {
    content: "X";

    position: absolute;

    right: -10px;
    bottom: -100px;

    color: rgba(184, 255, 0, .025);

    font-size: 340px;
    font-weight: 900;
    line-height: 1;
}

.sx-contact-box > * {
    position: relative;
    z-index: 2;
}

.sx-contact p {
    max-width: 650px;

    margin-bottom: 0;

    color: var(--sx-muted);
}

.sx-contact-actions {
    min-width: 260px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 12px;
}

.sx-contact-actions > span {
    color: #687279;

    font-size: 10px;
}


/* FOOTER */

.sx-footer {
    padding-top: 76px;

    border-top: 1px solid var(--sx-line);

    background: #030405;
}

.sx-footer-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 65px;
}

.sx-footer-grid > div {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.sx-footer-brand p {
    max-width: 370px;

    margin-top: 16px;
}

.sx-footer-grid p,
.sx-footer-grid a,
.sx-footer-grid span {
    color: #7e878d;

    font-size: 12px;

    transition: color .2s ease;
}

.sx-footer-grid a:hover {
    color: var(--sx-green);
}

.sx-footer-grid strong {
    margin-bottom: 10px;

    font-size: 12px;
}

.sx-footer-bottom {
    margin-top: 65px;

    padding: 24px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top: 1px solid var(--sx-line);

    color: #60686d;

    font-size: 11px;
}

.sx-footer-bottom a {
    transition: color .2s ease;
}

.sx-footer-bottom a:hover {
    color: var(--sx-green);
}


/* RESPONSIVE */

@media (max-width: 1180px) {

    .sx-nav {
        display: none;
    }

    .sx-header-cta {
        margin-left: auto;
    }

    .sx-menu-button {
        display: flex;

        margin-left: 0;
    }

    .sx-mobile-menu {
        position: fixed;

        top: 82px;
        left: 0;
        right: 0;

        padding: 28px;

        display: flex;
        flex-direction: column;

        gap: 4px;

        visibility: hidden;
        opacity: 0;

        transform: translateY(-10px);

        border-bottom: 1px solid var(--sx-line);

        background: rgba(5, 6, 7, .98);

        transition:
            opacity .2s ease,
            transform .2s ease,
            visibility .2s ease;
    }

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

        transform: translateY(0);
    }

    .sx-mobile-menu a {
        padding: 14px 0;

        border-bottom: 1px solid rgba(255, 255, 255, .05);

        font-size: 15px;
        font-weight: 700;
    }

    .sx-hero-grid {
        grid-template-columns: 1fr;

        padding: 90px 0 45px;
    }

    .sx-hero-content {
        max-width: 900px;
    }

    .sx-hero-visual {
        height: 520px;
    }

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

    .sx-process-grid {
        grid-template-columns: repeat(3, 1fr);

        row-gap: 58px;
    }

    .sx-project-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sx-project:last-child {
        grid-column: 1 / -1;
    }
}


@media (max-width: 760px) {

    .sx-container {
        width: min(calc(100% - 30px), var(--sx-max));
    }

    .sx-header-inner {
        height: 68px;
    }

    .sx-header-cta {
        display: none;
    }

    .sx-mobile-menu {
        top: 68px;
    }

    .sx-logo {
        font-size: 19px;
    }

    .sx-logo-mark {
        width: 38px;
        height: 38px;
    }

    .sx-hero {
        min-height: auto;
    }

    .sx-hero-grid {
        min-height: auto;

        padding-top: 74px;

        gap: 20px;
    }

    .sx-hero h1 {
        font-size: clamp(48px, 15vw, 64px);
    }

    .sx-hero-text {
        font-size: 15px;
    }

    .sx-hero-actions {
        flex-direction: column;
    }

    .sx-button {
        width: 100%;
    }

    .sx-hero-visual {
        height: 390px;

        transform: scale(.72);
    }

    .sx-services,
    .sx-process,
    .sx-projects,
    .sx-about,
    .sx-contact {
        padding: 82px 0;
    }

    .sx-section-head,
    .sx-about-grid {
        grid-template-columns: 1fr;

        gap: 24px;
    }

    .sx-section-head {
        margin-bottom: 38px;
    }

    .sx-section-head p {
        font-size: 14px;
    }

    .sx-service-grid,
    .sx-process-grid,
    .sx-project-grid,
    .sx-stats-grid {
        grid-template-columns: 1fr;
    }

    .sx-card {
        min-height: auto;
    }

    .sx-process-grid {
        row-gap: 50px;
    }

    .sx-project:last-child {
        grid-column: auto;
    }

    .sx-stats-grid > div {
        min-height: 110px;

        border-right: 0;
        border-bottom: 1px solid var(--sx-line);
    }

    .sx-stats-grid > div:last-child {
        border-bottom: 0;
    }

    .sx-about p {
        font-size: 15px;
    }

    .sx-contact {
        padding-top: 0;
    }

    .sx-contact-box {
        padding: 38px 25px;

        flex-direction: column;
        align-items: flex-start;
    }

    .sx-contact-actions {
        width: 100%;
        min-width: 0;
    }

    .sx-footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 44px 25px;
    }

    .sx-footer-brand {
        grid-column: 1 / -1;
    }

    .sx-footer-bottom {
        gap: 20px;

        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 430px) {

    .sx-footer-grid {
        grid-template-columns: 1fr;
    }

    .sx-footer-brand {
        grid-column: auto;
    }
}


/* =========================================================
   SHELL X - CONTACT & WHATSAPP
   ========================================================= */

.sx-contact {
    padding: 110px 0 120px;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(184,255,59,.07),
            transparent 30%
        ),
        #11171d;
}

.sx-contact-head {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 48px;
}

.sx-contact-head h2 {
    margin: 12px 0 0;

    font-size: clamp(38px,4vw,64px);
    line-height: 1.03;

    letter-spacing: -.045em;
}

.sx-contact-head > p {
    max-width: 590px;

    margin: 0;

    color: var(--sx-muted);

    font-size: 15px;
    line-height: 1.8;
}

.sx-contact-grid {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 20px;
}

.sx-contact-info,
.sx-form-card {
    border: 1px solid rgba(255,255,255,.10);
    border-radius: var(--sx-radius);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.01)
        ),
        #19212a;

    box-shadow:
        0 24px 70px rgba(0,0,0,.16);
}

.sx-contact-info {
    padding: 42px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(184,255,59,.08),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #202934,
            #19212a
        );
}

.sx-contact-label {
    color: var(--sx-green);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: .16em;
}

.sx-contact-info h3 {
    margin: 14px 0 18px;

    font-size: clamp(30px,3vw,46px);
    line-height: 1.05;

    letter-spacing: -.04em;
}

.sx-contact-info-top > p {
    max-width: 520px;

    margin: 0;

    color: var(--sx-muted);

    font-size: 14px;
    line-height: 1.8;
}

.sx-contact-methods {
    display: flex;
    flex-direction: column;

    gap: 10px;

    margin-top: 48px;
}

.sx-contact-method {
    min-height: 72px;

    padding: 12px 15px;

    display: flex;
    align-items: center;

    gap: 14px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 11px;

    background: rgba(255,255,255,.025);

    transition:
        transform .2s ease,
        border-color .2s ease,
        background .2s ease;
}

.sx-contact-method:hover {
    transform: translateX(4px);

    border-color: rgba(184,255,59,.25);

    background: rgba(184,255,59,.045);
}

.sx-whatsapp-method {
    border-color: rgba(184,255,59,.18);

    background: rgba(184,255,59,.055);
}

.sx-contact-method-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 auto;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: rgba(184,255,59,.10);
    color: var(--sx-green);

    font-size: 17px;
    font-weight: 900;
}

.sx-contact-method > span:nth-child(2) {
    min-width: 0;

    display: flex;
    flex-direction: column;
}

.sx-contact-method small {
    color: #77838c;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .13em;
}

.sx-contact-method strong {
    margin-top: 3px;

    overflow-wrap: anywhere;

    color: #f1f4f6;

    font-size: 13px;
}

.sx-contact-method b {
    margin-left: auto;

    color: var(--sx-green);

    font-size: 13px;
}


/* FORM */

.sx-form-card {
    padding: 42px;
}

.sx-form-header {
    margin-bottom: 30px;
}

.sx-form-header span {
    display: block;

    color: var(--sx-green);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .16em;
}

.sx-form-header strong {
    display: block;

    margin-top: 7px;

    font-size: 25px;

    letter-spacing: -.025em;
}

.sx-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;
}

.sx-field {
    margin-bottom: 17px;
}

.sx-field label {
    display: block;

    margin-bottom: 8px;

    color: #9da7af;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .05em;
}

.sx-field input,
.sx-field select,
.sx-field textarea {
    width: 100%;

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 9px;

    outline: none;

    background: #141b22;
    color: #f5f7f8;

    font-family: inherit;
    font-size: 13px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.sx-field input,
.sx-field select {
    height: 52px;

    padding: 0 15px;
}

.sx-field textarea {
    min-height: 150px;

    padding: 15px;

    resize: vertical;
}

.sx-field input::placeholder,
.sx-field textarea::placeholder {
    color: #66727b;
}

.sx-field input:focus,
.sx-field select:focus,
.sx-field textarea:focus {
    border-color: rgba(184,255,59,.45);

    background: #171f27;

    box-shadow:
        0 0 0 3px rgba(184,255,59,.05);
}

.sx-field select {
    cursor: pointer;
}

.sx-form-submit {
    width: 100%;

    margin-top: 5px;

    cursor: pointer;
}

.sx-form-note {
    margin: 12px 0 0;

    text-align: center;

    color: #707c85;

    font-size: 9px;
}


@media (max-width: 900px) {

    .sx-contact-head,
    .sx-contact-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .sx-contact-head {
        margin-bottom: 35px;
    }
}


@media (max-width: 600px) {

    .sx-contact {
        padding: 75px 0;
    }

    .sx-contact-info,
    .sx-form-card {
        padding: 27px 20px;
    }

    .sx-form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .sx-contact-method {
        min-height: 68px;
    }

    .sx-contact-method strong {
        font-size: 12px;
    }
}


/* =========================================================
   SHELL X - PORTOFOLIU REAL
   ========================================================= */

.sx-portfolio-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 22px;
}


.sx-portfolio-card {
    position: relative;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 20px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.015)
        ),
        #19212a;

    box-shadow:
        0 20px 60px rgba(0,0,0,.16);

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


.sx-portfolio-card:hover {
    transform: translateY(-7px);

    border-color: rgba(184,255,59,.25);

    box-shadow:
        0 30px 80px rgba(0,0,0,.25),
        0 0 50px rgba(184,255,59,.035);
}


/* PREVIEW */

.sx-portfolio-preview {
    position: relative;

    display: block;

    overflow: hidden;

    border-bottom: 1px solid rgba(255,255,255,.08);

    background: #11171d;
}


.sx-browser-bar {
    height: 46px;

    padding: 0 14px;

    display: flex;
    align-items: center;

    gap: 11px;

    background:
        linear-gradient(
            180deg,
            #232c35,
            #1c242c
        );

    border-bottom: 1px solid rgba(255,255,255,.07);
}


.sx-browser-dots {
    display: flex;

    gap: 5px;
}


.sx-browser-dots span {
    width: 7px;
    height: 7px;

    display: block;

    border-radius: 50%;

    background: #626d75;
}


.sx-browser-dots span:first-child {
    background: var(--sx-green);
}


.sx-browser-address {
    height: 25px;

    min-width: 0;

    flex: 1;

    padding: 0 10px;

    display: flex;
    align-items: center;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.06);
    border-radius: 6px;

    background: rgba(0,0,0,.13);

    color: #89949d;

    font-size: 9px;

    white-space: nowrap;
    text-overflow: ellipsis;
}


.sx-browser-open {
    color: var(--sx-green);

    font-size: 12px;
}


/* SCREENSHOT */

.sx-preview-image {
    position: relative;

    height: 330px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #202934,
            #151b22
        );
}


.sx-preview-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: top center;

    transition:
        transform .65s cubic-bezier(.2,.8,.2,1),
        filter .3s ease;
}


.sx-portfolio-card:hover
.sx-preview-image img {
    transform: scale(1.035);
}


/* OVERLAY */

.sx-preview-overlay {
    position: absolute;

    inset: 0;

    padding: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    opacity: 0;

    background:
        linear-gradient(
            180deg,
            rgba(15,19,24,.08),
            rgba(15,19,24,.72)
        );

    backdrop-filter: blur(1px);

    transition: opacity .25s ease;
}


.sx-preview-overlay span {
    padding: 10px 16px;

    border: 1px solid rgba(184,255,59,.35);
    border-radius: 8px;

    background: rgba(15,19,24,.88);

    color: #fff;

    font-size: 11px;
    font-weight: 800;
}


.sx-preview-overlay strong {
    width: 37px;
    height: 37px;

    display: grid;
    place-items: center;

    border-radius: 8px;

    background: var(--sx-green);
    color: #101418;

    font-size: 13px;
}


.sx-portfolio-card:hover
.sx-preview-overlay {
    opacity: 1;
}


/* INFO */

.sx-portfolio-info {
    min-height: 118px;

    padding: 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.sx-portfolio-info h3 {
    margin: 5px 0 0;

    font-size: 20px;

    letter-spacing: -.025em;
}


.sx-portfolio-link {
    flex: 0 0 auto;

    padding: 9px 11px;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    border: 1px solid rgba(255,255,255,.09);
    border-radius: 8px;

    background: rgba(255,255,255,.025);

    color: #aab4bc;

    font-size: 10px;
    font-weight: 700;

    transition:
        color .2s ease,
        background .2s ease,
        border-color .2s ease;
}


.sx-portfolio-link span {
    color: var(--sx-green);
}


.sx-portfolio-link:hover {
    border-color: rgba(184,255,59,.30);

    background: rgba(184,255,59,.06);

    color: #fff;
}


/* TABLET */

@media (max-width: 1100px) {

    .sx-portfolio-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

    .sx-portfolio-card:last-child {
        grid-column: 1 / -1;
    }

    .sx-portfolio-card:last-child
    .sx-preview-image {
        height: 420px;
    }
}


/* MOBILE */

@media (max-width: 700px) {

    .sx-portfolio-grid {
        grid-template-columns: 1fr;
    }

    .sx-portfolio-card:last-child {
        grid-column: auto;
    }

    .sx-preview-image,
    .sx-portfolio-card:last-child
    .sx-preview-image {
        height: 260px;
    }

    .sx-portfolio-info {
        min-height: auto;

        padding: 20px;

        align-items: flex-start;
        flex-direction: column;
    }

    .sx-portfolio-link {
        width: 100%;

        justify-content: space-between;
    }
}

