/* =========================================================
   HASSANUL.DEV — FUTURISTIC PERSONAL SITE
   ========================================================= */


/* =========================================================
   1. ROOT / THEME VARIABLES
   ========================================================= */

:root {
    --bg: #f7f9f7;
    --bg-secondary: #ffffff;

    --surface: rgba(255, 255, 255, 0.72);
    --surface-solid: #ffffff;

    --text: #080b09;
    --text-secondary: #59615b;
    --text-muted: #858d87;

    --green: #123d2b;
    --green-light: #1c6044;
    --green-soft: rgba(18, 61, 43, 0.08);

    --border: rgba(18, 61, 43, 0.14);
    --border-strong: rgba(18, 61, 43, 0.28);

    --grid: rgba(18, 61, 43, 0.055);

    --shadow: 0 20px 60px rgba(18, 61, 43, 0.08);
    --shadow-hover: 0 30px 80px rgba(18, 61, 43, 0.14);

    --radius: 20px;

    --font-main: "Inter", sans-serif;
    --font-display: "Space Grotesk", sans-serif;

    --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   DARK THEME
   ========================================================= */

body.dark {
    --bg: #050806;
    --bg-secondary: #080d0a;

    --surface: rgba(11, 19, 14, 0.72);
    --surface-solid: #0b120e;

    --text: #f2f7f3;
    --text-secondary: #a2afa6;
    --text-muted: #657269;

    --green: #2b8b62;
    --green-light: #43b77e;
    --green-soft: rgba(43, 139, 98, 0.12);

    --border: rgba(100, 170, 130, 0.14);
    --border-strong: rgba(100, 170, 130, 0.3);

    --grid: rgba(100, 170, 130, 0.055);

    --shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
    --shadow-hover: 0 30px 100px rgba(0, 0, 0, 0.5);
}


/* =========================================================
   2. RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    background: var(--bg);
    color: var(--text);

    font-family: var(--font-main);

    overflow-x: hidden;

    transition:
        background-color 0.5s ease,
        color 0.5s ease;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

::selection {
    background: var(--green);
    color: white;
}


/* =========================================================
   3. BACKGROUND
   ========================================================= */

.background {
    position: fixed;

    inset: 0;

    z-index: -10;

    pointer-events: none;

    overflow: hidden;
}


/* =========================================================
   GRID
   ========================================================= */

.grid {
    position: absolute;

    inset: -10%;

    background-image:
        linear-gradient(
            var(--grid) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            var(--grid) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    transform:
        perspective(700px)
        rotateX(55deg)
        translateY(-8%);

    transform-origin: center top;

    opacity: 0.7;

    animation: gridMove 18s linear infinite;
}

@keyframes gridMove {

    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 70px;
    }
}


/* =========================================================
   CURSOR GLOW
   ========================================================= */

.cursor-glow {
    position: fixed;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(35, 110, 75, 0.10) 0%,
        rgba(35, 110, 75, 0.04) 35%,
        transparent 70%
    );

    transform: translate(-50%, -50%);

    pointer-events: none;

    transition:
        opacity 0.3s ease;

    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}


/* =========================================================
   PARTICLES
   ========================================================= */

.particles {
    position: absolute;

    inset: 0;
}

.particle {
    position: absolute;

    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: var(--green);

    opacity: 0.25;

    animation:
        particleFloat
        var(--duration)
        ease-in-out
        infinite alternate;
}

@keyframes particleFloat {

    from {
        transform:
            translate3d(0, 0, 0);
    }

    to {
        transform:
            translate3d(
                var(--move-x),
                var(--move-y),
                0
            );
    }
}


/* =========================================================
   4. HEADER
   ========================================================= */

.header {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 100;

    height: 86px;

    padding: 0 5vw;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background:
        color-mix(
            in srgb,
            var(--bg) 78%,
            transparent
        );

    backdrop-filter: blur(18px);

    border-bottom: 1px solid var(--border);

    transition:
        background 0.5s ease,
        border-color 0.5s ease;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo {
    font-family: var(--font-display);

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 0.12em;

    transition:
        color var(--transition);
}

.logo span {
    color: var(--green);
}

.logo:hover {
    color: var(--green);
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.navigation {
    display: flex;

    align-items: center;

    gap: 32px;
}

.nav-link {
    position: relative;

    color: var(--text-secondary);

    font-size: 12px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.12em;

    transition:
        color var(--transition);
}

.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--green);

    transition:
        width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


/* =========================================================
   THEME BUTTON
   ========================================================= */

.theme-toggle {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);

    border-radius: 50%;

    background: var(--surface);

    color: var(--text);

    cursor: pointer;

    backdrop-filter: blur(12px);

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.theme-toggle:hover {
    transform: rotate(20deg);

    border-color: var(--border-strong);

    background: var(--green-soft);
}

.theme-icon {
    font-size: 16px;

    line-height: 1;
}


/* =========================================================
   5. HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 100vh;

    max-width: 1400px;

    margin: 0 auto;

    padding:
        160px
        5vw
        100px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(400px, 0.85fr);

    align-items: center;

    gap: 40px;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-content {
    position: relative;

    z-index: 2;
}


/* =========================================================
   STATUS
   ========================================================= */

.status {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 30px;

    padding:
        9px
        14px;

    border: 1px solid var(--border);

    border-radius: 100px;

    background: var(--surface);

    backdrop-filter: blur(12px);

    color: var(--text-secondary);

    font-size: 11px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.12em;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 0 5px var(--green-soft);

    animation:
        statusPulse
        2s
        ease-in-out
        infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.45;
    }
}


/* =========================================================
   HERO TITLE
   ========================================================= */

.hero-title {
    display: flex;

    flex-direction: column;

    font-family: var(--font-display);

    font-size:
        clamp(
            56px,
            7.5vw,
            112px
        );

    font-weight: 600;

    line-height: 0.92;

    letter-spacing: -0.055em;

    margin-bottom: 32px;
}

.hero-title-accent {
    color: var(--green);
}

.period {
    color: var(--text);
}


/* =========================================================
   HERO ROLE
   ========================================================= */

.hero-role {
    color: var(--text-secondary);

    font-size:
        clamp(
            14px,
            1.3vw,
            18px
        );

    font-weight: 500;

    letter-spacing: 0.02em;

    margin-bottom: 16px;
}

.hero-role span {
    color: var(--green);

    margin:
        0 8px;
}


/* =========================================================
   HERO DESCRIPTION
   ========================================================= */

.hero-description {
    color: var(--text-muted);

    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 38px;
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.hero-actions {
    display: flex;

    align-items: center;

    gap: 12px;
}

.primary-button,
.secondary-button {
    min-height: 50px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    padding:
        0 20px;

    border-radius: 100px;

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.1em;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition);
}

.primary-button {
    background: var(--green);

    color: white;

    border: 1px solid var(--green);
}

.primary-button:hover {
    transform: translateY(-3px);

    background: var(--green-light);

    box-shadow:
        0 15px 40px
        rgba(18, 61, 43, 0.2);
}

.secondary-button {
    border: 1px solid var(--border);

    background: var(--surface);

    color: var(--text);

    backdrop-filter: blur(12px);
}

.secondary-button:hover {
    transform: translateY(-3px);

    border-color: var(--border-strong);

    background: var(--green-soft);
}

.button-arrow {
    font-size: 17px;

    transition:
        transform var(--transition);
}

.primary-button:hover .button-arrow,
.secondary-button:hover .button-arrow {
    transform: translate(3px, -3px);
}


/* =========================================================
   6. FUTURISTIC VISUAL
   ========================================================= */

.hero-visual {
    position: relative;

    min-height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.visual-container {
    position: relative;

    width: min(480px, 80vw);

    aspect-ratio: 1;

    transform-style: preserve-3d;

    transition:
        transform 0.2s ease-out;
}


/* =========================================================
   ORBITS
   ========================================================= */

.orbit {
    position: absolute;

    inset: 50%;

    border: 1px solid var(--border);

    border-radius: 50%;

    transform-style: preserve-3d;
}

.orbit-1 {
    width: 70%;
    height: 70%;

    margin:
        -35%
        0
        0
        -35%;

    animation:
        orbitRotate1
        14s
        linear
        infinite;
}

.orbit-2 {
    width: 82%;
    height: 42%;

    margin:
        -21%
        0
        0
        -41%;

    transform:
        rotateX(65deg);

    animation:
        orbitRotate2
        18s
        linear
        infinite;
}

.orbit-3 {
    width: 90%;
    height: 50%;

    margin:
        -25%
        0
        0
        -45%;

    transform:
        rotateY(65deg);

    animation:
        orbitRotate3
        22s
        linear
        infinite;
}

@keyframes orbitRotate1 {

    from {
        transform:
            rotateZ(0deg)
            rotateX(65deg);
    }

    to {
        transform:
            rotateZ(360deg)
            rotateX(65deg);
    }
}

@keyframes orbitRotate2 {

    from {
        transform:
            rotateX(65deg)
            rotateZ(0deg);
    }

    to {
        transform:
            rotateX(65deg)
            rotateZ(-360deg);
    }
}

@keyframes orbitRotate3 {

    from {
        transform:
            rotateY(65deg)
            rotateZ(0deg);
    }

    to {
        transform:
            rotateY(65deg)
            rotateZ(360deg);
    }
}


/* =========================================================
   CENTRAL CORE
   ========================================================= */

.core {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 150px;
    height: 150px;

    transform:
        translate(-50%, -50%);

    border:
        1px solid var(--border-strong);

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle,
            var(--green-soft),
            transparent 68%
        );

    box-shadow:
        0 0 80px
        var(--green-soft);

    animation:
        coreFloat
        5s
        ease-in-out
        infinite;
}

@keyframes coreFloat {

    0%,
    100% {
        transform:
            translate(-50%, -50%)
            scale(1);
    }

    50% {
        transform:
            translate(-50%, -50%)
            scale(1.04);
    }
}

.core-inner {
    width: 58px;
    height: 58px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            var(--green-light),
            var(--green)
        );

    box-shadow:
        0 0 50px
        rgba(43, 139, 98, 0.3);

    animation:
        corePulse
        3s
        ease-in-out
        infinite;
}

@keyframes corePulse {

    0%,
    100% {
        transform: scale(0.85);
    }

    50% {
        transform: scale(1);
    }
}


/* =========================================================
   CORE LINES
   ========================================================= */

.core-lines {
    position: absolute;

    inset: 20px;

    animation:
        coreLinesRotate
        8s
        linear
        infinite;
}

.core-lines span {
    position: absolute;

    left: 50%;

    top: 0;

    width: 1px;

    height: 100%;

    background: var(--border-strong);

    transform-origin: center;
}

.core-lines span:nth-child(1) {
    transform: rotate(0deg);
}

.core-lines span:nth-child(2) {
    transform: rotate(60deg);
}

.core-lines span:nth-child(3) {
    transform: rotate(120deg);
}

@keyframes coreLinesRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   FLOATING NODES
   ========================================================= */

.node {
    position: absolute;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 20px
        var(--green-soft);

    animation:
        nodeFloat
        4s
        ease-in-out
        infinite alternate;
}

.node-1 {
    top: 12%;
    left: 32%;

    --x: 15px;
    --y: -12px;
}

.node-2 {
    top: 70%;
    left: 16%;

    --x: -10px;
    --y: 15px;

    animation-delay: -1s;
}

.node-3 {
    top: 22%;
    right: 14%;

    --x: 12px;
    --y: 12px;

    animation-delay: -2s;
}

.node-4 {
    bottom: 13%;
    right: 28%;

    --x: -12px;
    --y: -15px;

    animation-delay: -3s;
}

@keyframes nodeFloat {

    from {
        transform:
            translate(0, 0);
    }

    to {
        transform:
            translate(var(--x), var(--y));
    }
}


/* =========================================================
   CONNECTION LINES
   ========================================================= */

.connection {
    position: absolute;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--border-strong),
            transparent
        );

    transform-origin: left center;

    opacity: 0.7;
}

.connection-1 {
    width: 180px;

    top: 26%;
    left: 28%;

    transform:
        rotate(28deg);
}

.connection-2 {
    width: 150px;

    top: 65%;
    left: 17%;

    transform:
        rotate(-25deg);
}

.connection-3 {
    width: 170px;

    top: 32%;
    right: 10%;

    transform:
        rotate(-38deg);
}


/* =========================================================
   7. CONNECT SECTION
   ========================================================= */

.connect-section {
    max-width: 1200px;

    margin: 0 auto;

    padding:
        120px
        5vw
        150px;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.section-heading {
    display: flex;

    align-items: flex-start;

    gap: 30px;

    margin-bottom: 60px;
}

.section-number {
    color: var(--green);

    font-family: var(--font-display);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.15em;

    padding-top: 8px;
}

.section-label {
    margin-bottom: 10px;

    color: var(--text-muted);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.16em;
}

.section-heading h2 {
    font-family: var(--font-display);

    font-size:
        clamp(
            38px,
            5vw,
            68px
        );

    font-weight: 600;

    line-height: 1;

    letter-spacing: -0.045em;
}

.section-heading h2 span {
    color: var(--green);
}


/* =========================================================
   CONTACT GRID
   ========================================================= */

.contact-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;
}


/* =========================================================
   CONTACT CARD
   ========================================================= */

.contact-card {
    position: relative;

    min-height: 190px;

    padding: 24px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    background: var(--surface);

    backdrop-filter: blur(18px);

    overflow: hidden;

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.contact-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -100px;
    bottom: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            var(--green-soft),
            transparent 70%
        );

    transition:
        transform 0.6s ease;
}

.contact-card:hover {
    transform:
        translateY(-7px);

    border-color:
        var(--border-strong);

    background:
        var(--surface-solid);

    box-shadow:
        var(--shadow-hover);
}

.contact-card:hover::before {
    transform:
        scale(2);
}


/* =========================================================
   FEATURED CARD
   ========================================================= */

.contact-card.featured {
    grid-column: span 2;

    min-height: 220px;

    background:
        linear-gradient(
            135deg,
            var(--surface),
            var(--green-soft)
        );
}


/* =========================================================
   CARD TOP
   ========================================================= */

.card-top {
    position: relative;

    z-index: 2;

    display: flex;

    justify-content: space-between;

    align-items: center;
}

.card-number {
    color: var(--text-muted);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.12em;
}

.card-arrow {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid var(--border);

    border-radius: 50%;

    color: var(--text-secondary);

    font-size: 17px;

    transition:
        transform var(--transition),
        color var(--transition),
        border-color var(--transition);
}

.contact-card:hover .card-arrow {
    transform:
        translate(3px, -3px);

    color: var(--green);

    border-color:
        var(--border-strong);
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.card-content {
    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    gap: 8px;
}

.card-label {
    color: var(--text-muted);

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.15em;
}

.card-value {
    color: var(--text);

    font-family: var(--font-display);

    font-size:
        clamp(
            15px,
            1.8vw,
            22px
        );

    font-weight: 500;

    letter-spacing: -0.02em;

    word-break: break-word;
}

.contact-card:hover .card-value {
    color: var(--green);
}


/* =========================================================
   8. FINAL CTA
   ========================================================= */

.final-cta {
    position: relative;

    max-width: 1200px;

    margin: 0 auto;

    padding:
        80px
        5vw
        170px;
}

.cta-line {
    width: 100%;

    height: 1px;

    margin-bottom: 80px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--border-strong),
            transparent
        );
}

.cta-label {
    color: var(--text-muted);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.18em;

    margin-bottom: 22px;
}

.final-cta h2 {
    font-family: var(--font-display);

    font-size:
        clamp(
            58px,
            9vw,
            130px
        );

    line-height: 0.88;

    font-weight: 600;

    letter-spacing: -0.06em;

    margin-bottom: 48px;
}

.final-cta h2 span {
    color: var(--green);
}

.cta-button {
    display: inline-flex;

    align-items: center;

    gap: 18px;

    padding:
        15px 22px;

    border:
        1px solid var(--border-strong);

    border-radius: 100px;

    color: var(--text);

    background: var(--surface);

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.12em;

    backdrop-filter: blur(12px);

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition);
}

.cta-button span {
    color: var(--green);

    font-size: 17px;

    transition:
        transform var(--transition);
}

.cta-button:hover {
    transform:
        translateY(-4px);

    background: var(--green);

    color: white;
}

.cta-button:hover span {
    color: white;

    transform:
        translate(3px, -3px);
}


/* =========================================================
   9. FOOTER
   ========================================================= */

.footer {
    max-width: 1400px;

    margin: 0 auto;

    padding:
        30px 5vw;

    border-top:
        1px solid var(--border);

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;

    color: var(--text-muted);

    font-size: 10px;

    letter-spacing: 0.04em;
}

.footer-left {
    display: flex;

    align-items: center;

    gap: 20px;
}

.footer-brand {
    color: var(--text);

    font-family: var(--font-display);

    font-weight: 700;

    letter-spacing: 0.1em;
}

.footer-brand span {
    color: var(--green);
}

.footer-tagline {
    padding-left: 20px;

    border-left:
        1px solid var(--border);
}

.footer-right {
    display: flex;

    gap: 5px;
}


/* =========================================================
   10. SCROLL REVEAL
   ========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}

.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   11. RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .hero {
        grid-template-columns: 1fr;

        padding-top: 150px;

        text-align: center;
    }

    .hero-content {
        display: flex;

        flex-direction: column;

        align-items: center;
    }

    .hero-visual {
        min-height: 420px;

        margin-top: -20px;
    }

    .hero-title {
        align-items: center;
    }

    .contact-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   12. RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .header {
        height: 72px;

        padding:
            0 20px;
    }

    .navigation {
        gap: 16px;
    }

    .nav-link {
        display: none;
    }

    .hero {
        min-height: auto;

        padding:
            130px
            20px
            80px;
    }

    .status {
        margin-bottom: 24px;

        font-size: 9px;
    }

    .hero-title {
        font-size:
            clamp(
                46px,
                14vw,
                70px
            );

        line-height: 0.95;
    }

    .hero-role {
        font-size: 13px;
    }

    .hero-description {
        font-size: 14px;

        margin-bottom: 30px;
    }

    .hero-actions {
        flex-direction: column;

        width: 100%;
    }

    .primary-button,
    .secondary-button {
        width: 100%;

        max-width: 280px;
    }

    .hero-visual {
        min-height: 330px;

        margin-top: 10px;
    }

    .visual-container {
        width: 330px;
    }

    .core {
        width: 110px;
        height: 110px;
    }

    .core-inner {
        width: 45px;
        height: 45px;
    }

    .connect-section {
        padding:
            80px
            20px
            100px;
    }

    .section-heading {
        gap: 18px;

        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 42px;
    }

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .contact-card,
    .contact-card.featured {
        grid-column: span 1;

        min-height: 170px;
    }

    .card-value {
        font-size: 16px;
    }

    .final-cta {
        padding:
            50px
            20px
            110px;
    }

    .cta-line {
        margin-bottom: 60px;
    }

    .final-cta h2 {
        font-size:
            clamp(
                58px,
                17vw,
                90px
            );
    }

    .footer {
        padding:
            25px 20px;

        flex-direction: column;

        align-items: flex-start;
    }

    .footer-left {
        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }

    .footer-tagline {
        padding-left: 0;

        border-left: none;
    }

    .footer-right {
        flex-direction: column;

        gap: 3px;
    }

}


/* =========================================================
   13. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}