:root {
    --surface: #03102e;
    --surface-soft: #061638;
    --surface-raised: #081a40;
    --surface-glass: rgba(6, 22, 57, .72);
    --text-soft: #c6cede;
    --text-dim: #8f9ab2;
    --electric: #236ff4;
    --electric-bright: #19a9f5;
    --electric-pale: #7fc8ff;
    --warm: #f2a65a;
    --section-border: rgba(106, 147, 229, .15);
    --card-border: rgba(112, 152, 232, .22);
    --card-radius: 26px;
    --section-gutter: clamp(22px, 4vw, 64px);
    --section-width: 1440px;
}

::selection {
    color: #fff;
    background: rgba(24, 121, 238, .7);
}

body {
    background:
        radial-gradient(circle at 50% 24%, rgba(15, 81, 187, .08), transparent 31%),
        var(--navy-deep);
}

main {
    position: relative;
    overflow: clip;
}

.skip-link {
    position: fixed;
    z-index: 999;
    top: 12px;
    right: 12px;
    padding: 12px 18px;
    color: #fff;
    background: #176cef;
    border-radius: 10px;
    transform: translateY(-150%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

:where(a, button, [tabindex]):focus-visible {
    outline: 3px solid rgba(66, 165, 255, .88);
    outline-offset: 4px;
}

.landing-section,
.site-footer {
    position: relative;
    isolation: isolate;
}

.landing-section {
    padding: clamp(92px, 8vw, 138px) 0;
    border-top: 1px solid rgba(97, 137, 214, .07);
}

.landing-section[id] {
    scroll-margin-top: 96px;
}

.section-shell,
.footer-social-bar,
.footer-bottom {
    width: min(calc(100% - (var(--section-gutter) * 2)), var(--section-width));
    margin-inline: auto;
}

.section-glow {
    position: absolute;
    z-index: -1;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    filter: blur(12px);
    pointer-events: none;
}

.section-glow--about {
    top: -210px;
    left: -270px;
    background: radial-gradient(circle, rgba(10, 102, 236, .16), rgba(10, 102, 236, 0) 68%);
}

.section-kicker {
    width: max-content;
    max-width: 100%;
    min-height: 38px;
    margin-bottom: 18px;
    padding: 7px 14px;
    border: 1px solid rgba(77, 133, 230, .22);
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #9bbcf5;
    background: rgba(10, 34, 79, .38);
    font-size: 13px;
    font-weight: 600;
}

.section-kicker__mark {
    position: relative;
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--electric-bright);
    box-shadow: 0 0 0 5px rgba(25, 169, 245, .09), 0 0 16px rgba(25, 169, 245, .65);
}

.section-kicker--light {
    color: #d2e3ff;
    border-color: rgba(133, 181, 255, .27);
    background: rgba(5, 20, 54, .44);
}

.section-title {
    max-width: 850px;
    margin: 0;
    color: #f7f9ff;
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 900;
    line-height: 1.48;
    letter-spacing: -1.4px;
}

.section-title span {
    color: var(--electric-bright);
}

.section-description {
    max-width: 650px;
    margin: 0;
    color: var(--text-dim);
    font-size: clamp(16px, 1.15vw, 18px);
    font-weight: 300;
    line-height: 2.05;
}

.section-heading {
    margin-bottom: clamp(45px, 5vw, 72px);
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
    align-items: end;
    gap: clamp(50px, 7vw, 110px);
}

.section-heading--split .section-description {
    margin-bottom: 9px;
}

.section-heading__side {
    display: grid;
    justify-items: start;
    gap: 16px;
}

.section-heading--center {
    max-width: 900px;
    margin-inline: auto;
    text-align: center;
}

.section-heading--center .section-kicker {
    margin-inline: auto;
}

.section-heading--center .section-title,
.section-heading--center .section-description {
    margin-inline: auto;
}

.section-heading--center .section-description {
    margin-top: 18px;
}

.phase-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #7792c5;
    font-size: 12px;
}

.phase-note::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #2b7cef;
    box-shadow: 0 0 12px rgba(43, 124, 239, .7);
}

.inline-link {
    width: max-content;
    margin-top: 33px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #b9d5ff;
    font-size: 15px;
    font-weight: 600;
    transition: color .2s ease, gap .2s ease;
}

.inline-link:hover {
    gap: 17px;
    color: #fff;
}

.inline-link svg,
.service-card__link svg,
.article-card__link svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.section-bottom-action {
    margin-top: 42px;
    display: flex;
    justify-content: center;
}

.button-compact {
    width: auto;
    min-width: 255px;
    height: 60px;
    padding-inline: 28px;
    gap: 34px;
    font-size: 16px;
}

/* About */
.about-section {
    padding-top: clamp(104px, 9vw, 155px);
    background:
        linear-gradient(180deg, rgba(1, 9, 33, .98), rgba(2, 12, 40, .96)),
        var(--navy-deep);
}

.about-section::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: .28;
    background-image: radial-gradient(rgba(72, 133, 232, .28) .7px, transparent .7px);
    background-size: 30px 30px;
    mask-image: linear-gradient(to left, #000, transparent 63%);
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(500px, .96fr);
    align-items: center;
    gap: clamp(60px, 7vw, 110px);
}

.about-copy {
    min-width: 0;
}

.about-description {
    max-width: 720px;
    margin-top: 24px;
}

.about-principles {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.about-principle {
    min-height: 110px;
    padding: 18px 16px;
    border: 1px solid rgba(108, 149, 229, .17);
    border-radius: 17px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: linear-gradient(145deg, rgba(8, 28, 67, .6), rgba(3, 15, 43, .28));
}

.about-principle__icon {
    width: 35px;
    height: 35px;
    flex: 0 0 auto;
    border: 1px solid rgba(53, 143, 247, .3);
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #42a1fc;
    background: rgba(13, 87, 187, .12);
}

.about-principle__icon svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-principle > span:last-child {
    min-width: 0;
    display: grid;
    gap: 5px;
}

.about-principle strong {
    color: #ecf2ff;
    font-size: 14px;
    font-weight: 700;
}

.about-principle small {
    color: #7f8ca8;
    font-size: 11px;
    line-height: 1.75;
}

.about-visual {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
}

.about-visual::before {
    content: "";
    position: absolute;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 105, 240, .22), rgba(22, 105, 240, .03) 45%, transparent 70%);
    filter: blur(2px);
}

.about-orbit {
    position: absolute;
    border: 1px solid rgba(64, 133, 238, .25);
    border-radius: 50%;
    box-shadow: inset 0 0 50px rgba(22, 92, 209, .04);
}

.about-orbit::before,
.about-orbit::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2e91f9;
    box-shadow: 0 0 18px rgba(46, 145, 249, .95);
}

.about-orbit--outer {
    width: 480px;
    height: 480px;
    animation: about-spin 28s linear infinite;
}

.about-orbit--outer::before {
    top: 51px;
    right: 70px;
}

.about-orbit--outer::after {
    bottom: 82px;
    left: 40px;
    background: #0bd1fc;
}

.about-orbit--inner {
    width: 340px;
    height: 340px;
    border-style: dashed;
    border-color: rgba(76, 138, 235, .18);
    animation: about-spin 22s linear infinite reverse;
}

.about-orbit--inner::before {
    right: 20px;
    bottom: 85px;
    width: 5px;
    height: 5px;
}

.about-orbit--inner::after {
    display: none;
}

@keyframes about-spin {
    to { transform: rotate(360deg); }
}

.about-logo-core {
    position: relative;
    z-index: 2;
    width: 286px;
    height: 214px;
    padding: 36px 30px 24px;
    border: 1px solid rgba(100, 160, 255, .32);
    border-radius: 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 17px;
    background:
        linear-gradient(145deg, rgba(13, 43, 98, .88), rgba(3, 16, 45, .95)),
        #06183d;
    box-shadow:
        0 35px 90px rgba(0, 0, 0, .38),
        0 0 70px rgba(20, 103, 235, .14),
        inset 0 1px rgba(255, 255, 255, .05);
    transform: perspective(800px) rotateY(-7deg) rotateX(3deg);
}

.about-logo-core__halo {
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(130deg, rgba(51, 174, 255, .24), transparent 38%, rgba(53, 99, 239, .18));
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    padding: 1px;
}

.about-logo-core img {
    display: block;
    width: 205px;
    height: auto;
}

.about-logo-core small {
    color: #8fa5ca;
    font-size: 12px;
    letter-spacing: .2px;
}

.about-node {
    position: absolute;
    z-index: 3;
    min-width: 145px;
    min-height: 62px;
    padding: 12px 15px;
    border: 1px solid rgba(91, 141, 228, .24);
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #dbe7fb;
    background: rgba(4, 19, 52, .9);
    box-shadow: 0 15px 45px rgba(0, 0, 0, .28);
    backdrop-filter: blur(14px);
}

.about-node span {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    color: #6fb9ff;
    background: rgba(25, 113, 232, .14);
    font-size: 11px;
    font-weight: 700;
}

.about-node strong {
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.about-node--one {
    top: 61px;
    right: 18px;
}

.about-node--two {
    top: 220px;
    left: 0;
}

.about-node--three {
    right: 46px;
    bottom: 52px;
}

/* Services */
.services-section {
    background:
        radial-gradient(circle at 85% 16%, rgba(10, 77, 182, .11), transparent 25%),
        linear-gradient(180deg, #020c29, #020b25);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.service-card {
    position: relative;
    min-height: 340px;
    padding: 28px 28px 25px;
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 8%, rgba(29, 119, 238, .1), transparent 32%),
        linear-gradient(145deg, rgba(7, 27, 65, .88), rgba(3, 14, 42, .9));
    box-shadow: inset 0 1px rgba(255, 255, 255, .025);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #197cec, #09baf9, transparent);
    opacity: 0;
    transform: scaleX(.45);
    transition: opacity .3s ease, transform .3s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: -85px;
    left: -75px;
    border: 1px solid rgba(69, 137, 238, .12);
    border-radius: 50%;
}

.service-card:hover {
    z-index: 2;
    border-color: rgba(79, 150, 255, .45);
    box-shadow: 0 25px 65px rgba(0, 0, 0, .23), 0 0 40px rgba(20, 102, 229, .08);
    transform: translateY(-7px);
}

.service-card:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.service-card__top {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-card__icon {
    width: 72px;
    height: 72px;
    border: 1px solid rgba(70, 139, 242, .29);
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, rgba(18, 77, 164, .24), rgba(8, 28, 68, .5));
    box-shadow: inset 0 1px rgba(255, 255, 255, .06), 0 10px 35px rgba(4, 68, 172, .11);
}

.service-card__icon img {
    width: 39px;
    height: 39px;
    object-fit: contain;
}

.service-card__number {
    color: rgba(130, 155, 204, .25);
    font-size: 33px;
    font-weight: 300;
    letter-spacing: 1px;
}

.service-card h3 {
    margin: 0 0 14px;
    color: #eef4ff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.7;
}

.service-card p {
    margin: 0 0 22px;
    color: #8e9ab3;
    font-size: 14px;
    font-weight: 300;
    line-height: 2;
}

.service-card__link {
    width: max-content;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #77aaf2;
    font-size: 13px;
    font-weight: 500;
    transition: gap .2s ease, color .2s ease;
}

.service-card__link:hover {
    gap: 15px;
    color: #ddecff;
}

/* Alpha CTA */
.alpha-cta-section {
    padding-block: clamp(62px, 6vw, 98px);
    background: #020b25;
}

.alpha-cta {
    position: relative;
    min-height: 500px;
    padding: clamp(44px, 5vw, 72px);
    border: 1px solid rgba(93, 149, 241, .29);
    border-radius: 34px;
    display: grid;
    grid-template-columns: minmax(330px, .72fr) minmax(0, 1.28fr);
    align-items: center;
    gap: clamp(45px, 6vw, 100px);
    direction: ltr;
    overflow: hidden;
    background:
        radial-gradient(circle at 17% 48%, rgba(21, 127, 244, .22), transparent 27%),
        radial-gradient(circle at 85% 18%, rgba(24, 94, 224, .16), transparent 27%),
        linear-gradient(128deg, #061943 0%, #03143a 48%, #020d2c 100%);
    box-shadow: 0 35px 100px rgba(0, 0, 0, .27), inset 0 1px rgba(255, 255, 255, .04);
}

.alpha-cta__grid {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image:
        linear-gradient(rgba(94, 149, 235, .32) 1px, transparent 1px),
        linear-gradient(90deg, rgba(94, 149, 235, .32) 1px, transparent 1px);
    background-size: 45px 45px;
    mask-image: linear-gradient(to right, #000, transparent 68%);
}

.alpha-cta__flare {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.alpha-cta__flare--one {
    width: 320px;
    height: 320px;
    left: -120px;
    bottom: -170px;
    background: rgba(12, 154, 244, .12);
    filter: blur(55px);
}

.alpha-cta__flare--two {
    width: 240px;
    height: 240px;
    top: -150px;
    right: 10%;
    background: rgba(36, 89, 236, .15);
    filter: blur(45px);
}

.alpha-mark {
    position: relative;
    z-index: 2;
    min-height: 330px;
    display: grid;
    place-items: center;
}

.alpha-mark__crop {
    position: relative;
    z-index: 3;
    width: 245px;
    height: 245px;
    border: 1px solid rgba(108, 177, 255, .37);
    border-radius: 50%;
    overflow: hidden;
    background:
        radial-gradient(circle at 44% 42%, rgba(23, 98, 229, .28), rgba(2, 14, 45, .94) 65%);
    box-shadow:
        0 0 0 14px rgba(42, 120, 232, .045),
        0 0 80px rgba(15, 127, 239, .22),
        inset 0 0 45px rgba(27, 109, 236, .1);
}

.alpha-mark__crop img {
    position: absolute;
    top: 50%;
    left: 9px;
    width: 520px;
    max-width: none;
    height: auto;
    transform: translateY(-50%);
}

.alpha-mark__ring {
    position: absolute;
    border: 1px solid rgba(62, 142, 251, .22);
    border-radius: 50%;
}

.alpha-mark__ring::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22b7fb;
    box-shadow: 0 0 16px #22b7fb;
}

.alpha-mark__ring--one {
    width: 310px;
    height: 310px;
    animation: about-spin 20s linear infinite;
}

.alpha-mark__ring--two {
    width: 365px;
    height: 365px;
    border-style: dashed;
    opacity: .52;
    animation: about-spin 35s linear infinite reverse;
}

.alpha-mark__ring--two::before {
    top: auto;
    bottom: 36px;
    left: auto;
    right: 49px;
    width: 5px;
    height: 5px;
}

.alpha-cta__content {
    position: relative;
    z-index: 3;
    direction: rtl;
}

.alpha-cta__content h2 {
    max-width: 790px;
    margin: 0;
    color: #f8faff;
    font-size: clamp(30px, 2.6vw, 42px);
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: -1.2px;
}

.alpha-cta__content > p {
    max-width: 740px;
    margin: 18px 0 0;
    color: #9facc5;
    font-size: 16px;
    font-weight: 300;
    line-height: 2;
}

.alpha-cta__steps {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #b8c8e4;
}

.alpha-cta__steps span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    white-space: nowrap;
}

.alpha-cta__steps i {
    color: #3d9ef8;
    font-style: normal;
    font-size: 10px;
}

.alpha-cta__steps b {
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, rgba(72, 130, 226, .13), rgba(72, 130, 226, .66));
}

.alpha-cta__actions,
.contact-cta__actions {
    margin-top: 36px;
    display: flex;
    gap: 15px;
}

.alpha-cta__actions .button,
.contact-cta__actions .button {
    width: auto;
    min-width: 215px;
    height: 60px;
    padding-inline: 26px;
    gap: 28px;
    font-size: 15px;
}

/* Stats */
.stats-section {
    padding-block: clamp(78px, 7vw, 112px);
    background:
        radial-gradient(circle at 50% 110%, rgba(14, 90, 207, .15), transparent 40%),
        #010a24;
}

.stats-heading {
    margin-bottom: 42px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
}

.stats-heading .section-title {
    max-width: 760px;
    font-size: clamp(30px, 2.7vw, 41px);
}

.stats-heading > p {
    max-width: 420px;
    margin: 0 0 8px;
    color: var(--text-dim);
    font-size: 14px;
    line-height: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.stat-card {
    position: relative;
    min-height: 230px;
    padding: 26px;
    border: 1px solid rgba(96, 140, 223, .18);
    border-radius: 23px;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(8, 29, 69, .75), rgba(3, 15, 42, .65));
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.stat-card::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    left: -70px;
    bottom: -75px;
    border: 1px solid rgba(53, 136, 249, .2);
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(19, 104, 228, .09);
}

.stat-card:hover {
    border-color: rgba(68, 147, 252, .38);
    background: linear-gradient(145deg, rgba(10, 39, 89, .82), rgba(3, 16, 45, .74));
    transform: translateY(-5px);
}

.stat-card__index {
    position: absolute;
    top: 21px;
    left: 22px;
    color: rgba(118, 151, 211, .28);
    font-size: 12px;
}

.stat-card__value {
    min-height: 94px;
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    direction: ltr;
    color: #f4f8ff;
    font-size: clamp(53px, 4.2vw, 72px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -3px;
}

.stat-card__value small {
    margin-left: 4px;
    color: #20aaf6;
    font-size: .48em;
    font-weight: 500;
}

.stat-card h3 {
    margin: 22px 0 0;
    color: #d5dfef;
    font-size: 16px;
    font-weight: 600;
}

.stat-card p {
    margin: 8px 0 0;
    color: #75829b;
    font-size: 12px;
}

/* Portfolio */
.portfolio-section {
    overflow: hidden;
    background:
        linear-gradient(180deg, #020b25, #020d2c 52%, #010a24);
}

.portfolio-section::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 155px;
    right: -240px;
    width: 730px;
    height: 730px;
    border: 1px solid rgba(37, 103, 213, .14);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(37, 103, 213, .025), 0 0 0 160px rgba(37, 103, 213, .02);
}

.portfolio-glow {
    position: absolute;
    z-index: -1;
    left: 8%;
    bottom: 10%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(8, 110, 223, .08);
    filter: blur(90px);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.project-card {
    grid-column: span 3;
    min-width: 0;
    border: 1px solid rgba(106, 149, 230, .2);
    border-radius: 22px;
    overflow: hidden;
    background: rgba(3, 17, 48, .92);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .2);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.project-card--wide {
    grid-column: span 6;
}

.project-card:hover {
    border-color: rgba(75, 152, 255, .48);
    box-shadow: 0 30px 75px rgba(0, 0, 0, .3), 0 0 45px rgba(16, 99, 226, .08);
    transform: translateY(-6px);
}

.project-card__media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #071431;
}

.project-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    transition: transform .55s cubic-bezier(.2, .8, .2, 1), filter .35s ease;
}

.project-card:hover .project-card__media img {
    filter: brightness(.78) saturate(1.05);
    transform: scale(1.035);
}

.project-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(1, 8, 26, .02) 30%, rgba(1, 9, 30, .78));
    pointer-events: none;
}

.project-card__category {
    position: absolute;
    right: 14px;
    bottom: 14px;
    max-width: calc(100% - 78px);
    padding: 8px 12px;
    border: 1px solid rgba(142, 179, 239, .2);
    border-radius: 100px;
    color: #dce8fa;
    background: rgba(2, 15, 45, .8);
    backdrop-filter: blur(10px);
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project-card__visit {
    position: absolute;
    left: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(109, 166, 255, .34);
    border-radius: 13px;
    display: grid;
    place-items: center;
    color: #c9e2ff;
    background: rgba(5, 29, 70, .82);
    backdrop-filter: blur(12px);
    transition: background .2s ease, transform .2s ease;
}

.project-card__visit:hover {
    background: #176cef;
    transform: translateY(-2px);
}

.project-card__visit svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.project-card__content {
    min-height: 135px;
    padding: 20px 21px 21px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
}

.project-card__content h3 {
    margin: 0;
    color: #edf3ff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.75;
}

.project-card--wide .project-card__content h3 {
    font-size: 20px;
}

.project-card__content p {
    margin: 6px 0 0;
    color: #7f8da6;
    font-size: 12px;
    line-height: 1.8;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.project-tags span {
    padding: 5px 9px;
    border: 1px solid rgba(92, 135, 214, .17);
    border-radius: 7px;
    color: #7086ad;
    font-size: 10px;
}

/* Testimonials */
.testimonials-section {
    background:
        radial-gradient(circle at 50% 25%, rgba(15, 87, 203, .13), transparent 38%),
        #010a24;
}

.testimonial-carousel {
    position: relative;
}

.testimonial-carousel__toolbar {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    direction: ltr;
}

.testimonial-carousel__controls {
    display: flex;
    gap: 9px;
}

.testimonial-carousel__button {
    width: 47px;
    height: 47px;
    padding: 0;
    border: 1px solid rgba(91, 145, 232, .28);
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #94b9ef;
    background: rgba(7, 26, 64, .72);
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.testimonial-carousel__button:hover {
    border-color: rgba(78, 151, 251, .58);
    color: #fff;
    background: #135ed4;
    transform: translateY(-2px);
}

.testimonial-carousel__button svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.testimonial-carousel__progress {
    width: 155px;
    height: 3px;
    border-radius: 100px;
    overflow: hidden;
    background: rgba(108, 147, 216, .17);
}

.testimonial-carousel__progress span {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: inherit;
    background: linear-gradient(90deg, #176bea, #1eb7f8);
    box-shadow: 0 0 15px rgba(31, 146, 247, .46);
    transform: scaleX(.25);
    transform-origin: left center;
    transition: transform .35s ease;
}

.testimonials-viewport {
    overflow-x: auto;
    direction: rtl;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.testimonials-viewport::-webkit-scrollbar {
    display: none;
}

.testimonials-track {
    min-width: 100%;
    display: flex;
    align-items: stretch;
    gap: 18px;
    direction: rtl;
}

.testimonial-card {
    position: relative;
    min-width: 0;
    min-height: 470px;
    flex: 0 0 calc((100% - 36px) / 3);
    scroll-snap-align: start;
    padding: 31px 30px 27px;
    border: 1px solid rgba(100, 143, 224, .18);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    background: linear-gradient(150deg, rgba(7, 26, 64, .84), rgba(3, 14, 42, .9));
}

.testimonial-card::before {
    content: "";
    position: absolute;
    right: -75px;
    bottom: -90px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(40, 131, 242, .13);
    border-radius: 50%;
}

.testimonial-card--featured {
    border-color: rgba(61, 141, 250, .38);
    background:
        radial-gradient(circle at 88% 90%, rgba(20, 112, 233, .15), transparent 35%),
        linear-gradient(145deg, rgba(9, 37, 85, .95), rgba(3, 16, 46, .94));
    box-shadow: 0 25px 70px rgba(0, 0, 0, .22), 0 0 45px rgba(18, 104, 233, .07);
}

.testimonial-card__quote {
    position: absolute;
    top: 18px;
    left: 24px;
    color: rgba(44, 137, 247, .16);
    font-family: Georgia, serif;
    font-size: 92px;
    line-height: 1;
}

.testimonial-card blockquote {
    position: relative;
    z-index: 2;
    margin: 22px 0 0;
    color: #c3ccdc;
    font-size: 14px;
    font-weight: 300;
    line-height: 2.08;
}

.testimonial-card footer {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-bottom: 22px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(107, 142, 207, .14);
    display: flex;
    align-items: center;
    gap: 13px;
}

.testimonial-card footer img {
    width: 53px;
    height: 53px;
    border: 2px solid rgba(57, 146, 250, .36);
    border-radius: 50%;
    object-fit: cover;
    background: #0b1c41;
}

.testimonial-card footer div {
    min-width: 0;
    display: grid;
    gap: 5px;
}

.testimonial-card cite {
    color: #edf3ff;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
}

.testimonial-card footer span {
    color: #7887a2;
    font-size: 11px;
}

.mobile-swipe-hint {
    display: none;
}

/* Team */
.team-section {
    background:
        radial-gradient(circle at 4% 30%, rgba(9, 94, 208, .1), transparent 25%),
        linear-gradient(180deg, #020b25, #020d2d);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.team-card {
    min-width: 0;
    min-height: 184px;
    padding: 12px;
    border: 1px solid rgba(101, 144, 224, .18);
    border-radius: 22px;
    display: grid;
    grid-template-columns: 154px minmax(0, 1fr);
    align-items: center;
    gap: 19px;
    background: linear-gradient(145deg, rgba(7, 26, 64, .82), rgba(3, 15, 43, .84));
    transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.team-card:hover {
    border-color: rgba(75, 151, 252, .4);
    background: linear-gradient(145deg, rgba(9, 36, 82, .9), rgba(3, 16, 46, .88));
    transform: translateY(-5px);
}

.team-card__photo {
    position: relative;
    width: 154px;
    height: 154px;
    border-radius: 17px;
    overflow: hidden;
    background: #0a1b40;
}

.team-card__photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: saturate(.82);
    transition: filter .3s ease, transform .35s ease;
}

.team-card:hover .team-card__photo img {
    filter: saturate(1);
    transform: scale(1.035);
}

.team-card__photo-shade {
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(transparent, rgba(2, 10, 31, .75));
}

.team-card__photo a {
    position: absolute;
    left: 10px;
    bottom: 10px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(134, 179, 245, .3);
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #d6e9ff;
    background: rgba(4, 20, 52, .76);
    backdrop-filter: blur(9px);
    transition: background .2s ease;
}

.team-card__photo a:hover {
    background: #176cef;
}

.team-card__photo svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.team-card__content {
    min-width: 0;
}

.team-card__content::before {
    content: "ALPHA TEAM";
    display: block;
    margin-bottom: 11px;
    color: rgba(53, 142, 245, .58);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.team-card h3 {
    margin: 0;
    color: #f0f5ff;
    font-size: 18px;
    font-weight: 700;
}

.team-card p {
    margin: 8px 0 0;
    color: #7f8ea9;
    font-size: 12px;
    line-height: 1.8;
}

/* Articles */
.articles-section {
    background:
        radial-gradient(circle at 90% 16%, rgba(10, 85, 201, .09), transparent 27%),
        #020c29;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.article-card {
    min-width: 0;
    border: 1px solid rgba(99, 143, 225, .19);
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(150deg, rgba(7, 27, 65, .88), rgba(3, 15, 43, .92));
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.article-card:hover {
    border-color: rgba(78, 151, 251, .39);
    box-shadow: 0 25px 70px rgba(0, 0, 0, .25);
    transform: translateY(-6px);
}

.article-card__media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #071634;
}

.article-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(2, 10, 31, .05), rgba(2, 11, 34, .63)),
        linear-gradient(125deg, rgba(13, 97, 217, .18), transparent 45%);
}

.article-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: saturate(.65) brightness(.72) hue-rotate(4deg);
    transition: transform .5s ease, filter .3s ease;
}

.article-card:hover .article-card__media img {
    filter: saturate(.9) brightness(.78);
    transform: scale(1.04);
}

.article-card__number {
    position: absolute;
    z-index: 2;
    top: 16px;
    left: 17px;
    color: rgba(255, 255, 255, .54);
    font-size: 12px;
    letter-spacing: 1px;
}

.article-card__category {
    position: absolute;
    z-index: 2;
    right: 15px;
    bottom: 14px;
    padding: 7px 11px;
    border: 1px solid rgba(151, 188, 245, .21);
    border-radius: 100px;
    color: #dce9fb;
    background: rgba(4, 21, 54, .77);
    backdrop-filter: blur(9px);
    font-size: 11px;
}

.article-card__content {
    padding: 23px 23px 25px;
}

.article-card__meta {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #667693;
    font-size: 10px;
}

.article-card__meta i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #267de9;
}

.article-card h3 {
    min-height: 63px;
    margin: 16px 0 10px;
    color: #edf3ff;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.75;
}

.article-card p {
    min-height: 76px;
    margin: 0;
    color: #8390a9;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.95;
}

.article-card__link {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(101, 139, 208, .13);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #6e96ce;
    font-size: 12px;
}

/* Contact CTA */
.contact-cta-section {
    padding-top: clamp(75px, 7vw, 112px);
    padding-bottom: clamp(86px, 8vw, 125px);
    background:
        radial-gradient(circle at 50% 0, rgba(9, 93, 213, .13), transparent 32%),
        #010921;
}

.contact-cta {
    position: relative;
    min-height: 570px;
    padding: clamp(45px, 5vw, 75px);
    border: 1px solid rgba(91, 155, 250, .34);
    border-radius: 36px;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
    align-items: center;
    gap: clamp(55px, 7vw, 110px);
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 115%, rgba(13, 160, 246, .23), transparent 37%),
        radial-gradient(circle at 82% 6%, rgba(30, 93, 235, .2), transparent 30%),
        linear-gradient(130deg, #071c4a, #04163d 47%, #020d2d);
    box-shadow: 0 42px 110px rgba(0, 0, 0, .3), inset 0 1px rgba(255, 255, 255, .05);
}

.contact-cta__noise {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image: radial-gradient(rgba(153, 194, 255, .55) .65px, transparent .65px);
    background-size: 25px 25px;
    mask-image: linear-gradient(120deg, #000, transparent 70%);
}

.contact-cta__orbit {
    position: absolute;
    border: 1px solid rgba(75, 148, 247, .2);
    border-radius: 50%;
    pointer-events: none;
}

.contact-cta__orbit--one {
    width: 540px;
    height: 540px;
    left: -260px;
    bottom: -320px;
}

.contact-cta__orbit--two {
    width: 420px;
    height: 420px;
    right: -240px;
    top: -220px;
}

.contact-cta__content {
    position: relative;
    z-index: 2;
}

.contact-cta__content h2 {
    max-width: 780px;
    margin: 0;
    color: #f9fbff;
    font-size: clamp(30px, 2.7vw, 42px);
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: -1.2px;
}

.contact-cta__content > p {
    max-width: 735px;
    margin: 20px 0 0;
    color: #a4b0c7;
    font-size: 16px;
    font-weight: 300;
    line-height: 2.05;
}

.contact-cta__promise {
    margin-top: 26px;
    display: flex;
    align-items: center;
    gap: 11px;
}

.contact-cta__promise > span {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(71, 165, 251, .33);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #37b7f9;
    background: rgba(19, 109, 218, .14);
}

.contact-cta__promise svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-cta__promise p {
    margin: 0;
    display: grid;
    gap: 3px;
}

.contact-cta__promise strong {
    color: #cfddf2;
    font-size: 12px;
}

.contact-cta__promise small {
    color: #71809d;
    font-size: 10px;
}

.contact-card {
    position: relative;
    z-index: 2;
    min-height: 370px;
    padding: 35px;
    border: 1px solid rgba(119, 170, 247, .27);
    border-radius: 27px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(150deg, rgba(7, 28, 70, .8), rgba(3, 15, 44, .92));
    box-shadow: 0 30px 80px rgba(0, 0, 0, .27), inset 0 1px rgba(255, 255, 255, .04);
    backdrop-filter: blur(16px);
}

.contact-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    left: -100px;
    bottom: -120px;
    border: 1px solid rgba(47, 137, 244, .18);
    border-radius: 50%;
    box-shadow: 0 0 45px rgba(18, 113, 234, .1);
}

.contact-card__logo {
    width: 182px;
    margin-bottom: 34px;
}

.contact-card__logo img {
    display: block;
    width: 100%;
    height: auto;
}

.contact-card__label {
    margin-bottom: 14px;
    color: #7185a8;
    font-size: 11px;
}

.contact-card > a {
    width: max-content;
    margin-bottom: 10px;
    color: #d8e5f8;
    font-size: 16px;
    transition: color .2s ease;
}

.contact-card > a:hover {
    color: #56b7ff;
}

.contact-card__status {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(105, 144, 214, .15);
    display: flex;
    align-items: center;
    gap: 9px;
    color: #8191ad;
    font-size: 11px;
}

.contact-card__status i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #24ce87;
    box-shadow: 0 0 15px rgba(36, 206, 135, .72);
}

/* Footer */
.site-footer {
    padding: 0;
    border-top: 1px solid rgba(99, 140, 215, .13);
    background:
        radial-gradient(circle at 50% 0, rgba(11, 82, 188, .11), transparent 37%),
        #01071b;
}

.footer-social-bar {
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-socials {
    margin: 0;
    display: flex;
    gap: 9px;
}

.footer-socials a {
    width: 39px;
    height: 39px;
    border: 1px solid rgba(92, 134, 211, .23);
    border-radius: 11px;
    display: grid;
    place-items: center;
    color: #8094b8;
    background: rgba(6, 23, 56, .47);
    transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.footer-socials a:hover {
    color: #fff;
    border-color: rgba(73, 147, 250, .52);
    background: #135ed4;
    transform: translateY(-3px);
}

.footer-socials svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-bottom {
    min-height: 68px;
    border-top: 1px solid rgba(94, 131, 199, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #536079;
    font-size: 11px;
}

.footer-bottom p {
    margin: 0;
}

.back-to-top {
    position: fixed;
    z-index: 18;
    right: max(22px, env(safe-area-inset-right));
    bottom: max(22px, env(safe-area-inset-bottom));
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(98, 156, 248, .4);
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #dcecff;
    background: rgba(4, 24, 61, .86);
    box-shadow: 0 14px 35px rgba(0, 0, 0, .24);
    backdrop-filter: blur(12px);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease, background .2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #176cef;
}

.back-to-top svg {
    width: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Reveal */
.js .reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2, .75, .25, 1);
}

.js .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.services-grid .reveal-on-scroll:nth-child(2),
.portfolio-grid .reveal-on-scroll:nth-child(2),
.team-grid .reveal-on-scroll:nth-child(2),
.articles-grid .reveal-on-scroll:nth-child(2) {
    transition-delay: .08s;
}

.services-grid .reveal-on-scroll:nth-child(3),
.portfolio-grid .reveal-on-scroll:nth-child(3),
.team-grid .reveal-on-scroll:nth-child(3),
.articles-grid .reveal-on-scroll:nth-child(3) {
    transition-delay: .16s;
}

.services-grid .reveal-on-scroll:nth-child(5),
.portfolio-grid .reveal-on-scroll:nth-child(5),
.team-grid .reveal-on-scroll:nth-child(5) {
    transition-delay: .08s;
}

.services-grid .reveal-on-scroll:nth-child(6),
.portfolio-grid .reveal-on-scroll:nth-child(6),
.team-grid .reveal-on-scroll:nth-child(6) {
    transition-delay: .16s;
}

@media (max-width: 1280px) {
    :root {
        --section-gutter: 34px;
    }

    .about-layout {
        grid-template-columns: minmax(0, 1fr) minmax(440px, .9fr);
        gap: 50px;
    }

    .about-principles {
        grid-template-columns: 1fr;
    }

    .about-principle {
        min-height: 78px;
        align-items: center;
    }

    .about-visual {
        transform: scale(.9);
    }

    .service-card {
        padding: 25px;
    }

    .alpha-cta {
        grid-template-columns: minmax(290px, .65fr) minmax(0, 1.35fr);
        gap: 42px;
    }

    .alpha-mark {
        transform: scale(.88);
    }

    .team-card {
        grid-template-columns: 130px minmax(0, 1fr);
    }

    .team-card__photo {
        width: 130px;
        height: 145px;
    }
}

@media (max-width: 1040px) {
    .section-heading--split {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .section-heading--split .section-description {
        max-width: 780px;
    }

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

    .about-copy {
        max-width: 850px;
    }

    .about-principles {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .about-visual {
        width: min(100%, 650px);
        margin-inline: auto;
        transform: none;
    }

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

    .alpha-cta {
        grid-template-columns: 1fr;
        direction: rtl;
    }

    .alpha-mark {
        min-height: 315px;
        order: 2;
    }

    .alpha-cta__content {
        order: 1;
    }

    .stats-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

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

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

    .project-card,
    .project-card--wide {
        grid-column: auto;
    }

    .project-card__content,
    .project-card--wide .project-card__content {
        min-height: 128px;
    }

    .project-card__content h3,
    .project-card--wide .project-card__content h3 {
        font-size: 17px;
    }

    .testimonial-card {
        flex-basis: calc((100% - 18px) / 2);
    }

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

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

    .article-card:last-child {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: minmax(280px, .8fr) 1.2fr;
    }

    .article-card:last-child .article-card__media {
        height: 100%;
        aspect-ratio: auto;
    }

    .contact-cta {
        grid-template-columns: 1fr;
    }

    .contact-card {
        min-height: 250px;
    }

}

@media (max-width: 720px) {
    :root {
        --section-gutter: 18px;
        --card-radius: 20px;
    }

    .landing-section {
        padding-block: 78px;
    }

    .landing-section[id] {
        scroll-margin-top: 86px;
    }

    .section-kicker {
        min-height: 34px;
        margin-bottom: 14px;
        padding: 6px 12px;
        font-size: 11px;
    }

    .section-title {
        font-size: clamp(25px, 6.8vw, 33px);
        line-height: 1.52;
        letter-spacing: -.7px;
    }

    .stats-heading .section-title {
        font-size: clamp(24px, 6.4vw, 31px);
    }

    .section-description {
        font-size: 14px;
        line-height: 2;
    }

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

    .section-heading--split {
        gap: 19px;
    }

    .about-section {
        padding-top: 84px;
    }

    .about-description {
        margin-top: 17px;
    }

    .about-principles {
        grid-template-columns: 1fr;
        margin-top: 27px;
    }

    .about-principle {
        min-height: 76px;
    }

    .inline-link {
        margin-top: 26px;
    }

    .about-visual {
        min-height: 450px;
        margin-top: 16px;
        transform: scale(.84);
        transform-origin: center;
    }

    .about-node--one {
        right: -12px;
    }

    .about-node--two {
        left: -30px;
    }

    .about-node--three {
        right: 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .service-card {
        min-height: 295px;
        padding: 23px;
    }

    .service-card__top {
        margin-bottom: 22px;
    }

    .service-card__icon {
        width: 62px;
        height: 62px;
        border-radius: 17px;
    }

    .service-card__icon img {
        width: 34px;
        height: 34px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .alpha-cta-section {
        padding-block: 55px;
    }

    .alpha-cta {
        min-height: 0;
        padding: 32px 22px;
        border-radius: 26px;
        gap: 28px;
    }

    .alpha-cta__content h2 {
        font-size: 26px;
        line-height: 1.56;
        letter-spacing: -.7px;
    }

    .alpha-cta__content > p {
        font-size: 14px;
    }

    .alpha-cta__steps {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .alpha-cta__steps span {
        min-height: 41px;
        padding: 0 11px;
        border: 1px solid rgba(88, 139, 225, .18);
        border-radius: 10px;
        background: rgba(4, 18, 51, .35);
    }

    .alpha-cta__steps b {
        display: none;
    }

    .alpha-cta__actions,
    .contact-cta__actions {
        flex-direction: column;
        gap: 11px;
    }

    .alpha-cta__actions .button,
    .contact-cta__actions .button {
        width: 100%;
        min-width: 0;
    }

    .alpha-mark {
        min-height: 270px;
        transform: scale(.77);
        margin-block: -30px;
    }

    .stats-section {
        padding-block: 72px;
    }

    .stats-heading {
        margin-bottom: 30px;
    }

    .stats-grid {
        gap: 11px;
    }

    .stat-card {
        min-height: 190px;
        padding: 20px 17px;
        border-radius: 18px;
    }

    .stat-card__index {
        top: 16px;
        left: 16px;
    }

    .stat-card__value {
        min-height: 75px;
        font-size: clamp(43px, 13vw, 58px);
    }

    .stat-card h3 {
        margin-top: 18px;
        font-size: 13px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .project-card__content {
        min-height: 0;
    }

    .project-card__content h3,
    .project-card--wide .project-card__content h3 {
        font-size: 16px;
    }

    .button-compact {
        width: 100%;
    }

    .testimonial-carousel__toolbar {
        margin-bottom: 16px;
    }

    .testimonial-carousel__button {
        width: 43px;
        height: 43px;
        border-radius: 13px;
    }

    .testimonial-carousel__progress {
        width: 112px;
    }

    .testimonials-viewport {
        width: calc(100% + 18px);
        margin-left: -18px;
        padding-left: 18px;
    }

    .testimonials-track {
        gap: 12px;
    }

    .testimonial-card {
        min-width: 0;
        min-height: 390px;
        flex-basis: min(86vw, 390px);
        padding: 26px 23px 23px;
    }

    .testimonial-card blockquote {
        font-size: 13.5px;
        line-height: 2;
    }

    .mobile-swipe-hint {
        margin: 16px 0 0;
        display: block;
        color: #5e6d89;
        font-size: 10px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .team-card {
        min-height: 138px;
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 15px;
        border-radius: 18px;
    }

    .team-card__photo {
        width: 112px;
        height: 112px;
        border-radius: 14px;
    }

    .team-card h3 {
        font-size: 16px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .article-card:last-child {
        grid-column: auto;
        display: block;
    }

    .article-card:last-child .article-card__media {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .article-card h3,
    .article-card p {
        min-height: 0;
    }

    .contact-cta-section {
        padding-block: 64px 75px;
    }

    .contact-cta {
        min-height: 0;
        padding: 36px 22px 22px;
        border-radius: 27px;
        gap: 38px;
    }

    .contact-cta__content h2 {
        font-size: 27px;
        line-height: 1.56;
        letter-spacing: -.8px;
    }

    .contact-cta__content > p {
        font-size: 14px;
    }

    .contact-card {
        min-height: 260px;
        padding: 28px 24px;
        border-radius: 22px;
    }

    .contact-card__logo {
        width: 155px;
        margin-bottom: 26px;
    }

    .site-footer {
        padding-top: 0;
    }

    .footer-social-bar {
        min-height: 96px;
    }

    .footer-bottom {
        min-height: 70px;
        padding-block: 18px;
        text-align: center;
    }

    .back-to-top {
        right: max(15px, env(safe-area-inset-right));
        bottom: max(15px, env(safe-area-inset-bottom));
        width: 43px;
        height: 43px;
    }
}

@media (max-width: 390px) {
    .about-visual {
        margin-inline: -30px;
        transform: scale(.72);
    }

    .stat-card {
        padding-inline: 14px;
    }

    .stat-card__value {
        font-size: 43px;
    }

}

@media (hover: none) {
    .service-card:hover,
    .project-card:hover,
    .team-card:hover,
    .article-card:hover,
    .stat-card:hover {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-orbit,
    .alpha-mark__ring {
        animation: none !important;
    }

    .js .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }

    .testimonial-carousel__progress span {
        transition: none;
    }
}

@media (display-mode: standalone) {
    .site-header {
        padding-top: env(safe-area-inset-top);
        height: calc(116px + env(safe-area-inset-top));
    }

    .site-footer {
        padding-bottom: env(safe-area-inset-bottom);
    }
}
