/* =========================================================
   ROOT
========================================================= */

:root {

    --black: #04070d;

    --dark: #07101c;

    --dark-2: #0b1625;

    --blue: #3155ff;

    --blue-2: #6480ff;

    --purple: #7b3ff2;

    --white: #ffffff;

    --light: #f5f7fa;

    --text: #111c2d;

    --muted: #718096;

    --border: rgba(20,35,60,.09);

    --radius: 28px;

}


/* =========================================================
   GLOBAL
========================================================= */

* {

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    margin: 0;

    overflow-x: hidden;

    color: var(--text);

    background: white;

    font-family: 'DM Sans', sans-serif;

}


h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: 'Manrope', sans-serif;

    letter-spacing: -.06em;

}


a {

    text-decoration: none;

}


.container {

    max-width: 1280px;

}


.section {

    padding: 135px 0;

}


.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .2em;

    text-transform: uppercase;

}


.eyebrow-line {

    width: 28px;

    height: 2px;

    background: currentColor;

}


.section-title {

    font-size: clamp(45px, 5.7vw, 78px);

    line-height: .97;

    font-weight: 800;

}


.section-text {

    max-width: 680px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.9;

}


/* =========================================================
   NAVBAR
========================================================= */

.navbar-wrapper {

    position: fixed;

    top: 0;

    left: 0;

    z-index: 9999;

    width: 100%;

    padding: 18px 0;

    transition: .4s ease;

}


.navbar-wrapper.scrolled {

    padding: 8px 0;

}


.navbar-inner {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 8px 9px 8px 18px;

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

    border-radius: 100px;

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

    backdrop-filter: blur(25px);

    box-shadow: 0 15px 60px rgba(10,30,60,.08);

}


.logo {

    display: flex;

    align-items: center;

    gap: 11px;

    color: var(--black);

    font-family: 'Manrope';

    font-size: 16px;

    font-weight: 800;

}


.logo-symbol {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 42px;

    height: 42px;

    color: white;

    border-radius: 13px;

    background: linear-gradient(

        135deg,

        var(--blue),

        var(--purple)

    );

    font-size: 22px;

}


.nav-menu {

    display: flex;

    align-items: center;

    gap: 2px;

}


.nav-menu a {

    padding: 11px 15px;

    color: #657184;

    font-size: 11px;

    font-weight: 700;

    transition: .3s ease;

}


.nav-menu a:hover {

    color: var(--blue);

}


.nav-cta {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: white !important;

    background: var(--black);

    border-radius: 100px;

}


.nav-cta:hover {

    color: white !important;

    background: var(--blue);

}


.mobile-menu {

    display: none;

    border: 0;

    background: transparent;

    font-size: 25px;

}


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

.hero {

    position: relative;

    min-height: 100vh;

    padding: 175px 0 110px;

    overflow: hidden;

    background:

        radial-gradient(

            circle at 85% 15%,

            rgba(49,85,255,.10),

            transparent 30%

        ),

        radial-gradient(

            circle at 10% 80%,

            rgba(123,63,242,.06),

            transparent 25%

        ),

        white;

}


.hero-grid {

    position: absolute;

    inset: 0;

    opacity: .7;

    background-image:

        linear-gradient(

            rgba(20,40,70,.035) 1px,

            transparent 1px

        ),

        linear-gradient(

            90deg,

            rgba(20,40,70,.035) 1px,

            transparent 1px

        );

    background-size: 60px 60px;

    mask-image:

        linear-gradient(

            to bottom,

            black,

            transparent

        );

}


.hero-content {

    position: relative;

    z-index: 2;

}


.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 9px 15px;

    color: var(--blue);

    border: 1px solid rgba(49,85,255,.12);

    border-radius: 100px;

    background: #eef1ff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .15em;

    text-transform: uppercase;

}


.hero-badge span {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: var(--blue);

    box-shadow:

        0 0 0 6px rgba(49,85,255,.08);

    animation: pulse 2s infinite;

}


@keyframes pulse {

    0% {

        box-shadow:

            0 0 0 0 rgba(49,85,255,.25);

    }

    70% {

        box-shadow:

            0 0 0 9px rgba(49,85,255,0);

    }

    100% {

        box-shadow:

            0 0 0 0 rgba(49,85,255,0);

    }

}


.hero-title {

    max-width: 900px;

    margin-top: 30px;

    font-size: clamp(55px, 7vw, 102px);

    line-height: .92;

    font-weight: 800;

}


.hero-title .blue {

    color: var(--blue);

}


.hero-title .outline {

    color: transparent;

    -webkit-text-stroke: 1.5px #182337;

}


.hero-text {

    max-width: 690px;

    margin-top: 32px;

    color: #687486;

    font-size: 18px;

    line-height: 1.85;

}


.hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 38px;

}


.btn-main {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 16px 24px;

    color: white;

    border-radius: 100px;

    background: var(--blue);

    box-shadow:

        0 18px 45px rgba(49,85,255,.25);

    font-size: 12px;

    font-weight: 800;

    transition: .3s ease;

}


.btn-main:hover {

    color: white;

    transform: translateY(-4px);

    box-shadow:

        0 25px 55px rgba(49,85,255,.35);

}


.btn-light {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 15px 24px;

    color: var(--text);

    border: 1px solid var(--border);

    border-radius: 100px;

    background: white;

    font-size: 12px;

    font-weight: 800;

    transition: .3s ease;

}


.btn-light:hover {

    color: var(--blue);

    border-color: var(--blue);

}


/* =========================================================
   HERO ROTATING SYSTEM
========================================================= */

.hero-visual {

    position: relative;

    height: 650px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.hero-glow {

    position: absolute;

    width: 360px;

    height: 360px;

    border-radius: 50%;

    background: rgba(49,85,255,.16);

    filter: blur(90px);

}


.orbit {

    position: absolute;

    top: 50%;

    left: 50%;

    border: 1px solid rgba(49,85,255,.14);

    border-radius: 50%;

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

}


.orbit-1 {

    width: 280px;

    height: 280px;

    animation:

        spin 18s linear infinite;

}


.orbit-2 {

    width: 410px;

    height: 410px;

    border-style: dashed;

    animation:

        spin-reverse 28s linear infinite;

}


.orbit-3 {

    width: 550px;

    height: 550px;

    animation:

        spin 40s linear infinite;

}


.orbit-4 {

    width: 640px;

    height: 640px;

    border-color: rgba(49,85,255,.06);

    animation:

        spin-reverse 55s linear infinite;

}


@keyframes spin {

    from {

        transform:

            translate(-50%,-50%)

            rotate(0deg);

    }

    to {

        transform:

            translate(-50%,-50%)

            rotate(360deg);

    }

}


@keyframes spin-reverse {

    from {

        transform:

            translate(-50%,-50%)

            rotate(360deg);

    }

    to {

        transform:

            translate(-50%,-50%)

            rotate(0deg);

    }

}


.hero-core {

    position: relative;

    z-index: 5;

    width: 210px;

    height: 210px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    text-align: center;

    border-radius: 50%;

    background:

        radial-gradient(

            circle at 35% 25%,

            #7790ff,

            var(--blue) 55%,

            #1b35c2

        );

    box-shadow:

        0 45px 110px rgba(49,85,255,.4);

    animation:

        floating 5s ease-in-out infinite;

}


@keyframes floating {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-14px);

    }

}


.hero-core-inner {

    width: 160px;

    height: 160px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

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

    border-radius: 50%;

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

}


.hero-core i {

    font-size: 43px;

}


.hero-core strong {

    margin-top: 8px;

    font-size: 14px;

}


.hero-core small {

    margin-top: 3px;

    color: rgba(255,255,255,.65);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .15em;

}


.orbit-label {

    position: absolute;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 11px 14px;

    color: #273349;

    white-space: nowrap;

    border: 1px solid rgba(20,35,60,.08);

    border-radius: 100px;

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

    box-shadow:

        0 20px 50px rgba(15,30,55,.1);

    font-size: 9px;

    font-weight: 800;

    animation:

        label-float 5s ease-in-out infinite;

}


.orbit-label i {

    color: var(--blue);

    font-size: 18px;

}


.label-1 {

    top: 7%;

    right: 3%;

}


.label-2 {

    top: 40%;

    left: -4%;

    animation-delay: 1s;

}


.label-3 {

    bottom: 14%;

    left: 4%;

    animation-delay: 2s;

}


.label-4 {

    bottom: 5%;

    right: 4%;

    animation-delay: 3s;

}


@keyframes label-float {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-11px);

    }

}


/* =========================================================
   MOVING MESSAGE BAR
========================================================= */

.message-bar {

    overflow: hidden;

    padding: 25px 0;

    color: white;

    background: var(--black);

}


.message-track {

    display: flex;

    width: max-content;

    gap: 60px;

    animation:

        marquee 25s linear infinite;

}


.message-item {

    display: flex;

    align-items: center;

    gap: 15px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .15em;

    text-transform: uppercase;

}


.message-item i {

    color: #6f87ff;

    font-size: 18px;

}


@keyframes marquee {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(-50%);

    }

}


/* =========================================================
   PHILOSOPHY SECTION
========================================================= */

.philosophy {

    background: white;

}


.philosophy-box {

    position: relative;

    padding: 90px;

    overflow: hidden;

    border-radius: 38px;

    background: var(--light);

}


.philosophy-box::after {

    content: "";

    position: absolute;

    width: 400px;

    height: 400px;

    right: -160px;

    top: -160px;

    border: 1px solid rgba(49,85,255,.12);

    border-radius: 50%;

    animation:

        spin 25s linear infinite;

}


.philosophy-title {

    max-width: 1000px;

    font-size: clamp(45px, 5.7vw, 75px);

    line-height: .98;

    font-weight: 800;

}


.philosophy-title span {

    color: var(--blue);

}


.philosophy-text {

    max-width: 750px;

    margin-top: 30px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.9;

}


/* =========================================================
   SERVICES
========================================================= */

.services {

    background: var(--light);

}


.service-card {

    position: relative;

    height: 100%;

    padding: 42px;

    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: 27px;

    background: white;

    transition: .45s ease;

}


.service-card:hover {

    transform: translateY(-10px);

    box-shadow:

        0 35px 90px rgba(15,30,55,.1);

}


.service-card::before {

    content: "";

    position: absolute;

    width: 150px;

    height: 150px;

    right: -80px;

    top: -80px;

    border: 1px solid rgba(49,85,255,.1);

    border-radius: 50%;

    transition: .5s ease;

}


.service-card:hover::before {

    transform: scale(2);

}


.service-number {

    color: #b8c0cc;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .1em;

}


.service-icon {

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-top: 35px;

    color: white;

    border-radius: 17px;

    background:

        linear-gradient(

            135deg,

            var(--blue),

            var(--purple)

        );

    font-size: 28px;

}


.service-card h3 {

    margin-top: 26px;

    font-size: 25px;

}


.service-card p {

    margin-top: 14px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.85;

}


.service-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 20px;

    color: var(--blue);

    font-size: 11px;

    font-weight: 800;

}


/* =========================================================
   DARK VALUE SECTION
========================================================= */

.dark-value {

    position: relative;

    overflow: hidden;

    color: white;

    background:

        radial-gradient(

            circle at 90% 10%,

            rgba(49,85,255,.2),

            transparent 30%

        ),

        var(--dark);

}


.dark-value::before {

    content: "";

    position: absolute;

    width: 600px;

    height: 600px;

    left: -300px;

    bottom: -300px;

    border: 1px solid rgba(255,255,255,.04);

    border-radius: 50%;

}


.dark-title {

    max-width: 900px;

    font-size: clamp(45px, 6vw, 82px);

    line-height: .96;

    font-weight: 800;

}


.dark-title span {

    color: #7f96ff;

}


.dark-text {

    max-width: 680px;

    color: #8492a5;

    font-size: 17px;

    line-height: 1.9;

}


/* =========================================================
   ROTATING VALUE WHEEL
========================================================= */

.value-wheel {

    position: relative;

    height: 600px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.value-wheel-ring {

    position: absolute;

    width: 480px;

    height: 480px;

    border: 1px dashed rgba(127,150,255,.3);

    border-radius: 50%;

    animation:

        spin 30s linear infinite;

}


.value-wheel-ring-2 {

    position: absolute;

    width: 350px;

    height: 350px;

    border: 1px solid rgba(127,150,255,.16);

    border-radius: 50%;

    animation:

        spin-reverse 20s linear infinite;

}


.value-wheel-center {

    position: relative;

    z-index: 5;

    width: 175px;

    height: 175px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    border-radius: 50%;

    background:

        linear-gradient(

            135deg,

            var(--blue),

            var(--purple)

        );

    box-shadow:

        0 30px 90px rgba(49,85,255,.35);

}


.value-wheel-center i {

    font-size: 36px;

}


.value-wheel-center strong {

    margin-top: 8px;

    font-size: 13px;

}


.value-node {

    position: absolute;

    z-index: 10;

    width: 115px;

    height: 115px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

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

    border-radius: 22px;

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

    backdrop-filter: blur(10px);

}


.value-node i {

    color: #8298ff;

    font-size: 25px;

}


.value-node span {

    margin-top: 8px;

    color: #d5dbe5;

    font-size: 9px;

    font-weight: 800;

}


.value-node-1 {

    top: 4%;

}


.value-node-2 {

    right: 1%;

}


.value-node-3 {

    bottom: 4%;

}


.value-node-4 {

    left: 1%;

}


/* =========================================================
   HARDWARE SECTION
========================================================= */

.hardware {

    background: white;

}


.hardware-title {

    max-width: 950px;

    font-size: clamp(45px, 6vw, 82px);

    line-height: .96;

    font-weight: 800;

}


.hardware-title span {

    color: var(--blue);

}


.hardware-text {

    max-width: 700px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.9;

}


/* =========================================================
   HARDWARE ROTATING SHOWCASE
========================================================= */

.hardware-visual {

    position: relative;

    height: 550px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.hardware-orbit {

    position: absolute;

    width: 400px;

    height: 400px;

    border: 1px solid rgba(49,85,255,.12);

    border-radius: 50%;

    animation:

        spin 22s linear infinite;

}


.hardware-orbit-2 {

    width: 520px;

    height: 520px;

    border-style: dashed;

    animation:

        spin-reverse 32s linear infinite;

}


.hardware-center {

    position: relative;

    z-index: 5;

    width: 180px;

    height: 180px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: white;

    border-radius: 50%;

    background: var(--black);

    box-shadow:

        0 35px 90px rgba(0,0,0,.25);

}


.hardware-center i {

    color: #7e96ff;

    font-size: 45px;

}


.hardware-center strong {

    margin-top: 8px;

    font-size: 13px;

}


.hardware-node {

    position: absolute;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 12px 15px;

    color: var(--text);

    border: 1px solid var(--border);

    border-radius: 100px;

    background: white;

    box-shadow:

        0 18px 45px rgba(15,30,55,.1);

    font-size: 9px;

    font-weight: 800;

}


.hardware-node i {

    color: var(--blue);

    font-size: 19px;

}


.hardware-node-1 {

    top: 4%;

    right: 5%;

}


.hardware-node-2 {

    left: 0;

    top: 42%;

}


.hardware-node-3 {

    bottom: 5%;

    left: 10%;

}


.hardware-node-4 {

    bottom: 12%;

    right: 0;

}


/* =========================================================
   HARDWARE CARDS
========================================================= */

.hardware-card {

    height: 100%;

    padding: 35px;

    border: 1px solid var(--border);

    border-radius: 25px;

    background: var(--light);

    transition: .4s ease;

}


.hardware-card:hover {

    transform: translateY(-8px);

    background: white;

    box-shadow:

        0 30px 70px rgba(15,30,55,.08);

}


.hardware-icon {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--blue);

    border-radius: 16px;

    background: white;

    font-size: 27px;

}


.hardware-card h4 {

    margin-top: 23px;

    font-size: 20px;

}


.hardware-card p {

    margin-top: 12px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.8;

}


/* =========================================================
   PEOPLE SECTION
========================================================= */

.people {

    position: relative;

    overflow: hidden;

    color: white;

    background: var(--black);

}


.people-title {

    max-width: 1000px;

    font-size: clamp(48px, 6vw, 85px);

    line-height: .95;

    font-weight: 800;

}


.people-title span {

    color: #7f96ff;

}


.people-text {

    max-width: 700px;

    color: #7f8da1;

    font-size: 17px;

    line-height: 1.9;

}


/* =========================================================
   PEOPLE CARDS
========================================================= */

.people-card {

    position: relative;

    height: 100%;

    padding: 40px;

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

    border-radius: 25px;

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

    transition: .4s ease;

}


.people-card:hover {

    transform: translateY(-8px);

    border-color: rgba(127,150,255,.3);

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

}


.people-card i {

    color: #7f96ff;

    font-size: 32px;

}


.people-card h4 {

    margin-top: 24px;

    font-size: 20px;

}


.people-card p {

    margin-top: 12px;

    color: #758398;

    font-size: 12px;

    line-height: 1.8;

}


/* =========================================================
   SABS
========================================================= */

.sabs {

    position: relative;

    overflow: hidden;

    background: var(--light);

}


.sabs-title {

    max-width: 950px;

    font-size: clamp(48px, 6vw, 82px);

    line-height: .96;

    font-weight: 800;

}


.sabs-title span {

    color: var(--blue);

}


.sabs-text {

    max-width: 700px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.9;

}


.sabs-visual {

    position: relative;

    height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.sabs-circle {

    position: absolute;

    width: 430px;

    height: 430px;

    border: 1px solid rgba(49,85,255,.15);

    border-radius: 50%;

    animation:

        spin 28s linear infinite;

}


.sabs-circle-2 {

    width: 330px;

    height: 330px;

    border-style: dashed;

    animation:

        spin-reverse 18s linear infinite;

}


.sabs-core {

    position: relative;

    z-index: 5;

    width: 170px;

    height: 170px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    color: white;

    text-align: center;

    border-radius: 50%;

    background:

        linear-gradient(

            135deg,

            var(--blue),

            var(--purple)

        );

    box-shadow:

        0 30px 80px rgba(49,85,255,.3);

}


.sabs-core i {

    font-size: 40px;

}


.sabs-core strong {

    margin-top: 8px;

    font-size: 14px;

}


/* =========================================================
   FINAL PHILOSOPHY
========================================================= */

.final-philosophy {

    padding: 150px 0;

    color: white;

    text-align: center;

    background:

        radial-gradient(

            circle at 50% 50%,

            rgba(49,85,255,.3),

            transparent 35%

        ),

        var(--dark);

}


.final-philosophy h2 {

    max-width: 1100px;

    margin: auto;

    font-size: clamp(50px, 6.5vw, 90px);

    line-height: .93;

    font-weight: 800;

}


.final-philosophy h2 span {

    color: #7f96ff;

}


.final-philosophy p {

    max-width: 680px;

    margin: 30px auto 0;

    color: #8492a5;

    font-size: 17px;

    line-height: 1.9;

}


/* =========================================================
   CTA
========================================================= */

.cta {

    padding: 130px 0;

    background: var(--light);

}


.cta-box {

    position: relative;

    padding: 95px 40px;

    overflow: hidden;

    text-align: center;

    border-radius: 38px;

    background: white;

    box-shadow:

        0 35px 100px rgba(15,30,55,.1);

}


.cta-box::before,
.cta-box::after {

    content: "";

    position: absolute;

    border: 1px solid rgba(49,85,255,.1);

    border-radius: 50%;

    animation:

        spin 25s linear infinite;

}


.cta-box::before {

    width: 300px;

    height: 300px;

    top: -170px;

    left: -120px;

}


.cta-box::after {

    width: 400px;

    height: 400px;

    bottom: -230px;

    right: -150px;

    animation-direction: reverse;

}


.cta-box h2 {

    position: relative;

    z-index: 2;

    max-width: 900px;

    margin: 22px auto 0;

    font-size: clamp(45px, 5.5vw, 75px);

    line-height: .98;

    font-weight: 800;

}


.cta-box p {

    position: relative;

    z-index: 2;

    max-width: 680px;

    margin: 27px auto 0;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;

}


.cta-actions {

    position: relative;

    z-index: 2;

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 35px;

}


.contact-number {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 25px;

    color: var(--blue);

    font-size: 16px;

    font-weight: 800;

}


.contact-number i {

    font-size: 21px;

}


/* =========================================================
   FOOTER
========================================================= */

footer {

    padding: 85px 0 30px;

    color: white;

    background: #03070d;

}


.footer-brand {

    display: flex;

    align-items: center;

    gap: 10px;

    color: white;

    font-family: 'Manrope';

    font-weight: 800;

}


.footer-description {

    max-width: 430px;

    margin-top: 20px;

    color: #6d7b8f;

    font-size: 13px;

    line-height: 1.85;

}


.footer-heading {

    margin-bottom: 20px;

    color: white;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .16em;

    text-transform: uppercase;

}


.footer-link {

    display: block;

    margin-bottom: 13px;

    color: #6d7b8f;

    font-size: 12px;

    transition: .3s ease;

}


.footer-link:hover {

    color: white;

    transform: translateX(4px);

}


.footer-contact {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: white;

    font-size: 13px;

    font-weight: 700;

}


.footer-contact i {

    color: #7f96ff;

    font-size: 20px;

}


.footer-bottom {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    margin-top: 60px;

    padding-top: 25px;

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

    color: #4f5d70;

    font-size: 10px;

}


/* =========================================================
   REVEAL
========================================================= */

.reveal {

    opacity: 0;

    transform: translateY(35px);

    transition:

        opacity .8s ease,

        transform .8s ease;

}


.reveal.visible {

    opacity: 1;

    transform: translateY(0);

}


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

@media(max-width:991px) {


    .nav-menu {

        display: none;

    }


    .mobile-menu {

        display: block;

    }


    .hero {

        padding-top: 145px;

    }


    .hero-visual {

        height: 500px;

        margin-top: 40px;

    }


    .value-wheel {

        height: 500px;

        margin-top: 50px;

    }


    .hardware-visual {

        height: 500px;

        margin-top: 50px;

    }


}


@media(max-width:767px) {


    .section {

        padding: 90px 0;

    }


    .hero-title {

        font-size: 55px;

    }


    .hero-visual {

        height: 420px;

    }


    .orbit-1 {

        width: 230px;

        height: 230px;

    }


    .orbit-2 {

        width: 320px;

        height: 320px;

    }


    .orbit-3 {

        width: 410px;

        height: 410px;

    }


    .orbit-4 {

        width: 470px;

        height: 470px;

    }


    .hero-core {

        width: 165px;

        height: 165px;

    }


    .hero-core-inner {

        width: 125px;

        height: 125px;

    }


    .orbit-label {

        padding: 8px 10px;

        font-size: 7px;

    }


    .philosophy-box {

        padding: 50px 28px;

    }


    .value-wheel-ring {

        width: 330px;

        height: 330px;

    }


    .value-wheel-ring-2 {

        width: 250px;

        height: 250px;

    }


    .value-wheel-center {

        width: 135px;

        height: 135px;

    }


    .value-node {

        width: 90px;

        height: 90px;

    }


    .value-node span {

        font-size: 7px;

    }


    .hardware-orbit {

        width: 320px;

        height: 320px;

    }


    .hardware-orbit-2 {

        width: 420px;

        height: 420px;

    }


    .hardware-center {

        width: 145px;

        height: 145px;

    }


    .hardware-node {

        padding: 8px 10px;

        font-size: 7px;

    }


    .sabs-visual {

        height: 400px;

    }


    .sabs-circle {

        width: 320px;

        height: 320px;

    }


    .sabs-circle-2 {

        width: 250px;

        height: 250px;

    }


    .sabs-core {

        width: 135px;

        height: 135px;

    }


    .footer-bottom {

        flex-direction: column;

    }


}
