:root {
    --bg: #020812;
    --bg-soft: #06111f;
    --panel: rgba(7, 18, 31, 0.72);
    --panel-strong: rgba(6, 16, 29, 0.94);

    --text: #f7fbff;
    --text-soft: #a8b8c9;
    --text-muted: #6f8398;

    --blue: #5fc7ff;
    --blue-strong: #168dff;
    --blue-electric: #89dcff;

    --border: rgba(108, 188, 255, 0.22);
    --border-strong: rgba(112, 203, 255, 0.55);

    --shadow-blue:
        0 0 22px rgba(58, 172, 255, 0.26),
        0 0 70px rgba(42, 130, 255, 0.12);

    --container: 1480px;
    --radius: 22px;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;

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

    color: var(--text);

    background:
        radial-gradient(
            circle at 68% 28%,
            rgba(14, 109, 190, 0.13),
            transparent 28%
        ),
        radial-gradient(
            circle at 15% 38%,
            rgba(0, 95, 185, 0.08),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            #01060d 0%,
            #020914 45%,
            #02070f 100%
        );

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

img,
svg {
    display: block;
    max-width: 100%;
}

.container {
    width: min(calc(100% - 72px), var(--container));
    margin-inline: auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: absolute;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 25px;
}

.header-inner {
    display: grid;
    grid-template-columns: minmax(250px, 1fr) auto minmax(250px, 1fr);
    align-items: center;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: max-content;
    gap: 9px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 34px;

    color: white;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: -4px;

    filter:
        drop-shadow(0 0 8px rgba(95, 199, 255, 0.65));
}

.brand-name {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 7px;
}

.brand-country {
    color: #90a2b5;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 43px;
}

.main-nav a {
    position: relative;
    padding: 13px 0;

    color: #c7d2df;
    font-size: 14px;
    font-weight: 400;

    transition:
        color 180ms ease,
        text-shadow 180ms ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;

    width: 0;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--blue),
        transparent
    );

    box-shadow: 0 0 12px rgba(75, 190, 255, 0.9);

    transform: translateX(-50%);
    transition: width 200ms ease;
}

.main-nav a:hover {
    color: white;
    text-shadow: 0 0 14px rgba(92, 199, 255, 0.5);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-cta {
    justify-self: end;

    display: inline-flex;
    align-items: center;
    gap: 18px;

    padding: 13px 22px;
    border: 1px solid rgba(96, 194, 255, 0.65);
    border-radius: 999px;

    color: #e8f6ff;
    font-size: 13px;

    background:
        linear-gradient(
            180deg,
            rgba(20, 50, 77, 0.38),
            rgba(4, 14, 26, 0.35)
        );

    box-shadow:
        inset 0 0 18px rgba(57, 164, 255, 0.06),
        0 0 18px rgba(58, 171, 255, 0.12);

    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.header-cta:hover {
    border-color: rgba(130, 219, 255, 0.95);
    box-shadow:
        inset 0 0 26px rgba(56, 169, 255, 0.12),
        0 0 30px rgba(57, 170, 255, 0.22);

    transform: translateY(-1px);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    isolation: isolate;
    min-height: 800px;
    overflow: hidden;
    padding: 145px 0 72px;

    border-bottom: 1px solid rgba(80, 162, 225, 0.12);
}

.hero-background,
.hero-grid,
.hero-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-background {
    z-index: -4;
}

.hero-grid {
    opacity: 0.14;

    background-image:
        linear-gradient(
            rgba(75, 162, 225, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(75, 162, 225, 0.06) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent 0%,
            black 25%,
            black 75%,
            transparent 100%
        );
}

.hero-glow {
    z-index: -3;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-glow-1 {
    top: 15%;
    left: 55%;
    width: 570px;
    height: 570px;

    background:
        radial-gradient(
            circle,
            rgba(0, 134, 255, 0.16),
            transparent 68%
        );
}

.hero-glow-2 {
    top: 30%;
    left: 7%;
    width: 340px;
    height: 340px;

    background:
        radial-gradient(
            circle,
            rgba(54, 173, 255, 0.07),
            transparent 72%
        );
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(420px, 0.78fr) minmax(650px, 1.22fr);
    align-items: center;
    min-height: 590px;
    gap: 20px;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 10px;
}

.eyebrow,
.section-eyebrow {
    color: #7795ae;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 5px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.eyebrow span {
    color: #3e627f;
}

.hero h1 {
    margin: 0;
    font-weight: 300;
}

.hero-brand {
    display: block;
    margin-bottom: 13px;

    color: white;
    font-size: clamp(36px, 3.7vw, 60px);
    font-weight: 300;
    letter-spacing: 8px;

    text-shadow:
        0 0 12px rgba(147, 220, 255, 0.22),
        0 0 30px rgba(63, 169, 255, 0.12);
}

.hero-brand small {
    color: #8ea2b7;
    font-size: 0.55em;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-title {
    display: block;

    font-size: clamp(44px, 4.8vw, 78px);
    font-weight: 280;
    line-height: 0.98;
    letter-spacing: -3px;
}

.hero-title strong {
    color: #cfeeff;
    font-weight: 300;

    text-shadow:
        0 0 20px rgba(74, 182, 255, 0.42),
        0 0 50px rgba(45, 131, 255, 0.2);
}

.hero-description {
    max-width: 585px;
    margin: 26px 0 0;

    color: #c2cfdb;
    font-size: 16px;
    line-height: 1.52;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 31px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    min-height: 49px;
    padding: 0 23px;
    border-radius: 999px;

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

    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

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

.button-primary {
    color: #04101a;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #e5f5ff 100%
        );

    box-shadow:
        0 8px 30px rgba(127, 208, 255, 0.11),
        0 0 0 1px rgba(255, 255, 255, 0.45);
}

.button-primary:hover {
    box-shadow:
        0 10px 40px rgba(116, 209, 255, 0.19),
        0 0 25px rgba(118, 211, 255, 0.12);
}

.button-secondary {
    color: #c6d4df;

    border: 1px solid rgba(115, 190, 244, 0.26);

    background:
        linear-gradient(
            180deg,
            rgba(19, 42, 64, 0.32),
            rgba(5, 14, 23, 0.2)
        );
}

.button-secondary:hover {
    border-color: rgba(108, 202, 255, 0.52);
    box-shadow: 0 0 22px rgba(59, 172, 255, 0.1);
}

.play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 23px;
    height: 23px;

    border: 1px solid rgba(116, 199, 255, 0.38);
    border-radius: 50%;

    color: #d3f1ff;
    font-size: 8px;
}

.hero-stats {
    display: flex;
    align-items: stretch;
    margin-top: 37px;
}

.stat {
    display: flex;
    flex-direction: column;
    min-width: 128px;
    padding: 0 27px;

    border-left: 1px solid rgba(102, 170, 220, 0.17);
}

.stat:first-child {
    padding-left: 8px;
    border-left: 0;
}

.stat strong {
    color: #d9f2ff;
    font-size: 27px;
    font-weight: 300;
    line-height: 1;
}

.stat span {
    margin-top: 9px;

    color: #7d91a5;
    font-size: 11px;
}


/* =========================================================
   ECOSYSTEM STAGE
========================================================= */

.ecosystem-stage {
    position: relative;
    width: 100%;
    height: 620px;
}

.romania-map {
    position: absolute;
    z-index: 0;
    top: 80px;
    left: 50%;

    width: 570px;
    height: 435px;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(82, 185, 255, 0.13),
            rgba(11, 76, 128, 0.035) 50%,
            transparent 75%
        );

    clip-path: polygon(
        4% 42%,
        9% 29%,
        18% 28%,
        23% 20%,
        34% 19%,
        42% 10%,
        53% 14%,
        61% 10%,
        70% 19%,
        82% 21%,
        88% 32%,
        96% 37%,
        91% 48%,
        94% 58%,
        84% 65%,
        78% 76%,
        66% 77%,
        57% 87%,
        46% 80%,
        37% 84%,
        29% 76%,
        20% 75%,
        15% 65%,
        8% 60%
    );

    border: 1px solid rgba(93, 192, 255, 0.18);

    box-shadow:
        inset 0 0 80px rgba(23, 120, 190, 0.09),
        0 0 100px rgba(22, 115, 180, 0.07);

    transform: translateX(-48%);
}

.romania-map::before,
.romania-map::after {
    content: "";
    position: absolute;
    inset: 0;
}

.romania-map::before {
    opacity: 0.33;

    background-image:
        radial-gradient(
            circle,
            rgba(148, 223, 255, 0.8) 0 1px,
            transparent 1.8px
        );

    background-size: 29px 29px;
}

.romania-map::after {
    background:
        linear-gradient(
            115deg,
            transparent 10%,
            rgba(54, 178, 255, 0.08) 44%,
            transparent 47%
        );
}

.aurion-core {
    position: absolute;
    z-index: 8;
    top: 50%;
    left: 50%;

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

    width: 238px;
    height: 238px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(13, 53, 83, 0.98) 0%,
            rgba(3, 15, 28, 0.98) 54%,
            rgba(2, 9, 17, 0.99) 100%
        );

    border: 1px solid rgba(136, 218, 255, 0.82);

    box-shadow:
        inset 0 0 36px rgba(74, 192, 255, 0.12),
        inset 0 0 90px rgba(31, 112, 196, 0.1),
        0 0 16px rgba(123, 218, 255, 0.72),
        0 0 45px rgba(45, 166, 255, 0.42),
        0 0 110px rgba(22, 114, 255, 0.22);

    transform: translate(-50%, -50%);
}

.aurion-core::before {
    content: "";
    position: absolute;
    inset: -18px;

    border: 1px solid rgba(96, 198, 255, 0.23);
    border-radius: 50%;

    box-shadow:
        0 0 18px rgba(48, 173, 255, 0.3),
        inset 0 0 19px rgba(74, 190, 255, 0.08);
}

.aurion-core::after {
    content: "";
    position: absolute;
    inset: -40px;

    border: 1px solid rgba(86, 182, 255, 0.09);
    border-radius: 50%;
}

.core-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.core-ring-outer {
    inset: -23px;
    border: 1px dashed rgba(120, 215, 255, 0.18);
}

.core-ring-middle {
    inset: 12px;
    border: 1px solid rgba(116, 210, 255, 0.17);
}

.core-ring-inner {
    inset: 35px;
    border: 1px solid rgba(109, 203, 255, 0.11);
}

.core-content {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.core-symbol {
    margin-bottom: 4px;

    color: #effbff;
    font-size: 73px;
    font-weight: 200;
    line-height: 0.95;

    text-shadow:
        0 0 9px #85dfff,
        0 0 30px rgba(53, 177, 255, 0.9),
        0 0 60px rgba(32, 108, 255, 0.45);
}

.core-content strong {
    font-size: 23px;
    font-weight: 400;
    letter-spacing: 7px;
}

.core-content span {
    margin-top: 5px;
    color: #9fb2c5;
    font-size: 13px;
}


/* =========================================================
   PROJECT NODES
========================================================= */

.project-node {
    position: absolute;
    z-index: 12;

    display: flex;
    align-items: center;
    gap: 13px;

    max-width: 205px;

    color: white;
}

.project-node::before {
    content: "";
    position: absolute;
    z-index: -2;
    top: 50%;

    width: 180px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(83, 190, 255, 0.62),
            rgba(166, 226, 255, 0.12)
        );

    box-shadow:
        0 0 9px rgba(68, 183, 255, 0.55);
}

.project-node:nth-of-type(even)::before {
    background:
        linear-gradient(
            90deg,
            rgba(166, 226, 255, 0.12),
            rgba(83, 190, 255, 0.62),
            transparent
        );
}

.node-icon {
    flex: 0 0 auto;

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

    width: 61px;
    height: 61px;

    border: 1px solid rgba(129, 218, 255, 0.77);
    border-radius: 50%;

    color: #eaf9ff;
    font-size: 15px;
    font-weight: 500;

    background:
        radial-gradient(
            circle,
            rgba(30, 96, 145, 0.24),
            rgba(2, 12, 23, 0.9)
        );

    box-shadow:
        inset 0 0 18px rgba(62, 184, 255, 0.11),
        0 0 11px rgba(69, 185, 255, 0.53),
        0 0 31px rgba(39, 140, 255, 0.25);
}

.project-node strong,
.project-node span {
    display: block;
}

.project-node strong {
    margin-bottom: 3px;

    font-size: 13px;
    font-weight: 500;
}

.project-node span {
    color: #9db0c2;
    font-size: 10px;
    line-height: 1.38;
}

.node-ai {
    top: 17px;
    left: 99px;
}

.node-ai::before {
    top: 70px;
    left: 40px;
    width: 210px;
    transform: rotate(28deg);
    transform-origin: left center;
}

.node-taxi {
    top: 186px;
    left: 0;
}

.node-taxi::before {
    left: 47px;
    width: 250px;
    transform: rotate(5deg);
}

.node-search {
    bottom: 22px;
    left: 76px;
}

.node-search::before {
    top: -26px;
    left: 50px;
    width: 210px;
    transform: rotate(-27deg);
    transform-origin: left center;
}

.node-programari {
    top: 27px;
    right: 28px;
}

.node-programari::before {
    right: 130px;
    width: 220px;
    transform: rotate(-27deg);
    transform-origin: right center;
}

.node-localpass {
    top: 189px;
    right: -25px;
}

.node-localpass::before {
    right: 165px;
    width: 190px;
    transform: rotate(-7deg);
    transform-origin: right center;
}

.node-home {
    top: 340px;
    right: -34px;
}

.node-home::before {
    right: 162px;
    width: 190px;
    transform: rotate(8deg);
    transform-origin: right center;
}

.node-commercial {
    right: 84px;
    bottom: 27px;
}

.node-commercial::before {
    top: -21px;
    right: 160px;
    width: 170px;
    transform: rotate(30deg);
    transform-origin: right center;
}


/* =========================================================
   PROJECTS SECTION
========================================================= */

.projects-section {
    position: relative;
    padding: 35px 0 50px;

    background:
        linear-gradient(
            180deg,
            rgba(1, 7, 14, 0.97),
            rgba(2, 9, 16, 1)
        );
}

.projects-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;

    width: min(96%, 1540px);
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(91, 184, 247, 0.26),
            transparent
        );

    transform: translateX(-50%);
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr 440px;
    align-items: end;
    gap: 40px;
    margin-bottom: 25px;
}

.section-heading h2 {
    margin: 9px 0 0;

    color: #eef7ff;
    font-size: clamp(29px, 2.6vw, 43px);
    font-weight: 300;
    letter-spacing: -1.6px;
}

.section-heading p {
    justify-self: end;
    max-width: 410px;
    margin: 0;

    color: #8fa1b3;
    font-size: 12px;
    line-height: 1.45;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.project-card {
    position: relative;
    isolation: isolate;
    min-height: 170px;
    overflow: hidden;
    padding: 18px;

    border: 1px solid rgba(105, 178, 230, 0.17);
    border-radius: 8px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(46, 142, 209, 0.15),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            rgba(13, 30, 47, 0.9),
            rgba(4, 13, 22, 0.96)
        );

    transition:
        transform 200ms ease,
        border-color 200ms ease,
        box-shadow 200ms ease;
}

.project-card::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;

    opacity: 0;

    background:
        linear-gradient(
            135deg,
            rgba(75, 189, 255, 0.08),
            transparent 48%
        );

    transition: opacity 200ms ease;
}

.project-card:hover {
    z-index: 2;

    border-color: rgba(106, 199, 255, 0.42);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.22),
        0 0 28px rgba(50, 153, 222, 0.08);

    transform: translateY(-4px);
}

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

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 29px;
    height: 29px;
    margin-bottom: 14px;

    color: #d8f4ff;
    font-size: 10px;

    border: 1px solid rgba(119, 201, 255, 0.31);
    border-radius: 50%;
}

.project-card h3 {
    margin: 0 0 7px;

    font-size: 12px;
    font-weight: 500;
}

.project-card p {
    margin: 0;
    min-height: 43px;

    color: #8295a8;
    font-size: 10px;
    line-height: 1.38;
}

.project-card a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;
    margin-top: 13px;

    border: 1px solid rgba(115, 197, 249, 0.32);
    border-radius: 50%;

    color: #e2f7ff;
    font-size: 13px;
}


/* =========================================================
   EMPTY SECTIONS - vor fi construite ulterior
========================================================= */

#infrastructura,
#despre,
#contact {
    min-height: 1px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1320px) {

    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .main-nav {
        gap: 25px;
    }

    .hero-layout {
        grid-template-columns: 0.8fr 1.2fr;
    }

    .ecosystem-stage {
        transform: scale(0.92);
        transform-origin: center center;
    }

    .project-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


@media (max-width: 1080px) {

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

    .main-nav {
        display: none;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .hero {
        padding-top: 130px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 760px;
    }

    .ecosystem-stage {
        width: 760px;
        max-width: 100%;
        margin: 10px auto 0;

        transform: scale(0.94);
        transform-origin: top center;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .section-heading p {
        justify-self: start;
    }
}


@media (max-width: 760px) {

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

    .site-header {
        padding-top: 16px;
    }

    .brand-name {
        font-size: 18px;
        letter-spacing: 4px;
    }

    .brand-country {
        display: none;
    }

    .header-cta {
        padding: 11px 14px;
        font-size: 0;
    }

    .header-cta span:last-child {
        font-size: 17px;
    }

    .hero {
        min-height: auto;
        padding: 110px 0 42px;
    }

    .eyebrow {
        flex-wrap: wrap;
        margin-bottom: 20px;

        font-size: 8px;
        letter-spacing: 3px;
    }

    .hero-brand {
        font-size: 31px;
        letter-spacing: 4px;
    }

    .hero-title {
        font-size: clamp(43px, 13vw, 65px);
        letter-spacing: -2.5px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-stats {
        justify-content: space-between;
        overflow-x: auto;
    }

    .stat {
        min-width: 110px;
        padding: 0 18px;
    }

    .ecosystem-stage {
        height: auto;
        min-height: 760px;
        margin-top: 45px;

        transform: none;
    }

    .romania-map {
        top: 115px;
        width: 460px;
        max-width: 110vw;
        height: 350px;
    }

    .aurion-core {
        top: 285px;
        width: 190px;
        height: 190px;
    }

    .core-symbol {
        font-size: 55px;
    }

    .core-content strong {
        font-size: 18px;
        letter-spacing: 5px;
    }

    .project-node {
        position: relative;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;

        width: calc(50% - 8px);
        max-width: none;
        margin: 8px 0;
    }

    .project-node::before {
        display: none;
    }

    .ecosystem-stage {
        display: flex;
        align-content: flex-end;
        align-items: flex-end;
        flex-wrap: wrap;
        gap: 0 16px;
        padding-top: 490px;
    }

    .node-icon {
        width: 46px;
        height: 46px;
    }

    .project-node span {
        display: none;
    }

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

    .projects-section {
        padding-top: 35px;
    }
}


@media (max-width: 470px) {

    .hero-title {
        font-size: 43px;
    }

    .project-node {
        width: 100%;
    }

    .ecosystem-stage {
        padding-top: 470px;
    }

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


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}


/* =========================================================
   AURION MOTION LAYER
========================================================= */

.aurion-particles {
    position: absolute;
    z-index: -1;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.aurion-particle {
    position: absolute;
    display: block;

    border-radius: 50%;

    background: #b9eaff;

    box-shadow:
        0 0 5px rgba(139, 221, 255, 0.9),
        0 0 12px rgba(59, 172, 255, 0.55);

    animation-name: aurionParticleFloat;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

@keyframes aurionParticleFloat {
    0% {
        transform: translate3d(0, 12px, 0) scale(0.8);
        opacity: 0.08;
    }

    35% {
        opacity: 0.7;
    }

    70% {
        opacity: 0.24;
    }

    100% {
        transform: translate3d(15px, -52px, 0) scale(1.15);
        opacity: 0.04;
    }
}

.aurion-core {
    will-change:
        filter,
        box-shadow,
        margin-left,
        margin-top;
}

.core-ring {
    will-change:
        transform,
        opacity;
}

.project-node,
.romania-map {
    will-change:
        transform,
        translate;
}

.project-card::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;

    opacity: 0;

    background:
        radial-gradient(
            180px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(82, 192, 255, 0.13),
            transparent 70%
        );

    transition: opacity 180ms ease;
}

.project-card:hover::before {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .aurion-particle {
        animation: none !important;
    }
}


/* =========================================================
   AURION HERO — VISUAL ALIGNMENT PASS 01
   Aliniere la conceptul vizual aprobat
========================================================= */

@media (min-width: 1081px) {

    .hero {
        min-height: 650px;
        padding-top: 112px;
        padding-bottom: 28px;
    }

    .hero-layout {
        grid-template-columns:
            minmax(390px, 0.72fr)
            minmax(650px, 1.28fr);

        min-height: 510px;
        gap: 6px;
    }

    .hero-content {
        padding-top: 0;
    }

    .eyebrow {
        margin-bottom: 20px;
    }

    .hero-brand {
        margin-bottom: 8px;

        font-size: clamp(34px, 3vw, 52px);
        letter-spacing: 7px;
    }

    .hero-title {
        font-size: clamp(42px, 3.9vw, 65px);
        line-height: 1;
        letter-spacing: -2.5px;
    }

    .hero-description {
        max-width: 525px;
        margin-top: 18px;

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

    .hero-actions {
        margin-top: 22px;
    }

    .hero-stats {
        margin-top: 27px;
    }

    .stat strong {
        font-size: 24px;
    }

    .ecosystem-stage {
        height: 520px;
    }

    .romania-map {
        top: 45px;

        width: 535px;
        height: 405px;

        opacity: 0.72;
    }

    .aurion-core {
        top: 47%;

        width: 218px;
        height: 218px;
    }

    .core-symbol {
        font-size: 65px;
    }

    .core-content strong {
        font-size: 21px;
        letter-spacing: 6px;
    }

    .project-node {
        max-width: 195px;
    }

    .node-icon {
        width: 56px;
        height: 56px;
    }

    .project-node strong {
        font-size: 12px;
    }

    .project-node span {
        font-size: 9.5px;
    }

    .node-ai {
        top: 0;
        left: 105px;
    }

    .node-taxi {
        top: 155px;
        left: 4px;
    }

    .node-search {
        bottom: 4px;
        left: 88px;
    }

    .node-programari {
        top: 4px;
        right: 32px;
    }

    .node-localpass {
        top: 153px;
        right: -10px;
    }

    .node-home {
        top: 285px;
        right: -12px;
    }

    .node-commercial {
        right: 82px;
        bottom: 2px;
    }
}


/* lumină ambientală în spatele ecosistemului */

.ecosystem-stage::after {
    content: "";
    position: absolute;
    z-index: -1;

    top: 46%;
    left: 51%;

    width: 610px;
    height: 460px;

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse,
            rgba(14, 116, 207, 0.13) 0%,
            rgba(7, 68, 125, 0.07) 37%,
            transparent 72%
        );

    filter: blur(18px);

    transform: translate(-50%, -50%);

    pointer-events: none;
}


/* =========================================================
   AURION HERO — VISUAL ALIGNMENT PASS 02
   Compactare după comparația directă cu reperul
========================================================= */

@media (min-width: 1081px) {

    .hero {
        min-height: 525px;
        padding-top: 90px;
        padding-bottom: 8px;
    }

    .hero-layout {
        grid-template-columns:
            minmax(390px, 0.74fr)
            minmax(650px, 1.26fr);

        min-height: 425px;
        gap: 0;
    }

    .hero-content {
        transform: translateY(-3px);
    }

    .eyebrow {
        margin-bottom: 17px;
    }

    .hero-brand {
        margin-bottom: 6px;
        font-size: clamp(34px, 2.75vw, 48px);
    }

    .hero-title {
        font-size: clamp(42px, 3.55vw, 59px);
        line-height: 0.99;
    }

    .hero-description {
        max-width: 525px;
        margin-top: 15px;
        font-size: 13.5px;
    }

    .hero-actions {
        margin-top: 18px;
    }

    .button {
        min-height: 45px;
    }

    .hero-stats {
        margin-top: 22px;
    }

    .stat strong {
        font-size: 22px;
    }

    .stat span {
        margin-top: 6px;
        font-size: 10px;
    }


    /* zona grafică */

    .ecosystem-stage {
        height: 425px;
    }

    .romania-map {
        top: 34px;

        width: 490px;
        height: 370px;
    }

    .aurion-core {
        top: 49%;

        width: 200px;
        height: 200px;
    }

    .aurion-core::before {
        inset: -16px;
    }

    .aurion-core::after {
        inset: -33px;
    }

    .core-ring-outer {
        inset: -20px;
    }

    .core-symbol {
        font-size: 59px;
    }

    .core-content strong {
        font-size: 19px;
        letter-spacing: 6px;
    }

    .core-content span {
        font-size: 11px;
    }


    /* nodurile ecosistemului */

    .node-icon {
        width: 52px;
        height: 52px;
    }

    .project-node {
        max-width: 190px;
    }

    .node-ai {
        top: 0;
        left: 108px;
    }

    .node-taxi {
        top: 126px;
        left: 8px;
    }

    .node-search {
        bottom: 0;
        left: 88px;
    }

    .node-programari {
        top: 2px;
        right: 29px;
    }

    .node-localpass {
        top: 126px;
        right: -5px;
    }

    .node-home {
        top: 242px;
        right: -7px;
    }

    .node-commercial {
        right: 84px;
        bottom: 0;
    }


    /* secțiunea proiectelor urcă în primul viewport */

    .projects-section {
        padding-top: 25px;
    }

    .section-heading {
        margin-bottom: 18px;
    }

    .project-card {
        min-height: 150px;
    }
}


/* =========================================================
   AURION ECOSYSTEM — ROMANIA REAL MAP PASS 03
========================================================= */

.romania-map {
    clip-path: none;
    border: 0;

    background:
        radial-gradient(
            circle at 53% 48%,
            rgba(73, 187, 255, 0.22) 0%,
            rgba(27, 119, 192, 0.11) 30%,
            rgba(9, 53, 91, 0.11) 58%,
            rgba(2, 15, 28, 0.45) 100%
        ),
        linear-gradient(
            135deg,
            rgba(14, 48, 78, 0.42),
            rgba(5, 20, 36, 0.68)
        );

    -webkit-mask-image: url("../images/romania-map.svg");
    mask-image: url("../images/romania-map.svg");

    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;

    -webkit-mask-position: center;
    mask-position: center;

    -webkit-mask-size: contain;
    mask-size: contain;

    opacity: 0.72;

    filter:
        drop-shadow(0 0 7px rgba(78, 191, 255, 0.26))
        drop-shadow(0 0 34px rgba(27, 121, 203, 0.12));

    box-shadow: none;
}


/* punctele rețelei digitale */

.romania-map::before {
    content: "";
    position: absolute;
    inset: 0;

    opacity: 0.72;

    background-image:
        radial-gradient(
            circle,
            rgba(154, 224, 255, 0.9) 0 1px,
            transparent 1.5px
        ),
        radial-gradient(
            circle,
            rgba(52, 161, 232, 0.65) 0 1px,
            transparent 1.7px
        );

    background-size:
        28px 28px,
        47px 47px;

    background-position:
        5px 8px,
        18px 14px;

    animation: aurionMapNetwork 13s ease-in-out infinite;
}


/* fluxuri luminoase în interiorul hărții */

.romania-map::after {
    content: "";
    position: absolute;
    inset: -10%;

    opacity: 0.78;

    background:
        linear-gradient(
            22deg,
            transparent 18%,
            rgba(66, 180, 255, 0.03) 32%,
            rgba(114, 215, 255, 0.34) 33%,
            rgba(35, 139, 224, 0.08) 34%,
            transparent 36%
        ),
        linear-gradient(
            116deg,
            transparent 24%,
            rgba(46, 162, 244, 0.05) 45%,
            rgba(130, 224, 255, 0.28) 46%,
            rgba(38, 142, 225, 0.07) 47%,
            transparent 49%
        ),
        linear-gradient(
            162deg,
            transparent 28%,
            rgba(82, 193, 255, 0.03) 53%,
            rgba(130, 225, 255, 0.22) 54%,
            transparent 56%
        );

    filter: blur(0.3px);

    animation: aurionMapEnergy 9s ease-in-out infinite;
}


@keyframes aurionMapNetwork {
    0%,
    100% {
        opacity: 0.42;
        transform: scale(1);
    }

    50% {
        opacity: 0.82;
        transform: scale(1.012);
    }
}


@keyframes aurionMapEnergy {
    0%,
    100% {
        opacity: 0.46;
        transform: translate3d(-3px, 2px, 0);
    }

    50% {
        opacity: 0.9;
        transform: translate3d(4px, -2px, 0);
    }
}


/* nucleul rămâne clar deasupra hărții */

.aurion-core {
    z-index: 10;
}


/* accent luminos central între hartă și nucleu */

.ecosystem-stage::before {
    content: "";
    position: absolute;
    z-index: 1;

    top: 49%;
    left: 50%;

    width: 340px;
    height: 340px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(91, 204, 255, 0.16) 0%,
            rgba(29, 137, 220, 0.09) 35%,
            transparent 69%
        );

    filter: blur(13px);

    transform: translate(-50%, -50%);

    pointer-events: none;
}


@media (prefers-reduced-motion: reduce) {

    .romania-map::before,
    .romania-map::after {
        animation: none !important;
    }
}


/* =========================================================
   AURION ECOSYSTEM — CONNECTION LAYER PASS 04
========================================================= */

.ecosystem-connections {
    position: absolute;
    inset: 0;
    z-index: 6;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
    mix-blend-mode: screen;
}

.ecosystem-connections path {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.connection-base {
    stroke: rgba(98, 192, 255, 0.30);
    stroke-width: 1.15;
    opacity: 0.9;
}

.connection-glow {
    stroke: rgba(107, 205, 255, 0.16);
    stroke-width: 5.4;
    opacity: 0.8;
    filter: url(#aurionSoftGlow);
}

.connection-pulse {
    stroke: rgba(220, 247, 255, 0.96);
    stroke-width: 2.15;
    stroke-dasharray: 16 150;
    stroke-dashoffset: 0;
    opacity: 0.92;
    filter: url(#aurionSharpGlow);
    animation: aurionConnectionTravel 8s linear infinite;
}

.connection-pulse.ai { animation-duration: 7.2s; animation-delay: -1.3s; }
.connection-pulse.taxi { animation-duration: 8.4s; animation-delay: -2.1s; }
.connection-pulse.search { animation-duration: 7.8s; animation-delay: -3.4s; }
.connection-pulse.programari { animation-duration: 8.8s; animation-delay: -1.8s; }
.connection-pulse.localpass { animation-duration: 7.4s; animation-delay: -2.7s; }
.connection-pulse.home { animation-duration: 8.2s; animation-delay: -4.2s; }
.connection-pulse.commercial { animation-duration: 7.9s; animation-delay: -2.9s; }

@keyframes aurionConnectionTravel {
    0% {
        stroke-dashoffset: 0;
        opacity: 0.10;
    }

    12% {
        opacity: 0.98;
    }

    88% {
        opacity: 0.92;
    }

    100% {
        stroke-dashoffset: -332;
        opacity: 0.08;
    }
}


/* vechile linii drepte dispar */
.project-node::before {
    display: none !important;
}


@media (max-width: 760px) {
    .ecosystem-connections {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .connection-pulse {
        animation: none !important;
        opacity: 0.5;
    }
}


/* =========================================================
   AURION — 6 PROJECT ECOSYSTEM
========================================================= */

@media (min-width: 1321px) {
    .project-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (min-width: 1081px) {
    .node-commercial {
        right: 35px;
        bottom: 18px;
    }
}
