/* =========================================================
   RETROLOOP — KARTALOVIC LABS
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;

    background:
        radial-gradient(circle at 72% 42%, rgba(32, 64, 150, 0.20), transparent 28%),
        radial-gradient(circle at 84% 48%, rgba(126, 43, 255, 0.12), transparent 30%),
        #03050d;

    color: #f7f8ff;
    font-family: Arial, Helvetica, sans-serif;
}


/* =========================
   SPACE BACKGROUND
   ========================= */

.space-background {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -10;

    background-image:
        radial-gradient(circle at 12% 18%, rgba(0, 225, 255, .28) 0 1px, transparent 2px),
        radial-gradient(circle at 78% 15%, rgba(255, 70, 220, .25) 0 1px, transparent 2px),
        radial-gradient(circle at 92% 64%, rgba(100, 120, 255, .22) 0 1px, transparent 2px);

    background-size:
        170px 170px,
        230px 230px,
        310px 310px;

    opacity: .5;
}


/* =========================
   NAVBAR
   ========================= */

.navbar {
    width: min(1400px, calc(100% - 80px));
    height: 110px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
    z-index: 20;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;

    color: white;
    text-decoration: none;
}

.brand-orbit {
    width: 58px;
    height: 58px;

    border-radius: 50%;
    overflow: hidden;

    border: 1px solid rgba(70, 222, 255, .55);

    box-shadow:
        0 0 18px rgba(0, 220, 255, .25),
        0 0 30px rgba(195, 55, 255, .15);
}

.brand-orbit img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text strong {
    font-size: 22px;
    letter-spacing: 1.5px;
}

.brand-text strong span {
    background: linear-gradient(90deg, #20dfff, #8470ff, #ef38ce);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-text small {
    margin-top: 5px;
    color: #aeb6d1;
    font-size: 9px;
    letter-spacing: 4px;
    font-weight: 700;
}

.navbar nav {
    display: flex;
    align-items: center;
    gap: 48px;
}

.navbar nav a {
    color: #c6c9d8;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: color .2s ease;
}

.navbar nav a:hover {
    color: #27dfff;
}

.play-top {
    min-width: 180px;
    padding: 12px 18px;

    border: 1px solid rgba(160, 175, 220, .35);
    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    background: rgba(13, 17, 31, .55);
    backdrop-filter: blur(10px);
}

.play-top .play-icon {
    font-size: 26px;
    color: #32ddff;
}

.play-top div {
    display: flex;
    flex-direction: column;
}

.play-top small {
    color: #aeb5c9;
    font-size: 10px;
}

.play-top strong {
    font-size: 16px;
}


/* =========================
   HERO
   ========================= */

.hero {
    width: min(1400px, calc(100% - 80px));
    min-height: calc(100vh - 150px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;

    position: relative;
}

.hero-content {
    position: relative;
    z-index: 5;
}

.eyebrow {
    display: inline-block;

    padding: 10px 18px;
    margin-bottom: 30px;

    border-radius: 100px;
    border: 1px solid rgba(22, 218, 255, .35);

    background: rgba(6, 36, 48, .35);

    color: #2de5ff;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.hero h1 {
    max-width: 760px;

    font-size: clamp(62px, 6.2vw, 105px);
    line-height: .90;
    letter-spacing: -5px;
    font-weight: 900;
}

.hero h1 span {
    display: inline-block;
    margin-top: 12px;

    background: linear-gradient(
        90deg,
        #22ddff 0%,
        #4caaff 27%,
        #8b65ff 58%,
        #ed37ce 100%
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    margin-top: 32px;

    color: #b8bfd4;

    font-size: 20px;
    line-height: 1.55;
}


/* =========================
   BUTTONS
   ========================= */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-top: 32px;
}

.primary-button,
.secondary-button {
    min-height: 60px;

    border-radius: 15px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    text-decoration: none;
    font-weight: 800;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.primary-button {
    min-width: 270px;
    padding: 0 24px;

    color: #041019;

    background: linear-gradient(
        90deg,
        #22dff1,
        #5fa5ff,
        #a764ff
    );

    box-shadow: 0 12px 45px rgba(46, 164, 255, .16);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(61, 191, 255, .28);
}

.google-play-symbol {
    font-size: 23px;
}

.secondary-button {
    min-width: 190px;
    padding: 0 24px;

    color: #f4f6ff;

    border: 1px solid rgba(145, 156, 196, .25);
    background: rgba(13, 16, 29, .65);
}

.secondary-button:hover {
    transform: translateY(-3px);
    border-color: rgba(40, 220, 255, .45);
}


/* =========================
   QUICK FEATURES
   ========================= */

.quick-features {
    display: flex;
    align-items: flex-start;
    gap: 32px;

    margin-top: 45px;
}

.quick-feature {
    min-width: 90px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.feature-icon {
    width: 70px;
    height: 58px;

    margin-bottom: 12px;

    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(98, 205, 255, .35);

    background: linear-gradient(
        145deg,
        rgba(19, 29, 49, .9),
        rgba(12, 12, 27, .75)
    );

    color: #75e8ff;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;

    box-shadow: inset 0 0 25px rgba(71, 94, 255, .06);
}

.quick-feature strong {
    color: #e8ebf6;

    font-size: 11px;
    letter-spacing: 2px;
}

.quick-feature small {
    margin-top: 6px;

    color: #7e88aa;

    font-size: 8px;
    letter-spacing: 2px;
}


/* =========================================================
   HERO LOGO
   ========================================================= */

.hero-visual {
    min-height: 590px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

/*
   Glow is separate from the logo.
   This lets it breathe without changing the logo size.
*/
.logo-glow {
    position: absolute;

    width: 450px;
    height: 450px;

    left: 50%;
    top: 50%;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(35, 180, 255, .22) 0%,
        rgba(100, 62, 255, .16) 38%,
        rgba(225, 45, 224, .08) 55%,
        transparent 72%
    );

    filter: blur(20px);

    transform: translate(-50%, -50%);

    animation: glowBreath 7s ease-in-out infinite;

    pointer-events: none;
}

/*
   Main logo is deliberately smaller than before.
*/
.hero-logo {
    width: 380px;
    height: 380px;

    max-width: 65%;

    position: relative;
    z-index: 4;

    flex: 0 0 auto;

    border-radius: 50%;
    overflow: hidden;

    box-shadow:
        0 0 28px rgba(24, 211, 255, .18),
        0 0 65px rgba(118, 56, 255, .18),
        0 0 105px rgba(226, 45, 224, .10);

    animation: logoFloat 6s ease-in-out infinite;

    transition: box-shadow .4s ease;
}

.hero-logo:hover {
    box-shadow:
        0 0 38px rgba(24, 211, 255, .28),
        0 0 80px rgba(118, 56, 255, .25),
        0 0 125px rgba(226, 45, 224, .14);
}

.hero-logo img {
    display: block;

    width: 100%;
    height: 100%;

    max-width: 100%;

    object-fit: cover;

    border-radius: 50%;
}


/* =========================
   ORBITS
   ========================= */

.orbit {
    position: absolute;

    left: 50%;
    top: 50%;

    border-radius: 50%;

    pointer-events: none;

    transform-origin: center center;

    z-index: 3;
}

.orbit-one {
    width: 540px;
    height: 215px;

    border: 1px solid rgba(65, 166, 255, .24);

    animation: orbitOneSpin 22s linear infinite;
}

.orbit-two {
    width: 510px;
    height: 195px;

    border: 1px solid rgba(211, 69, 255, .16);

    animation: orbitTwoSpin 27s linear infinite;
}


/* Svetleća tačka na prvoj orbiti */

.orbit-light {
    position: absolute;

    width: 7px;
    height: 7px;

    left: 50%;
    top: -4px;

    transform: translateX(-50%);

    border-radius: 50%;

    background: #75efff;

    box-shadow:
        0 0 7px #75efff,
        0 0 15px rgba(70, 224, 255, .95),
        0 0 28px rgba(111, 87, 255, .70);
}


/* =========================
   HERO ANIMATIONS
   ========================= */

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}


@keyframes glowBreath {

    0%,
    100% {
        opacity: .60;
        transform:
            translate(-50%, -50%)
            scale(.96);
    }

    50% {
        opacity: 1;
        transform:
            translate(-50%, -50%)
            scale(1.05);
    }
}


@keyframes orbitOneSpin {

    from {
        transform:
            translate(-50%, -50%)
            rotate(-18deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(342deg);
    }
}


@keyframes orbitTwoSpin {

    from {
        transform:
            translate(-50%, -50%)
            rotate(18deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(-342deg);
    }
}


/* =========================
   SCROLL INDICATOR
   ========================= */

.scroll-indicator {
    width: 100%;

    position: absolute;
    bottom: 40px;
    left: 0;

    z-index: 10;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;

    color: #747e9f;
}

.mouse {
    width: 25px;
    height: 39px;

    border: 2px solid #8390b4;
    border-radius: 20px;

    display: flex;
    justify-content: center;
}

.mouse span {
    width: 3px;
    height: 7px;

    margin-top: 8px;

    border-radius: 10px;

    background: #31dfff;
}

.scroll-indicator small {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 3px;
}


/* =========================
   PLANET HORIZON
   ========================= */

.planet-horizon {
    width: 120%;
    height: 170px;

    margin-left: -10%;
    margin-top: -100px;

    position: relative;

    border-radius: 50% 50% 0 0 / 100% 100% 0 0;

    background: radial-gradient(
        ellipse at center top,
        rgba(41, 63, 122, .24),
        rgba(3, 5, 13, 0) 65%
    );

    border-top: 1px solid rgba(70, 124, 255, .45);

    box-shadow:
        0 -6px 30px rgba(38, 91, 255, .12),
        0 -2px 60px rgba(188, 50, 255, .10);
}


/* =========================
   FEATURES SECTION
   ========================= */

.features-section {
    min-height: 650px;

    padding: 100px 40px;

    position: relative;

    background: #03050d;
}

.section-heading {
    max-width: 800px;
    margin: 0 auto;

    text-align: center;
}

.section-heading small {
    color: #2de1ff;

    font-weight: 800;
    letter-spacing: 3px;
}

.section-heading h2 {
    margin-top: 18px;

    font-size: 50px;
    letter-spacing: -2px;
}

.section-heading p {
    max-width: 650px;

    margin: 20px auto 0;

    color: #9099b5;

    font-size: 18px;
    line-height: 1.6;
}


/* =========================
   FOOTER
   ========================= */

/* Footer styling is defined in .site-footer below. */


/* =========================
   RESPONSIVE — TABLET
   ========================= */

@media (max-width: 1050px) {

    .navbar {
        width: calc(100% - 40px);
    }

    .navbar nav {
        display: none;
    }

    .hero {
        width: calc(100% - 40px);

        grid-template-columns: 1fr;

        padding-top: 60px;

        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: clamp(58px, 12vw, 90px);
    }

    .hero-description br {
        display: none;
    }

    .quick-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-visual {
        min-height: 520px;
    }

    .hero-logo {
        width: 350px;
        height: 350px;
        max-width: 70%;
    }

    .logo-glow {
        width: 420px;
        height: 420px;
    }

    .orbit-one {
        width: 500px;
        height: 200px;
    }

    .orbit-two {
        width: 470px;
        height: 180px;
    }

    .scroll-indicator {
        display: none;
    }

    .planet-horizon {
        margin-top: 0;
    }
}


/* =========================
   RESPONSIVE — MOBILE
   ========================= */

@media (max-width: 620px) {

    .navbar {
        height: 90px;
    }

    .brand-orbit {
        width: 45px;
        height: 45px;
    }

    .brand-text strong {
        font-size: 17px;
    }

    .brand-text small {
        font-size: 7px;
        letter-spacing: 2px;
    }

    .play-top {
        min-width: 0;
        padding: 10px 13px;
    }

    .play-top .play-icon {
        display: none;
    }

    .play-top strong {
        font-size: 11px;
    }

    .play-top small {
        font-size: 8px;
    }

    .hero {
        width: calc(100% - 30px);
        padding-top: 35px;
    }

    .eyebrow {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .hero h1 {
        font-size: clamp(52px, 17vw, 75px);
        letter-spacing: -3px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        width: 100%;

        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .quick-features {
        gap: 20px;
    }

    .quick-feature {
        width: 40%;
    }

    .hero-visual {
        min-height: 410px;
    }

    .hero-logo {
        width: 280px;
        height: 280px;
        max-width: 76%;
    }

    .logo-glow {
        width: 330px;
        height: 330px;
    }

    .orbit-one {
        width: 380px;
        height: 155px;
    }

    .orbit-two {
        width: 355px;
        height: 140px;
    }

    .section-heading h2 {
        font-size: 38px;
    }
}


/* =========================
   ACCESSIBILITY
   ========================= */

@media (prefers-reduced-motion: reduce) {

    .hero-logo,
    .logo-glow,
    .orbit-one,
    .orbit-two {
        animation: none;
    }
}/* =========================================================
   FINAL HERO POLISH
   ========================================================= */

/* Cijeli logo sistem malo više */
.hero-logo {
    translate: 0 -25px;
}

.logo-glow {
    margin-top: -25px;
}

.orbit-one,
.orbit-two {
    margin-top: -25px;
}

/* Malo izraženija orbitalna tačka */
.orbit-light {
    width: 9px;
    height: 9px;
    top: -5px;

    background: #b9f8ff;

    box-shadow:
        0 0 8px #ffffff,
        0 0 15px #55eaff,
        0 0 28px rgba(64, 218, 255, .90),
        0 0 42px rgba(139, 91, 255, .55);
} /* =========================================================
   ORBIT FINAL POLISH
   ========================================================= */

/* Cyan orbita */
.orbit-one {
    border-color: rgba(58, 190, 255, .38);

    box-shadow:
        0 0 10px rgba(36, 184, 255, .06),
        inset 0 0 10px rgba(36, 184, 255, .04);
}

/* Purple orbita */
.orbit-two {
    border-color: rgba(200, 72, 255, .28);

    box-shadow:
        0 0 10px rgba(187, 62, 255, .05),
        inset 0 0 10px rgba(187, 62, 255, .03);
}

/* Svetleća tačka */
.orbit-light {
    width: 10px;
    height: 10px;
    top: -5px;

    background: #eaffff;

    box-shadow:
        0 0 5px #ffffff,
        0 0 10px #6ff4ff,
        0 0 20px rgba(62, 226, 255, .95),
        0 0 35px rgba(100, 117, 255, .70);
}
/* Features and language selection: isolated from the existing Hero styles. */
.language-switcher {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 4px;
    border: 1px solid rgba(98, 205, 255, .28);
    border-radius: 14px;
    background: rgba(13, 17, 31, .85);
    color: #657294;
}
.language-switcher button {
    min-width: 44px;
    min-height: 44px;
    padding: 8px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #b8bfd4;
    font: 700 12px Arial, Helvetica, sans-serif;
    cursor: pointer;
}
.language-switcher button[aria-pressed="true"] {
    color: #b9f8ff;
    background: linear-gradient(135deg, rgba(32, 223, 255, .16), rgba(139, 101, 255, .22));
    box-shadow: inset 0 0 0 1px rgba(98, 205, 255, .35);
}
.language-switcher button:hover { color: #fff; }
.language-switcher button:focus-visible {
    outline: 2px solid #75e8ff;
    outline-offset: 2px;
}
.features-grid {
    max-width: 1160px;
    margin: 54px auto 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.feature-card {
    padding: clamp(24px, 3vw, 40px);
    border: 1px solid rgba(98, 154, 220, .22);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(18, 32, 55, .8), rgba(15, 12, 32, .8));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
    transition: border-color .2s ease, box-shadow .2s ease;
    min-width: 0;
    overflow-wrap: anywhere;
}
.feature-card:hover {
    border-color: rgba(64, 210, 255, .5);
    box-shadow: 0 12px 36px rgba(38, 91, 255, .08);
}
.feature-card-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: #75e8ff;
    border: 1px solid rgba(98, 205, 255, .25);
    border-radius: 15px;
    background: rgba(32, 223, 255, .06);
    margin-bottom: 26px;
}
.feature-card:nth-child(even) .feature-card-icon { color: #bb9bff; background: rgba(139, 101, 255, .09); }
.feature-card-icon svg { width: 28px; height: 28px; }
.feature-card h3 { color: #f0f3ff; font-size: clamp(21px, 2vw, 26px); line-height: 1.25; }
.feature-card p { margin-top: 14px; max-width: 45ch; color: #aab4cf; font-size: 16px; line-height: 1.7; }
@media (min-width: 1051px) and (max-width: 1250px) {
    .navbar nav { gap: 18px; }
}
@media (max-width: 760px) {
    .navbar { height: auto; min-height: 110px; flex-wrap: wrap; column-gap: 12px; row-gap: 10px; padding-block: 14px; }
    .language-switcher { order: 3; margin-inline: auto; }
    .navbar .play-top { margin-left: auto; }
    .features-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 36px; }
    .features-section { padding: 72px 20px; }
}
@media (prefers-reduced-motion: reduce) {
    .feature-card { transition: none; }
}

/* Lower product sections. Keep these styles isolated from Hero and Features. */
.lower-section { padding: 96px 40px; background: #03050d; }
.lower-container { max-width: 1160px; margin-inline: auto; }
.lower-heading { max-width: 760px; margin-bottom: 42px; }
.lower-eyebrow { color: #75e8ff; font-size: 11px; font-weight: 700; line-height: 1.7; letter-spacing: 2px; }
.lower-heading h2, .privacy-copy h2 { margin-top: 14px; color: #f0f3ff; font-size: clamp(30px, 3.5vw, 44px); line-height: 1.16; letter-spacing: -1.2px; text-wrap: balance; }
.lower-heading > p:last-child, .privacy-copy > p:not(.lower-eyebrow):not(.lower-status) { margin-top: 20px; color: #aab4cf; font-size: 17px; line-height: 1.75; }
.support-section { border-top: 1px solid rgba(98, 154, 220, .13); }
.support-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.support-card, .component-panel, .source-panel { min-width: 0; padding: 30px; border: 1px solid rgba(98, 154, 220, .2); border-radius: 22px; background: linear-gradient(145deg, rgba(17, 28, 47, .82), rgba(12, 13, 28, .85)); }
.lower-icon { width: 46px; height: 46px; margin-bottom: 25px; display: grid; place-items: center; border: 1px solid rgba(98, 205, 255, .22); border-radius: 13px; background: rgba(32, 223, 255, .045); color: #75e8ff; }
.lower-icon svg { width: 24px; height: 24px; }
.support-card h3, .component-panel h3, .source-panel h3, .support-contact h3 { color: #edf1ff; font-size: 20px; line-height: 1.35; overflow-wrap: anywhere; }
.support-card > p, .source-panel > p:not(.lower-status), .support-contact p { margin-top: 12px; color: #aab4cf; font-size: 15px; line-height: 1.75; }
.support-contact { margin-top: 24px; padding: 26px 30px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border: 1px solid rgba(98, 205, 255, .2); border-radius: 18px; background: rgba(16, 30, 47, .5); }
.support-contact p { margin-top: 6px; }
.lower-email { display: inline-flex; align-items: center; gap: 14px; padding-block: 10px; color: #92e8ff; font-size: 16px; line-height: 1.5; text-underline-offset: 5px; overflow-wrap: anywhere; }
.lower-email span { flex-shrink: 0; }
.lower-section a, .site-footer a { transition: color .18s ease; }
.lower-section a:hover, .site-footer a:hover { color: #fff; }
.lower-section a:focus-visible, .site-footer a:focus-visible { outline: 2px solid #75e8ff; outline-offset: 5px; border-radius: 3px; }
.opensource-section { padding-top: 56px; }
.opensource-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.35fr); gap: 24px; align-items: stretch; }
.component-panel { padding: 36px; }
.component-panel .lower-icon { color: #bb9bff; border-color: rgba(165, 130, 245, .25); background: rgba(139, 101, 255, .065); }
.component-list { margin-top: 30px; }
.component-list > div { padding-block: 22px; border-top: 1px solid rgba(98, 154, 220, .18); }
.component-list dt { color: #f0f3ff; font-size: 24px; font-weight: 700; }
.component-list dd { margin-top: 8px; color: #aab4cf; font-size: 15px; line-height: 1.5; }
.source-documentation { display: grid; gap: 20px; min-width: 0; }
.lower-status { display: inline-block; max-width: 100%; margin-top: 22px; padding: 8px 12px; border: 1px solid rgba(152, 165, 198, .2); border-radius: 9px; color: #bac6df; background: rgba(135, 152, 192, .045); font-size: 12px; line-height: 1.6; }
.privacy-section { padding-top: 24px; }
.privacy-panel { padding: 38px; display: flex; align-items: flex-start; gap: 28px; border: 1px solid rgba(98, 154, 220, .2); border-radius: 24px; background: linear-gradient(120deg, rgba(17, 28, 47, .75), rgba(20, 15, 36, .55)); }
.privacy-panel > .lower-icon { flex-shrink: 0; margin-bottom: 0; }
.privacy-copy { max-width: 830px; min-width: 0; }
.privacy-copy h2 { font-size: clamp(28px, 3vw, 36px); }
.site-footer { padding: 58px 40px 26px; background: #03050d; border-top: 1px solid rgba(98, 154, 220, .18); color: #aab4cf; }
.footer-main { max-width: 1160px; margin-inline: auto; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, .9fr); gap: 40px; }
.footer-wordmark { display: inline-block; padding-block: 8px; color: #f0f3ff; font-size: 23px; font-weight: 800; letter-spacing: 1px; text-decoration: none; }
.footer-wordmark span { color: #75e8ff; }
.footer-brand > p { max-width: 30ch; margin-top: 12px; font-size: 14px; line-height: 1.7; }
.footer-brand .footer-developer { color: #93a0bf; font-size: 11px; letter-spacing: .6px; }
.footer-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.site-footer h2 { margin-bottom: 14px; padding-top: 10px; color: #e3e9f8; font-size: 13px; font-weight: 700; line-height: 1.5; }
.footer-nav a, .footer-contact a { display: block; width: fit-content; max-width: 100%; min-height: 44px; padding-block: 10px; color: #aab4cf; font-size: 14px; line-height: 1.65; text-decoration: none; overflow-wrap: anywhere; }
.footer-contact a { text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom { max-width: 1160px; margin: 42px auto 0; padding-top: 24px; border-top: 1px solid rgba(98, 154, 220, .13); color: #93a0bf; font-size: 11px; line-height: 1.7; letter-spacing: 1px; }
@media (max-width: 1000px) {
    .support-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .support-card:last-child { grid-column: 1 / -1; }
    .support-contact { align-items: flex-start; flex-direction: column; gap: 12px; }
    .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
    .footer-contact { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
    .lower-section { padding: 64px 20px; }
    .lower-heading { margin-bottom: 30px; }
    .support-grid, .opensource-layout { grid-template-columns: 1fr; gap: 18px; }
    .support-card:last-child { grid-column: auto; }
    .support-card, .component-panel, .source-panel, .support-contact { padding: 24px; }
    .privacy-section { padding-top: 12px; }
    .privacy-panel { padding: 26px; flex-direction: column; gap: 22px; }
    .lower-email { font-size: 14px; gap: 8px; }
    .site-footer { padding: 40px 20px 24px; }
    .footer-main { grid-template-columns: 1fr; }
    .footer-contact { grid-column: auto; }
    .footer-nav { max-width: 380px; }
}
@media (prefers-reduced-motion: reduce) {
    .lower-section a, .site-footer a { transition: none; }
}
