/* ============================================================
   ORBI PLATFORMS
   Main Stylesheet
   ============================================================ */

:root {
    --orbi: #06392f;
    --orbi-light: #0a493d;
    --orbi-soft: #164f44;

    --black: #050807;
    --black-soft: #080d0b;
    --dark: #0b1210;

    --white: #ffffff;
    --off-white: #f1f4f1;

    --gray: #8e9b96;
    --gray-light: #c5ceca;

    --border: rgba(255, 255, 255, 0.09);
    --border-dark: rgba(6, 57, 47, 0.12);

    --container: 1240px;

    --ease: cubic-bezier(.22, 1, .36, 1);
}


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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--black);
}

body {
    font-family: "Inter", sans-serif;
    background: var(--off-white);
    color: var(--black);

    overflow-x: hidden;

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

body.menu-open {
    overflow: hidden;
}

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

button {
    font: inherit;
}

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

::selection {
    background: var(--orbi);
    color: white;
}

:focus-visible {
    outline: 2px solid #73a99d;
    outline-offset: 4px;
}


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

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

.section {
    padding: 140px 0;
}

.section-label {
    display: inline-block;

    color: #6c7975;

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

    letter-spacing: .16em;
}


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

.navbar {
    position: fixed;

    top: 18px;
    left: 50%;

    width: min(calc(100% - 40px), 1120px);
    height: 62px;

    transform: translateX(-50%);

    z-index: 1000;

    background: rgba(7, 13, 11, 0.34);

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

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.12);

    transition:
        top .45s var(--ease),
        background .45s var(--ease),
        border-color .45s var(--ease),
        box-shadow .45s var(--ease);
}

.navbar.scrolled {
    top: 12px;

    background: rgba(5, 8, 7, 0.88);

    border-color: rgba(255, 255, 255, 0.11);

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.28);
}

.nav-container {
    width: 100%;
    height: 100%;

    padding: 0 15px 0 18px;

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


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

.brand {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.brand img {
    width: 45px;
    height: auto;
}


/* ============================================================
   DESKTOP NAV
   ============================================================ */

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

    gap: 2px;

    margin-left: auto;
    margin-right: 20px;
}

.nav-link {
    position: relative;

    height: 36px;

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

    gap: 6px;

    padding: 0 11px;

    border: 0;
    background: transparent;

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

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

    cursor: pointer;

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

.nav-link:hover,
.nav-link.active {
    color: white;
}

.nav-link.active::after {
    content: "";

    position: absolute;

    left: 11px;
    right: 11px;
    bottom: 1px;

    height: 1px;

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

.chevron {
    font-size: 13px;

    opacity: .55;

    transform: translateY(-1px);
}


/* ============================================================
   LOGIN BUTTON
   ============================================================ */

.nav-actions {
    display: flex;
    align-items: center;
}

.login-link {
    height: 34px;

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

    padding: 0 15px;

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

    color: white;

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

    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .3s var(--ease);
}

.login-link:hover {
    background: white;
    border-color: white;

    color: var(--black);

    transform: translateY(-1px);
}


/* ============================================================
   PRODUCTS DROPDOWN
   ============================================================ */

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;

    top: calc(100% + 14px);
    left: 50%;

    width: 390px;

    padding: 10px;

    background: rgba(8, 15, 13, .97);

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

    box-shadow:
        0 25px 70px rgba(0, 0, 0, .38);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform:
        translate(-50%, -8px)
        scale(.98);

    transform-origin: top center;

    transition:
        opacity .25s var(--ease),
        transform .25s var(--ease),
        visibility .25s;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform:
        translate(-50%, 0)
        scale(1);
}

.dropdown-menu > a {
    display: flex;
    align-items: center;

    gap: 13px;

    padding: 11px 12px;

    border-radius: 8px;

    color: white;

    transition:
        background .2s ease,
        transform .2s var(--ease);
}

.dropdown-menu > a:hover {
    background: rgba(255, 255, 255, .055);

    transform: translateX(3px);
}

.dropdown-menu strong {
    display: block;

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

.dropdown-menu small {
    display: block;

    margin-top: 3px;

    color: #78847f;

    font-size: 11px;
}

.product-icon {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 7px;

    background: rgba(6, 57, 47, .65);

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

    color: #b7d0c9;

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


/* ============================================================
   MOBILE MENU BUTTON
   ============================================================ */

.mobile-menu-button {
    display: none;

    width: 40px;
    height: 40px;

    border: 0;
    background: transparent;

    cursor: pointer;
}

.mobile-menu-button span {
    display: block;

    width: 21px;
    height: 1px;

    margin: 5px auto;

    background: white;

    transition:
        transform .3s var(--ease);
}


/* ============================================================
   MOBILE MENU
   ============================================================ */

.mobile-menu {
    display: none;
}


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

.hero {
    position: relative;

    min-height: 100vh;

    padding:
        160px 24px
        100px;

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

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(6, 57, 47, .32) 0%,
            rgba(6, 57, 47, .10) 28%,
            transparent 55%
        ),
        var(--black);

    color: white;
}


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

.hero-grid {
    position: absolute;
    inset: 0;

    opacity: .28;

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

    background-size: 80px 80px;

    mask-image:
        radial-gradient(
            ellipse at center,
            black 0%,
            transparent 70%
        );
}

.hero-glow {
    position: absolute;

    width: 700px;
    height: 700px;

    border-radius: 50%;

    background: rgba(6, 57, 47, .18);

    filter: blur(90px);

    pointer-events: none;
}


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

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 900px;

    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 28px;

    padding: 8px 12px;

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

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

    color: #a8b5b0;

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

    letter-spacing: .03em;
}

.status-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #65b6a1;

    box-shadow:
        0 0 12px rgba(101, 182, 161, .6);
}

.hero h1 {
    font-size: clamp(48px, 7vw, 92px);

    line-height: 1.20;

    letter-spacing: -.065em;

    font-weight: 700;
}

.hero h1 span {
    display: block;

    color: transparent;

    background:
        linear-gradient(
            100deg,
            #ffffff 0%,
            #8ba9a1 50%,
            #3f786b 100%
        );

    -webkit-background-clip: text;
    background-clip: text;
}

.hero-description {
    max-width: 610px;

    margin:
        30px auto 0;

    color: #8e9b96;

    font-size: 17px;

    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    justify-content: center;

    gap: 10px;

    margin-top: 38px;
}


/* ============================================================
   BUTTONS
   ============================================================ */

.button {
    min-height: 48px;

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

    gap: 18px;

    padding: 0 20px;

    border-radius: 7px;

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

    transition:
        transform .3s var(--ease),
        background .25s ease,
        border-color .25s ease,
        color .25s ease;
}

.button span {
    font-size: 17px;

    transition:
        transform .3s var(--ease);
}

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

.button:hover span {
    transform: translateX(3px);
}

.button-primary {
    background: white;

    color: var(--black);
}

.button-primary:hover {
    background: #e9efec;
}

.button-secondary {
    background: rgba(255, 255, 255, .025);

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

    color: white;
}

.button-secondary:hover {
    background: rgba(255, 255, 255, .08);

    border-color: rgba(255, 255, 255, .28);
}


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

.hero-visual {
    position: relative;

    width: 500px;
    height: 250px;

    margin-top: 40px;
}

.orb {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 190px;
    height: 190px;

    border-radius: 50%;

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

    background:
        radial-gradient(
            circle at 35% 30%,
            rgba(255, 255, 255, .14),
            transparent 30%
        ),
        radial-gradient(
            circle,
            rgba(6, 57, 47, .7),
            rgba(6, 57, 47, .05) 65%,
            transparent 72%
        );

    box-shadow:
        0 0 80px rgba(6, 57, 47, .28),
        inset 0 0 40px rgba(255, 255, 255, .04);

    animation:
        orbFloat 7s ease-in-out infinite;
}

.orb-inner {
    position: absolute;

    inset: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(4, 12, 10, .85);

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

    box-shadow:
        inset 0 0 30px rgba(6, 57, 47, .5);
}

.orb-inner img {
    width: 58px;

    opacity: .92;
}


/* ============================================================
   FLOATING HERO CARDS
   ============================================================ */

.floating-card {
    position: absolute;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 10px 13px;

    border-radius: 8px;

    background: rgba(12, 20, 17, .75);

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

    backdrop-filter: blur(14px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .25);

    text-align: left;

    animation:
        cardFloat 6s ease-in-out infinite;
}

.floating-card strong {
    display: block;

    color: white;

    font-size: 10px;
    font-weight: 600;
}

.floating-card small {
    display: block;

    margin-top: 2px;

    color: #687772;

    font-size: 9px;
}

.mini-icon {
    width: 28px;
    height: 28px;

    display: grid;
    place-items: center;

    border-radius: 6px;

    background: rgba(6, 57, 47, .7);

    color: #b7d1c9;

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

.card-one {
    top: 42px;
    left: 15px;
}

.card-two {
    top: 20px;
    right: 10px;

    animation-delay: -2s;
}

.card-three {
    right: 40px;
    bottom: 5px;

    animation-delay: -4s;
}


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

@keyframes orbFloat {

    0%,
    100% {
        transform:
            translate(-50%, -50%)
            translateY(0);
    }

    50% {
        transform:
            translate(-50%, -50%)
            translateY(-10px);
    }
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

.reveal-delay {
    opacity: 0;

    transform: translateY(20px);

    animation:
        heroReveal 1s .35s var(--ease) forwards;
}

@keyframes heroReveal {

    to {
        opacity: 1;

        transform: translateY(0);
    }
}


/* ============================================================
   HERO SCROLL INDICATOR
   ============================================================ */

.hero-scroll {
    position: absolute;

    bottom: 28px;
    left: 50%;

    transform: translateX(-50%);

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

    gap: 9px;

    color: #56635f;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: .14em;
}

.hero-scroll span {
    width: 1px;
    height: 28px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            #65736e
        );

    animation:
        scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

    0%,
    100% {
        opacity: .3;

        transform:
            scaleY(.6);

        transform-origin: top;
    }

    50% {
        opacity: 1;

        transform:
            scaleY(1);
    }
}


/* ============================================================
   INTRO
   ============================================================ */

.intro {
    background: var(--off-white);
}

.intro-layout {
    display: grid;

    grid-template-columns: 1.25fr .75fr;

    gap: 100px;

    margin-top: 35px;
}

.intro h2 {
    max-width: 850px;

    font-size: clamp(40px, 5vw, 68px);

    line-height: 1.04;

    letter-spacing: -.055em;

    font-weight: 600;
}

.intro h2 em {
    display: block;

    color: #71807b;

    font-style: normal;
}

.intro-text {
    padding-top: 8px;
}

.intro-text p {
    color: #596560;

    font-size: 16px;

    line-height: 1.8;
}

.text-link {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin-top: 28px;

    color: var(--orbi);

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

.text-link span {
    transition:
        transform .3s var(--ease);
}

.text-link:hover span {
    transform: translateX(5px);
}


/* ============================================================
   PRODUCTS SECTION
   ============================================================ */

.products-section {
    background: #e9edea;
}

.section-heading {
    display: flex;

    justify-content: space-between;
    align-items: flex-end;

    margin-bottom: 55px;
}

.section-heading h2 {
    margin-top: 18px;

    font-size: clamp(40px, 5vw, 65px);

    line-height: 1;

    letter-spacing: -.055em;
}

.section-heading h2 span {
    color: #7b8783;
}

.section-heading > p {
    max-width: 320px;

    color: #68736f;

    font-size: 14px;

    line-height: 1.7;
}


/* ============================================================
   PRODUCT GRID
   ============================================================ */

.products-grid {
    display: grid;

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

    gap: 14px;
}


/* ============================================================
   PRODUCT CARDS
   ============================================================ */

.product-card {
    --product-image: none;

    position: relative;

    min-height: 350px;

    padding: 28px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    isolation: isolate;

    background: #0b1512;

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

    border-radius: 10px;

    color: white;

    transition:
        transform .5s var(--ease),
        border-color .35s ease;
}


/* Background image */

.product-card::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: -3;

    background-image: var(--product-image);

    background-size: cover;
    background-position: center;

    transform: scale(1.01);

    transition:
        transform .8s var(--ease);
}


/* Dark overlay */

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

    position: absolute;

    inset: 0;

    z-index: -2;

    background:
        linear-gradient(
            180deg,
            rgba(4, 10, 8, .30) 0%,
            rgba(4, 10, 8, .55) 45%,
            rgba(4, 10, 8, .94) 100%
        );

    transition:
        background .45s ease;
}


/* Hover */

.product-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(255, 255, 255, .18);
}

.product-card:hover::before {
    transform: scale(1.06);
}

.product-card:hover::after {
    background:
        linear-gradient(
            180deg,
            rgba(4, 10, 8, .22) 0%,
            rgba(4, 10, 8, .50) 45%,
            rgba(4, 10, 8, .90) 100%
        );
}


/* ============================================================
   PRODUCT CARD IMAGES
   ============================================================ */

.product-card:nth-child(1) {
    --product-image:
        url("images/products/familias.jpg");
}

.product-card:nth-child(2) {
    --product-image:
        url("images/products/docentes.jpg");
}

.product-card:nth-child(3) {
    --product-image:
        url("images/products/docs.jpg");
}

.product-card:nth-child(4) {
    --product-image:
        url("images/products/forms.jpg");
}

.product-card:nth-child(5) {
    --product-image:
        url("images/products/meet.jpg");
}

.product-card:nth-child(6) {
    --product-image:
        url("images/products/files.jpg");
}


/* ============================================================
   LARGE PRODUCT
   ============================================================ */

.product-card.product-large {
    grid-column: span 2;

    min-height: 430px;
}


/* ============================================================
   PRODUCT CARD CONTENT
   ============================================================ */

.product-card-top {
    display: flex;

    justify-content: space-between;
}

.product-number {
    color: rgba(255, 255, 255, .52);

    font-family: monospace;

    font-size: 10px;
}

.product-arrow {
    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    border-radius: 50%;

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

    color: white;

    font-size: 14px;

    transition:
        transform .3s var(--ease),
        background .3s ease;
}

.product-card:hover .product-arrow {
    transform:
        translate(3px, -3px);

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

.product-card-content {
    max-width: 500px;

    margin-top: auto;
}


/* ============================================================
   PRODUCT ICONS
   ============================================================ */

.large-product-icon,
.product-icon-large {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    margin-bottom: 22px;

    border-radius: 9px;

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

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

    color: white;

    backdrop-filter: blur(8px);

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


/* ============================================================
   PRODUCT TEXT
   ============================================================ */

.product-card h3 {
    font-size: 26px;

    letter-spacing: -.04em;

    font-weight: 600;
}

.product-card p {
    max-width: 430px;

    margin-top: 12px;

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

    font-size: 13px;

    line-height: 1.65;
}


/* ============================================================
   PRODUCT BOTTOM LINE
   ============================================================ */

.product-card-line {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #6c9e92;

    transition:
        width .6s var(--ease);
}

.product-card:hover .product-card-line {
    width: 100%;
}


/* ============================================================
   MANIFESTO
   ============================================================ */

.manifesto {
    position: relative;

    min-height: 720px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(13, 91, 75, .22),
            transparent 35%
        ),
        var(--black);

    color: white;
}

.manifesto-grid {
    position: absolute;

    inset: 0;

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

    background-size: 100px 100px;

    mask-image:
        linear-gradient(
            90deg,
            black,
            transparent 90%
        );
}

.manifesto-container {
    position: relative;

    z-index: 2;
}

.manifesto .section-label {
    color: #71817b;
}

.manifesto h2 {
    max-width: 800px;

    margin-top: 28px;

    font-size: clamp(60px, 8vw, 120px);

    line-height: .88;

    letter-spacing: -.075em;
}

.manifesto h2 span {
    color: #5d9385;
}

.manifesto p {
    max-width: 430px;

    margin-top: 35px;

    color: #7f8c87;

    font-size: 16px;

    line-height: 1.7;
}

.manifesto-button {
    margin-top: 35px;

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

    color: white;
}

.manifesto-button:hover {
    background: white;

    color: var(--black);
}


/* ============================================================
   MIGRATION
   ============================================================ */

.migration {
    background: var(--off-white);
}

.migration-box {
    position: relative;

    min-height: 600px;

    display: grid;

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

    overflow: hidden;

    border-radius: 14px;

    background: var(--orbi);

    color: white;
}

.migration-content {
    position: relative;

    z-index: 2;

    padding: 75px 60px;
}

.migration-content .section-label {
    color: #82a79d;
}

.migration-content h2 {
    max-width: 500px;

    margin-top: 25px;

    font-size: clamp(40px, 4vw, 60px);

    line-height: .98;

    letter-spacing: -.055em;
}

.migration-content h2 span {
    display: block;

    color: #719b90;
}

.migration-content p {
    max-width: 420px;

    margin-top: 25px;

    color: #8ea69f;

    font-size: 14px;

    line-height: 1.75;
}

.button-light {
    margin-top: 30px;

    background: white;

    color: var(--orbi);
}

.migration-visual {
    position: relative;

    min-height: 600px;

    background:
        radial-gradient(
            circle at center,
            rgba(255, 255, 255, .06),
            transparent 45%
        );
}

.migration-visual::before {
    content: "";

    position: absolute;

    inset: 0;

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

    background-size: 65px 65px;
}

.migration-center {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 110px;
    height: 110px;

    display: grid;
    place-items: center;

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

    border-radius: 50%;

    background:
        rgba(4, 22, 18, .85);

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

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

.migration-center img {
    width: 43px;
}

.migration-node {
    position: absolute;

    z-index: 3;

    padding: 11px 17px;

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

    border-radius: 7px;

    background:
        rgba(3, 18, 15, .8);

    color: #a8bbb5;

    font-size: 11px;
}

.node-a {
    top: 22%;
    left: 14%;
}

.node-b {
    top: 63%;
    left: 10%;
}

.node-c {
    top: 31%;
    right: 11%;
}

.connection {
    position: absolute;

    height: 1px;

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

    transform-origin: left center;
}

.connection-a {
    width: 220px;

    top: 37%;
    left: 27%;

    transform: rotate(20deg);
}

.connection-b {
    width: 250px;

    top: 63%;
    left: 28%;

    transform: rotate(-18deg);
}

.connection-c {
    width: 190px;

    top: 40%;
    right: 22%;

    transform: rotate(-20deg);
}


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

.cta {
    background: #e9edea;

    padding-top: 70px;
}

.cta-inner {
    padding:
        110px 30px;

    text-align: center;

    border-top:
        1px solid rgba(6, 57, 47, .13);
}

.cta h2 {
    margin-top: 22px;

    font-size: clamp(52px, 7vw, 92px);

    line-height: .95;

    letter-spacing: -.07em;
}

.cta h2 span {
    color: #71817b;
}

.cta p {
    max-width: 470px;

    margin:
        25px auto 0;

    color: #697570;

    font-size: 15px;

    line-height: 1.7;
}

.cta-buttons {
    display: flex;

    justify-content: center;

    gap: 10px;

    margin-top: 32px;
}

.cta .button-secondary {
    color: var(--black);

    border-color:
        rgba(6, 57, 47, .18);

    background: transparent;
}

.cta .button-secondary:hover {
    background: white;

    border-color: white;
}


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

.footer {
    padding:
        80px 0
        25px;

    background: var(--black);

    color: white;
}

.footer-top {
    display: grid;

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

    gap: 50px;

    padding-bottom: 75px;
}

.footer-brand img {
    width: 55px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    margin-top: 20px;

    color: #68736f;

    font-size: 13px;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.footer-column h4 {
    margin-bottom: 8px;

    color: white;

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

.footer-column a {
    width: fit-content;

    color: #66716d;

    font-size: 12px;

    transition:
        color .2s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    display: flex;

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

    padding-top: 22px;

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

    color: #4f5955;

    font-size: 10px;
}

.footer-legal {
    display: flex;

    gap: 20px;
}

.footer-legal a:hover {
    color: #a5b0ac;
}


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

.reveal {
    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity .8s var(--ease),
        transform .8s var(--ease);
}

.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 1000px) {

    .desktop-nav {
        gap: 0;

        margin-right: 10px;
    }

    .nav-link {
        padding: 0 8px;
    }

    .nav-link.active::after {
        left: 8px;
        right: 8px;
    }

    .intro-layout {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .section-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 25px;
    }

    .migration-box {
        grid-template-columns: 1fr;
    }

    .migration-visual {
        min-height: 430px;
    }

    .migration-content {
        padding-bottom: 30px;
    }

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


/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 760px) {

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

    .section {
        padding: 90px 0;
    }


    /* --------------------------------------------------------
       NAVBAR
       -------------------------------------------------------- */

    .navbar {
        top: 10px;

        width:
            calc(100% - 24px);

        height: 58px;

        border-radius: 10px;
    }

    .navbar.scrolled {
        top: 8px;
    }

    .nav-container {
        padding:
            0 11px
            0 15px;
    }

    .brand img {
        width: 40px;
    }

    .desktop-nav,
    .login-link {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }


    /* --------------------------------------------------------
       MOBILE MENU
       -------------------------------------------------------- */

    .mobile-menu {
        position: fixed;

        display: flex;
        flex-direction: column;

        top: 76px;
        left: 50%;

        width:
            calc(100% - 24px);

        padding: 18px;

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

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

        border-radius: 10px;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

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

        transition:
            opacity .3s var(--ease),
            transform .3s var(--ease),
            visibility .3s;
    }

    .mobile-menu.open {
        opacity: 1;

        visibility: visible;

        pointer-events: auto;

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

    .mobile-menu > a,
    .mobile-products > button {
        width: 100%;

        min-height: 48px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        padding: 0 8px;

        border: 0;

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

        background: transparent;

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

        font-size: 14px;

        text-align: left;
    }

    .mobile-product-list {
        display: none;

        padding:
            8px
            8px
            5px
            18px;
    }

    .mobile-product-list.open {
        display: block;
    }

    .mobile-product-list a {
        display: block;

        padding: 12px 0;

        color: #77847f;

        font-size: 13px;
    }

    .mobile-login {
        margin-top: 14px;

        justify-content: center !important;

        border:
            1px solid rgba(255, 255, 255, .12) !important;

        border-radius: 6px;

        color: white !important;
    }


    /* --------------------------------------------------------
       HERO
       -------------------------------------------------------- */

    .hero {
        min-height: 850px;

        padding-top: 130px;
    }

    .hero h1 {
        font-size:
            clamp(
                48px,
                14vw,
                72px
            );
    }

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

    .hero-buttons {
        flex-direction: column;

        max-width: 260px;

        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        width: 100%;

        height: 220px;

        transform: scale(.82);
    }

    .card-one {
        left: 0;
    }

    .card-two {
        right: 0;
    }

    .card-three {
        right: 10px;
    }


    /* --------------------------------------------------------
       PRODUCTS
       -------------------------------------------------------- */

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

    .product-card.product-large {
        grid-column: span 1;

        min-height: 360px;
    }

    .product-card {
        min-height: 310px;
    }


    /* --------------------------------------------------------
       MANIFESTO
       -------------------------------------------------------- */

    .manifesto {
        min-height: 100vh;
    }

    .manifesto h2 {
        font-size:
            clamp(
                56px,
                15vw,
                90px
            );
    }


    /* --------------------------------------------------------
       MIGRATION
       -------------------------------------------------------- */

    .migration-box {
        border-radius: 10px;
    }

    .migration-content {
        padding:
            50px 28px;
    }

    .migration-visual {
        min-height: 350px;
    }

    .migration-center {
        width: 90px;
        height: 90px;
    }

    .connection-a {
        width: 120px;
    }

    .connection-b {
        width: 140px;
    }

    .connection-c {
        width: 120px;
    }


    /* --------------------------------------------------------
       CTA
       -------------------------------------------------------- */

    .cta-inner {
        padding:
            75px 10px;
    }

    .cta-buttons {
        flex-direction: column;

        max-width: 260px;

        margin-left: auto;
        margin-right: auto;
    }


    /* --------------------------------------------------------
       FOOTER
       -------------------------------------------------------- */

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

        gap:
            45px 25px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-brand img {
        width: 82px;
    }

    .footer-bottom {
        align-items: flex-start;

        flex-direction: column;

        gap: 14px;
    }
}


/* ============================================================
   RESPONSIVE — SMALL PHONES
   ============================================================ */

@media (max-width: 430px) {

    .hero-visual {
        transform: scale(.72);
    }

    .hero-scroll {
        display: none;
    }

    .floating-card {
        transform: scale(.9);
    }

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

    .footer-brand {
        grid-column: span 1;
    }

    .footer-brand img {
        width: 78px;
    }
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;
    }

    .reveal {
        opacity: 1;

        transform: none;
    }

    .reveal-delay {
        opacity: 1;

        transform: none;
    }
}