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

html {
    scroll-behavior: smooth;
}

body.founder-page {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: #090a0c;
    color: #ffffff;
}

.founder-page *,
.founder-page *::before,
.founder-page *::after {
    box-sizing: border-box;
}

.founder-container {
    width: min(calc(100% - 64px), 1440px);
    margin: 0 auto;
}

.founder-main {
    width: 100%;
}


/* =========================================================
   HEADER
========================================================= */

.founder-header {
    position: relative;
    z-index: 1000;

    width: 100%;

    background: #090a0c;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.founder-header__inner {
    min-height: 82px;

    display: grid;

    grid-template-columns:
        minmax(280px, 1fr) auto minmax(280px, 1fr);

    align-items: center;

    gap: 40px;
}


/* =========================================================
   HEADER LOGO
========================================================= */

.founder-header__brand {
    display: flex;
    align-items: center;
}

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

    text-decoration: none;
}

.founder-header__logo {
    display: block;

    width: auto;
    height: auto;

    max-width: 215px;
    max-height: 44px;

    object-fit: contain;
}


/* =========================================================
   DESKTOP MENU
========================================================= */

.founder-header__nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-header__menu {
    display: flex;
    align-items: center;

    gap: 46px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.founder-header__menu li {
    margin: 0;
    padding: 0;
}

.founder-header__menu a {
    color: #d3d3d6;

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

    line-height: 1;

    text-decoration: none;

    transition: color 0.2s ease;
}

.founder-header__menu a:hover {
    color: #ffffff;
}


/* =========================================================
   HEADER RIGHT
========================================================= */

.founder-header__actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;

    gap: 19px;
}


/* =========================================================
   LANGUAGE SWITCHER
========================================================= */

.founder-header__languages {
    display: inline-flex;
    align-items: center;

    padding: 4px;

    background: #15161a;

    border-radius: 999px;
}

.founder-header__language {
    min-width: 34px;
    height: 30px;

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

    padding: 0 9px;

    border: 0;
    border-radius: 999px;

    background: transparent;
    color: #8c8d91;

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

    cursor: pointer;
}

.founder-header__language.active {
    background: #212227;
    color: #ffffff;
}


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

.founder-header__login {
    min-width: 82px;
    height: 42px;

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

    padding: 0 22px;

    border-radius: 999px;

    background: #ff2096;
    color: #ffffff !important;

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

    text-decoration: none;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.founder-header__login:hover,
.founder-header__login:focus,
.founder-header__login:active,
.founder-header__login:visited {
    color: #ffffff !important;
}

.founder-header__login:hover {
    background: #ff38a4;

    transform: translateY(-1px);
}


/* =========================================================
   MOBILE HEADER
========================================================= */

.founder-menu-toggle {
    display: none;

    width: 40px;
    height: 40px;

    padding: 8px;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.founder-menu-toggle span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 5px 0;

    background: #ffffff;
}

.founder-mobile-menu {
    display: none;
}


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

.founder-hero {
    position: relative;

    width: 100%;

    overflow: hidden;

    background:
        radial-gradient(circle at 17% 25%,
            rgba(20, 58, 108, 0.42),
            transparent 38%),
        linear-gradient(90deg,
            #0c1625 0%,
            #090b0f 53%,
            #08090b 100%);
}

.founder-hero__grid {
    min-height: 735px;

    display: grid;

    grid-template-columns:
        minmax(0, 650px) minmax(500px, 560px);

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

    gap: 110px;

    padding: 85px 0 72px;
}


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

.founder-hero__content {
    width: 100%;
    max-width: 650px;
}


/* Hero Eyebrow */

.founder-hero__eyebrow {
    display: inline-flex;
    align-items: center;

    min-height: 28px;

    margin-bottom: 38px;

    padding: 5px 17px;

    border: 1px solid rgba(109, 164, 236, 0.85);
    border-radius: 999px;

    background: #f6f9ff;
    color: #4b81ca;

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

    line-height: 1;

    letter-spacing: 0.035em;
}


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

.founder-hero__heading {
    max-width: 630px;
    margin: 0 0 30px;
    font-weight: 800;
    line-height: 85px;

}


/* Hero Subtitle */

.founder-hero__subtitle {
    margin: 0 0 14px;

    color: #a1a3aa;

    font-size: 20px;

    line-height: 1.55;
}


/* Hero Categories */

.founder-hero__categories {
    margin-bottom: 17px;

    color: #ff2096;

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

    line-height: 1.5;
}


/* Hero Description */

.founder-hero__description {
    max-width: 610px;

    margin: 0 0 36px;

    color: #a0a2a9;

    font-size: 20px;

    line-height: 1.6;
}


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

.founder-hero__cta {
    width: 100%;
    max-width: 420px;
    min-height: 60px;

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

    padding: 16px 28px;

    border-radius: 9px;

    background: #ff2096;

    color: #ffffff !important;

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

    line-height: 1.2;

    text-align: center;
    text-decoration: none !important;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.founder-hero__cta:hover,
.founder-hero__cta:focus,
.founder-hero__cta:active,
.founder-hero__cta:visited {
    color: #ffffff !important;
    text-decoration: none !important;
}

.founder-hero__cta:hover {
    background: #ff39a5;

    transform: translateY(-1px);

    box-shadow:
        0 12px 30px rgba(255, 32, 150, 0.18);
}


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

.founder-hero__visual {
    width: 100%;

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


/* =========================================================
   CREATOR SLIDER
========================================================= */

.founder-creator-slider {
    position: relative;

    width: 100%;
    max-width: 560px;
    height: 610px;
}

.founder-creator-slide {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}

.founder-creator-slide.is-active {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   CREATOR CARD
========================================================= */

.founder-creator-card {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    border-radius: 30px;

    background: #050608;

    box-shadow:
        0 0 0 1px rgba(31, 100, 205, 0.20),
        0 0 45px rgba(23, 86, 183, 0.30);
}


/* Creator Image */

.founder-creator-card__image {
    position: absolute;

    inset: 0;

    z-index: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* Image Overlay */

.founder-creator-card::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.16),
            transparent 30%,
            transparent 72%,
            rgba(0, 0, 0, 0.10));
}


/* =========================================================
   CREATOR META
========================================================= */

.founder-creator-card__top {
    position: absolute;

    top: 30px;
    left: 30px;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 12px;
}

.founder-creator-card__verified {
    min-height: 24px;

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

    padding: 4px 10px;

    border-radius: 3px;

    background: #ff2096;

    color: #ffffff !important;

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

    line-height: 1;

    text-transform: uppercase;
}

.founder-creator-card__username {
    color: #c5c5c9;

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


/* =========================================================
   SLIDER PROGRESS
========================================================= */

.founder-creator-card__progress {
    position: absolute;

    top: 64px;
    left: 30px;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 8px;
}

.founder-creator-card__progress-item {
    width: 44px;
    height: 3px;

    display: block;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.11);
}

.founder-creator-card__progress-item.is-active {
    background: #ff2096;
}


/* =========================================================
   TRUST BAR
========================================================= */

.founder-trust {
    width: 100%;

    background: #0a0b0d;

    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.founder-trust__grid {
    min-height: 118px;

    display: grid;

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

    align-items: center;

    gap: 70px;
}

.founder-trust__item {
    display: flex;
    align-items: center;

    gap: 16px;
}


/* =========================================================
   TRUST ICONS
========================================================= */

.founder-trust__icon {
    width: 55px;
    height: 55px;
    flex: 0 0 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    overflow: hidden;
}

.founder-trust__icon img {
    width: 47px !important;
    height: 47px !important;

    max-width: 47px !important;
    max-height: 47px !important;

    display: block;

    object-fit: contain;
}


/* =========================================================
   TRUST TEXT
========================================================= */

.founder-trust__content {
    display: flex;
    flex-direction: column;

    gap: 4px;
}

.founder-trust__content strong {
    color: #eeeeef;

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

    line-height: 1.3;
}

.founder-trust__content span {
    color: #85878d;

    font-size: 10px;

    line-height: 1.4;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1500px) {

    .founder-hero__grid {
        min-height: 760px;
    }

}


/* =========================================================
   SMALL DESKTOP
========================================================= */

@media (max-width: 1200px) {

    .founder-container {
        width: min(calc(100% - 48px), 1100px);
    }

    .founder-header__inner {
        grid-template-columns:
            minmax(190px, 1fr) auto minmax(190px, 1fr);

        gap: 25px;
    }

    .founder-header__menu {
        gap: 28px;
    }

    .founder-hero__grid {
        grid-template-columns:
            minmax(0, 1fr) minmax(430px, 500px);

        gap: 55px;
    }

    .founder-hero__heading {
        font-size: 48px !important;
    }

    .founder-creator-slider {
        max-width: 500px;
        height: 555px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .founder-container {
        width: min(calc(100% - 40px), 960px);
    }

    .founder-header__menu {
        gap: 20px;
    }

    .founder-header__menu a {
        font-size: 12px;
    }

    .founder-hero__grid {
        grid-template-columns:
            minmax(0, 1fr) minmax(370px, 1fr);

        gap: 40px;

        min-height: 650px;
    }

    .founder-hero__heading {
        font-size: 48px !important;
    }

    .founder-creator-slider {
        height: 500px;
    }

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

        gap: 30px;

        padding: 26px 0;
    }

}


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

@media (max-width: 767px) {

    .founder-container {
        width: calc(100% - 32px);
    }


    /* Header */

    .founder-header__inner {
        min-height: 66px;

        display: flex;

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

    .founder-header__logo {
        max-width: 155px;
    }

    .founder-header__nav,
    .founder-header__actions {
        display: none;
    }

    .founder-menu-toggle {
        display: block;
    }


    /* Mobile Menu */

    .founder-mobile-menu {
        position: absolute;

        top: 66px;
        left: -16px;
        right: -16px;

        display: block;

        padding: 0 16px 22px;

        background: #090a0c;

        opacity: 0;
        visibility: hidden;

        transform: translateY(-8px);

        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;
    }

    .founder-header.menu-open .founder-mobile-menu {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

    .founder-mobile-menu__list {
        margin: 0;
        padding: 12px 0 0;

        list-style: none;
    }

    .founder-mobile-menu__list a {
        display: block;

        padding: 14px 0;

        color: #d6d6d9;

        text-decoration: none;

        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .founder-mobile-menu__login {
        display: flex;
        justify-content: center;
        align-items: center;

        margin-top: 18px;

        padding: 13px;

        border-radius: 8px;

        background: #ff2096;

        color: #ffffff !important;

        text-decoration: none !important;
    }


    /* Hero */

    .founder-hero__grid {
        min-height: auto;

        grid-template-columns: 1fr;

        gap: 50px;

        padding: 55px 0;
    }

    .founder-hero__content {
        max-width: 100%;
    }

    .founder-hero__heading {
        max-width: 100%;

        color: #ffffff !important;

        font-size: 48px !important;
    }

    .founder-hero__subtitle {
        font-size: 15px;
    }

    .founder-hero__categories {
        font-size: 13px;
    }

    .founder-hero__description {
        font-size: 14px;
    }

    .founder-hero__visual {
        justify-content: center;
    }


    /* Creator Slider */

    .founder-creator-slider {
        max-width: 560px;

        height: min(125vw, 610px);
    }


    /* Trust */

    .founder-trust__grid {
        grid-template-columns: 1fr;

        gap: 24px;

        padding: 30px 0;
    }

    .founder-trust__icon {
        width: 55px;
        height: 55px;

        flex: 0 0 55px;
    }

    .founder-trust__icon img {
        width: 47px !important;
        height: 47px !important;

        max-width: 47px !important;
        max-height: 47px !important;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .founder-container {
        width: calc(100% - 28px);
    }

    .founder-hero__heading {
        color: #ffffff !important;

        font-size: 42px !important;
    }

    .founder-hero__cta {
        min-height: 54px;

        color: #ffffff !important;

        font-size: 14px;
    }

    .founder-creator-slider {
        height: 122vw;
        min-height: 430px;
    }

    .founder-creator-card {
        border-radius: 24px;
    }

    .founder-creator-card__top {
        top: 23px;
        left: 23px;
    }

    .founder-creator-card__progress {
        top: 56px;
        left: 23px;
    }

    .founder-creator-card__progress-item {
        width: 34px;
    }

}



/* =========================================================
   CORE FEATURES
========================================================= */

.founder-core-features {
    position: relative;
    width: 100%;

    padding: 88px 0 96px;

    background: #111115;

    border-top: 1px solid rgba(255, 255, 255, 0.025);
    border-bottom: 1px solid rgba(255, 255, 255, 0.025);
}


/* =========================================================
   CORE FEATURES HEADER
========================================================= */

.founder-core-features__header {
    width: 100%;
    max-width: 760px;

    margin: 0 auto 64px;

    text-align: center;
}

.founder-core-features__title {
    margin: 0 0 24px;

    color: #ffffff !important;

    font-size: 48px !important;
    font-weight: 800;

    line-height: 1.12;

    letter-spacing: -0.025em;
}

.founder-core-features__description {
    margin: 0;

    color: #7e8087;

    font-size: 18px;
    font-weight: 400;

    line-height: 1.65;
}


/* =========================================================
   CORE FEATURES GRID
========================================================= */

.founder-core-features__grid {
    display: grid;

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

    gap: 32px;

    align-items: stretch;
}


/* =========================================================
   FEATURE CARD
========================================================= */

.founder-feature-card {
    position: relative;

    min-width: 0;
    min-height: 430px;

    padding: 36px 34px 34px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 20px;

    background: #141418;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.founder-feature-card:hover {
    transform: translateY(-3px);

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

    box-shadow:
        0 16px 42px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   FEATURE ICON
========================================================= */

.founder-feature-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 34px;
    border-radius: 12px;

}

.founder-feature-card__icon-image {
    width: 56px !important;
    height: 56px !important;

    max-width: 56px !important;
    max-height: 56px !important;

    display: block;

    object-fit: contain;
}


/* =========================================================
   FEATURE CARD CONTENT
========================================================= */

.founder-feature-card__title {
    margin: 0 0 20px;

    color: #ffffff !important;

    font-size: 24px !important;
    font-weight: 700;

    line-height: 1.25;
}

.founder-feature-card__description {
    min-height: 58px;

    margin: 0 0 26px;

    color: #8e9097;

    font-size: 17px;

    line-height: 1.65;
}


/* =========================================================
   FEATURE POINTS
========================================================= */

.founder-feature-card__list {
    display: flex;
    flex-direction: column;

    gap: 18px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.founder-feature-card__list li {
    display: flex;
    align-items: center;

    gap: 10px;

    margin: 0;
    padding: 0;

    color: #b5b6bb;

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

    line-height: 1.5;
}

.founder-feature-card__check {
    width: 14px;
    height: 14px;

    flex: 0 0 14px;

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

.founder-feature-card__check-icon {
    width: 14px !important;
    height: 14px !important;

    max-width: 14px !important;
    max-height: 14px !important;

    display: block;

    object-fit: contain;
}

.founder-feature-card__point-text {
    display: block;

    color: #b5b6bb;

    font-size: 15px;
    font-weight: 400;

    line-height: 1.5;
}


/* =========================================================
   CORE FEATURES RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .founder-core-features {
        padding: 80px 0 88px;
    }

    .founder-core-features__grid {
        gap: 24px;
    }

    .founder-feature-card {
        min-height: 410px;

        padding: 32px 28px;
    }

}


@media (max-width: 900px) {

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

}


@media (max-width: 767px) {

    .founder-core-features {
        padding: 64px 0 70px;
    }

    .founder-core-features__header {
        margin-bottom: 44px;
    }

    .founder-core-features__title {
        font-size: 32px !important;
    }

    .founder-core-features__description {
        font-size: 13px;
    }

    .founder-core-features__grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .founder-feature-card {
        min-height: auto;

        padding: 30px 26px;
    }

    .founder-feature-card__icon {
        margin-bottom: 26px;
    }

    .founder-feature-card__description {
        min-height: 0;
    }

}


@media (max-width: 480px) {

    .founder-core-features {
        padding: 54px 0 60px;
    }

    .founder-core-features__header {
        margin-bottom: 36px;
    }

    .founder-core-features__title {
        font-size: 28px !important;
    }

    .founder-feature-card {
        padding: 27px 22px;

        border-radius: 17px;
    }

    .founder-feature-card__title {
        font-size: 19px !important;
    }

}


/* =========================================================
   FOUNDING CREATORS PROGRAM
========================================================= */

.founder-program {
    position: relative;
    width: 100%;
    padding: 96px 0;
    background: linear-gradient(180deg,
            #0B0B0D 0%,
            #16161A 100%);
}

.founder-program__box {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 650px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 36px;
    background: #121216;
}

.founder-program__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px 72px 42px 78px;
    background: #121216;
}

.founder-program__title {
    margin: 0 0 26px;
    color: #ffffff !important;
    font-size: 36px !important;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.founder-program__heading {
    max-width: 520px;
    margin: 0 0 32px;
    color: #ff4aaf !important;
    font-size: 32px !important;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.02em;
}

.founder-program__description {
    max-width: 520px;
    margin: 0 0 30px;
    color: #929399;
    font-size: 18px;
    line-height: 1.65;
}

.founder-program__list {
    width: 100%;
    max-width: 545px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 0 0 40px;
    padding: 0;
    list-style: none;
}

.founder-program__list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 0;
    padding: 0;
}

.founder-program__point-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2px;
}

.founder-program__point-icon-image {
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    display: block;
    object-fit: contain;
}

.founder-program__point-text {
    display: block;
    color: #d0d0d3;
    font-size: 15px;
    line-height: 1.55;
}

.founder-program__actions {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 16px;
    width: 100%;
    max-width: 520px;
}

.founder-program__button {
    min-height: 76px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 26px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    text-decoration: none !important;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.founder-program__button--primary {
    border: 1px solid #ff2096;
    background: #ff2096;
    color: #ffffff !important;
}

.founder-program__button--primary:hover {
    background: #ff3ba6;
    color: #ffffff !important;
    transform: translateY(-1px);
}

.founder-program__button--secondary {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: #17171b;
    color: #ffffff !important;
}

.founder-program__button--secondary:hover {
    border-color: rgba(255, 255, 255, 0.28);
    background: #1c1c21;
    color: #ffffff !important;
    transform: translateY(-1px);
}

.founder-program__visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at center,
            rgba(255, 32, 150, 0.07),
            transparent 45%),
        #101014;
}

.founder-program__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    margin: 0;
}

@media (max-width: 1200px) {
    .founder-program {
        padding: 80px 0;
    }

    .founder-program__box {
        min-height: 600px;
    }

    .founder-program__content {
        padding: 42px 45px;
    }

    .founder-program__visual {
        min-height: 600px;
    }

    .founder-program__title {
        font-size: 32px !important;
    }

    .founder-program__heading {
        font-size: 27px !important;
    }
}

@media (max-width: 900px) {
    .founder-program__box {
        grid-template-columns: 1fr;
    }

    .founder-program__content {
        padding: 55px 45px;
    }

    .founder-program__visual {
        min-height: 560px;
    }

    .founder-program__image {
        object-fit: contain;
    }
}

@media (max-width: 767px) {
    .founder-program {
        padding: 65px 0;
    }

    .founder-program__box {
        border-radius: 25px;
    }

    .founder-program__content {
        padding: 42px 28px;
    }

    .founder-program__title {
        font-size: 28px !important;
    }

    .founder-program__heading {
        font-size: 24px !important;
        line-height: 1.4;
    }

    .founder-program__description {
        font-size: 14px;
    }

    .founder-program__point-text {
        font-size: 13px;
    }

    .founder-program__actions {
        grid-template-columns: 1fr;
    }

    .founder-program__button {
        min-height: 58px;
        font-size: 14px;
    }

    .founder-program__visual {
        min-height: 480px;
    }
}

@media (max-width: 480px) {
    .founder-program {
        padding: 55px 0;
    }

    .founder-program__box {
        border-radius: 20px;
    }

    .founder-program__content {
        padding: 36px 22px;
    }

    .founder-program__title {
        font-size: 25px !important;
    }

    .founder-program__heading {
        font-size: 22px !important;
    }

    .founder-program__visual {
        min-height: 390px;
    }
}



/* =========================================================
   NOQ ADVANTAGE
========================================================= */

.founder-advantage {
    position: relative;
    width: 100%;
    padding: 70px 0 82px;
    background: #0b0b0d;
}

.founder-advantage__header {
    width: 100%;
    max-width: 650px;
    margin: 0 auto 46px;
    text-align: center;
}

.founder-advantage__title {
    margin: 0 0 22px;
    color: #ffffff !important;
    font-size: 48px !important;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.founder-advantage__description {
    margin: 0;
    color: #858089;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}

.founder-advantage__table-wrap {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #302c33;
    border-radius: 18px;

    /* Subtle center glow from the reference design */
    background:
        radial-gradient(circle at 52% 48%,
            rgba(112, 28, 76, 0.20) 0%,
            rgba(69, 24, 52, 0.12) 30%,
            rgba(23, 19, 24, 0.02) 62%,
            rgba(21, 19, 23, 0) 78%),
        #151317;
}

.founder-advantage__table {
    width: 100%;
    background: transparent;
}

.founder-advantage__row {
    display: grid;
    grid-template-columns: 1.05fr 1.25fr 1.05fr;
    min-height: 59px;
    border-bottom: 1px solid #252229;
}

.founder-advantage__row:last-child {
    border-bottom: 0;
}

.founder-advantage__row--header {
    min-height: 75px;
}

.founder-advantage__row--header .founder-advantage__cell {
    background: #242126;
    color: #ddd9df;
    font-size: 16px;
    font-weight: 600;
}

.founder-advantage__row--header .founder-advantage__cell--noq {
    background: #222731;
    color: #ff2096 !important;
}

.founder-advantage__cell {
    display: flex;
    align-items: center;
    padding: 20px 18px;

    /* Keep body cells transparent so the table glow is visible */
    background: transparent;

    color: #bbb8be;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

.founder-advantage__cell--center {
    justify-content: center;
    text-align: center;
}

.founder-advantage__cell--feature {
    color: #d2d0d4;
}

.founder-advantage__cell--noq {
    gap: 7px;

    /* Slightly stronger tint for the NotOnlyQueens column */
    background: rgba(46, 20, 39, 0.72);
}

.founder-advantage__cell--noq.is-highlighted {
    color: #ff2096 !important;
}

.founder-advantage__noq-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.founder-advantage__noq-icon-image {
    width: 48px !important;
    height: 48px !important;
    max-width: 48px !important;
    max-height: 48px !important;
    display: block;
    object-fit: contain;
}

.founder-advantage__noq-text {
    display: inline-block;
}

.founder-advantage__button-wrap {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.founder-advantage__button {
    width: auto;
    min-width: 230px;
    min-height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 9px 20px;
    border: 1px solid rgba(255, 32, 150, 0.72);
    border-radius: 6px;
    background: #28212b;
    color: #ff2096 !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    text-decoration: none !important;
}

.founder-advantage__button:hover,
.founder-advantage__button:focus {
    background: #302534;
    border-color: #ff2096;
    color: #ff2096 !important;
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .founder-advantage__table-wrap {
        max-width: 730px;
        overflow-x: auto;
    }

    .founder-advantage__table {
        min-width: 700px;
    }
}

@media (max-width: 767px) {
    .founder-advantage {
        padding: 60px 0 68px;
    }

    .founder-advantage__header {
        margin-bottom: 38px;
    }

    .founder-advantage__title {
        font-size: 30px !important;
    }

    .founder-advantage__description {
        font-size: 12px;
    }

    .founder-advantage__table-wrap {
        border-radius: 16px;
    }

    .founder-advantage__cell {
        padding: 14px 16px;
        font-size: 12px;
    }

    .founder-advantage__button-wrap {
        margin-top: 32px;
    }
}

@media (max-width: 480px) {
    .founder-advantage {
        padding: 52px 0 60px;
    }

    .founder-advantage__title {
        font-size: 27px !important;
    }

    .founder-advantage__header {
        margin-bottom: 34px;
    }

    .founder-advantage__button {
        min-width: 190px;
        min-height: 40px;
        font-size: 11px;
    }
}

body.founder-page .founder-advantage__title {
    color: #ffffff !important;
}

body.founder-page .founder-advantage__row--header .founder-advantage__cell--noq,
body.founder-page .founder-advantage__cell--noq.is-highlighted {
    color: #ff2096 !important;
}

body.founder-page .founder-advantage__button,
body.founder-page .founder-advantage__button:link,
body.founder-page .founder-advantage__button:visited,
body.founder-page .founder-advantage__button:hover,
body.founder-page .founder-advantage__button:focus,
body.founder-page .founder-advantage__button:active {
    color: #ff2096 !important;
    text-decoration: none !important;
}




/* =========================================================
   FAQ SECTION
========================================================= */

.founder-faq {
    position: relative;
    width: 100%;
    padding: 78px 0 92px;
    background: #0b0b0d;
}

.founder-faq__header {
    width: 100%;
    margin: 0 auto 54px;
    text-align: center;
}

.founder-faq__title {
    margin: 0;
    color: #f2f2f3 !important;
    font-size: 30px !important;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.015em;
}

.founder-faq__list {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    gap: 17px;
}

.founder-faq__item {
    width: 100%;
    margin: 0;
    overflow: hidden;

    border: 0;
    border-radius: 12px;

    background: #18181c;

    transition: background-color 0.2s ease;
}

.founder-faq__item:hover {
    background: #1b1b20;
}

.founder-faq__question {
    list-style: none;
    width: 100%;
    min-height: 61px;

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

    gap: 24px;

    padding: 0 24px;

    color: #f2f2f3;
    cursor: pointer;
    user-select: none;
}

.founder-faq__question::-webkit-details-marker {
    display: none;
}

.founder-faq__question-text {
    display: block;

    color: #f2f2f3 !important;

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

    line-height: 1.4;
}

.founder-faq__arrow {
    width: 24px;
    height: 24px;

    flex: 0 0 24px;

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

    color: #ffffff;

    transition: transform 0.25s ease;
}

.founder-faq__arrow svg {
    display: block;
    width: 18px;
    height: 18px;
}

.founder-faq__item[open] .founder-faq__arrow {
    transform: rotate(180deg);
}

.founder-faq__answer {
    padding: 25px;

    color: #9b9ba1;

    font-size: 13px;

    line-height: 1.7;
}

.founder-faq__answer p {
    margin: 0 0 12px;
}

.founder-faq__answer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {

    .founder-faq__list {
        max-width: 850px;
    }

}

@media (max-width: 767px) {

    .founder-faq {
        padding: 60px 0 70px;
    }

    .founder-faq__header {
        margin-bottom: 38px;
    }

    .founder-faq__title {
        font-size: 26px !important;
    }

    .founder-faq__list {
        gap: 14px;
    }

    .founder-faq__question {
        min-height: 58px;
        padding: 0 18px;
    }

    .founder-faq__question-text {
        font-size: 13px;
    }

    .founder-faq__answer {
        padding: 0 18px 20px;
        font-size: 12px;
    }

}

@media (max-width: 480px) {

    .founder-faq {
        padding: 52px 0 60px;
    }

    .founder-faq__title {
        font-size: 24px !important;
    }

    .founder-faq__question {
        min-height: 56px;
        padding: 0 16px;
    }

}

body.founder-page .founder-faq__title,
body.founder-page .founder-faq__question,
body.founder-page .founder-faq__question-text {
    color: #f2f2f3 !important;
}




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

.founder-final-cta {
    position: relative;
    width: 100%;
    padding: 70px 0;
    overflow: hidden;

    background:
        linear-gradient(90deg,
            rgba(215, 31, 143, 0.96) 0%,
            rgba(222, 55, 177, 0.96) 52%,
            rgba(206, 61, 190, 0.96) 100%),
        var(--final-cta-bg, none);

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.founder-final-cta__inner {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.founder-final-cta__heading {
    margin: 0 0 22px;
    color: #ffffff !important;
    font-size: 38px !important;
    font-weight: 400;
    line-height: 60px;
}

.founder-final-cta__description {
    max-width: 660px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.founder-final-cta__button {
    min-width: 210px;
    min-height: 47px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 28px;
    border-radius: 999px;
    background: #ffffff;
    color: #ff2096 !important;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none !important;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.founder-final-cta__button:hover,
.founder-final-cta__button:focus {
    background: #ffffff;
    color: #ff2096 !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

@media (max-width: 767px) {
    .founder-final-cta {
        padding: 58px 0;
    }

    .founder-final-cta__heading {
        font-size: 32px !important;
    }

    .founder-final-cta__description {
        max-width: 560px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .founder-final-cta {
        padding: 50px 0;
    }

    .founder-final-cta__heading {
        font-size: 28px !important;
    }

    .founder-final-cta__description {
        font-size: 12px;
    }

    .founder-final-cta__button {
        min-width: 190px;
        min-height: 44px;
        font-size: 12px;
    }
}

body.founder-page .founder-final-cta__heading {
    color: #ffffff !important;
}

body.founder-page .founder-final-cta__button,
body.founder-page .founder-final-cta__button:link,
body.founder-page .founder-final-cta__button:visited,
body.founder-page .founder-final-cta__button:hover,
body.founder-page .founder-final-cta__button:focus,
body.founder-page .founder-final-cta__button:active {
    color: #ff2096 !important;
    text-decoration: none !important;
}

/* =========================================================
   STRONG THEME OVERRIDES
   Keep these rules at the END of the file.
========================================================= */

body.founder-page .founder-hero__heading {
    color: #ffffff !important;
    font-size: 65px !important;
    max-width: 550px;
}

body.founder-page .founder-hero__cta,
body.founder-page .founder-hero__cta:link,
body.founder-page .founder-hero__cta:visited,
body.founder-page .founder-hero__cta:hover,
body.founder-page .founder-hero__cta:focus,
body.founder-page .founder-hero__cta:active {
    color: #ffffff !important;
    text-decoration: none !important;
}

body.founder-page .founder-header__login,
body.founder-page .founder-header__login:link,
body.founder-page .founder-header__login:visited,
body.founder-page .founder-header__login:hover,
body.founder-page .founder-header__login:focus,
body.founder-page .founder-header__login:active {
    color: #ffffff !important;
    text-decoration: none !important;
}

body.founder-page .founder-trust__icon img {
    width: 47px !important;
    height: 47px !important;

    max-width: 47px !important;
    max-height: 47px !important;
}

body.founder-page .founder-core-features__title,
body.founder-page .founder-feature-card__title {
    color: #ffffff !important;
}

body.founder-page .founder-program__title {
    color: #ffffff !important;
}

body.founder-page .founder-program__heading {
    color: #ff4aaf !important;
}

body.founder-page .founder-program__button,
body.founder-page .founder-program__button:link,
body.founder-page .founder-program__button:visited,
body.founder-page .founder-program__button:hover,
body.founder-page .founder-program__button:focus,
body.founder-page .founder-program__button:active {
    color: #ffffff !important;
    text-decoration: none !important;
}


/* Keep smaller heading on very small mobile screens */
@media (max-width: 480px) {

    body.founder-page .founder-hero__heading {
        font-size: 42px !important;
    }

}

body.founder-page .founder-advantage__title {
    color: #ffffff !important;
}

body.founder-page .founder-advantage__cell--noq.is-highlighted {
    color: #ff2096 !important;
}

body.founder-page .founder-advantage__button,
body.founder-page .founder-advantage__button:link,
body.founder-page .founder-advantage__button:visited,
body.founder-page .founder-advantage__button:hover,
body.founder-page .founder-advantage__button:focus,
body.founder-page .founder-advantage__button:active {
    color: #ff2096 !important;
    text-decoration: none !important;
}

/* =========================================================
   FINAL PAGE POLISH
   Visual consistency + premium finishing layer
========================================================= */

body.founder-page {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Consistent premium section rhythm */
.founder-core-features,
.founder-program,
.founder-advantage,
.founder-faq {
    position: relative;
}

.founder-core-features::before,
.founder-program::before,
.founder-advantage::before,
.founder-faq::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(92%, 1380px);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .055),
            transparent);
    pointer-events: none;
}

/* =========================================================
   HEADER POLISH
========================================================= */

.founder-header {
    background: rgba(9, 10, 12, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.founder-header__menu a,
.founder-header__login,
.founder-header__language {
    transition:
        color .2s ease,
        background-color .2s ease,
        transform .2s ease,
        opacity .2s ease;
}

.founder-header__menu a:hover {
    transform: translateY(-1px);
}

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

.founder-hero {
    background:
        radial-gradient(circle at 18% 24%,
            rgba(31, 78, 145, 0.38),
            transparent 36%),
        radial-gradient(circle at 78% 35%,
            rgba(255, 32, 150, 0.035),
            transparent 30%),
        linear-gradient(90deg,
            #0b1524 0%,
            #090b10 54%,
            #08090b 100%);
}

.founder-hero__eyebrow {
    box-shadow:
        0 5px 18px rgba(65, 126, 203, 0.10);
}

body.founder-page .founder-hero__heading {
    text-wrap: balance;
    text-shadow: 0 2px 28px rgba(255, 255, 255, .025);
}

.founder-hero__cta {
    box-shadow: 0 8px 24px rgba(255, 32, 150, 0.14);
}

.founder-hero__cta:hover {
    box-shadow: 0 14px 34px rgba(255, 32, 150, 0.25);
}

.founder-creator-card {
    border: 1px solid rgba(65, 125, 220, 0.14);
    box-shadow:
        0 0 0 1px rgba(35, 92, 180, 0.10),
        0 18px 60px rgba(0, 0, 0, 0.40),
        0 0 45px rgba(28, 91, 185, 0.20);
    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.founder-creator-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 0 1px rgba(52, 113, 209, 0.15),
        0 24px 70px rgba(0, 0, 0, 0.45),
        0 0 52px rgba(28, 91, 185, 0.25);
}

/* =========================================================
   TRUST BAR POLISH
========================================================= */

.founder-trust {
    background:
        linear-gradient(180deg,
            rgba(12, 13, 16, 0.98),
            #0a0b0d);
}

.founder-trust__item {
    transition: transform .2s ease;
}

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

/* =========================================================
   CORE FEATURES POLISH
========================================================= */

.founder-core-features {
    background:
        radial-gradient(circle at 50% 0%,
            rgba(255, 32, 150, 0.022),
            transparent 32%),
        #111115;
}

.founder-core-features__title,
.founder-program__title,
.founder-advantage__title,
.founder-faq__title {
    text-wrap: balance;
}

.founder-feature-card {
    background:
        linear-gradient(180deg,
            rgba(23, 23, 28, 0.98),
            rgba(18, 18, 22, 0.98));
    border-color: rgba(255, 255, 255, .085);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .10);
}

.founder-feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            color-mix(in srgb, var(--feature-accent) 55%, transparent),
            transparent);
    opacity: .55;
}

.founder-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, .14);
    box-shadow: 0 18px 46px rgba(0, 0, 0, .18);
}

/* =========================================================
   FOUNDING PROGRAM POLISH
========================================================= */

.founder-program {
    background:
        linear-gradient(180deg,
            #0b0b0d 0%,
            #151519 100%);
}

.founder-program__box {
    border-color: rgba(255, 255, 255, .085);
    box-shadow:
        0 22px 70px rgba(0, 0, 0, .22);
}

.founder-program__content {
    background:
        linear-gradient(180deg,
            #151519 0%,
            #121216 100%);
}

.founder-program__visual {
    background:
        radial-gradient(circle at center,
            rgba(255, 32, 150, 0.08),
            transparent 44%),
        #101014;
}

.founder-program__image {
    object-fit: contain;
    padding: 18px;
}

.founder-program__button {
    box-shadow: 0 8px 20px rgba(0, 0, 0, .10);
}

/* =========================================================
   ADVANTAGE POLISH
========================================================= */

.founder-advantage {
    background:
        radial-gradient(circle at 50% 44%,
            rgba(255, 32, 150, 0.035),
            transparent 30%),
        #0b0b0d;
}

.founder-advantage__table-wrap {
    box-shadow:
        0 18px 55px rgba(0, 0, 0, .22),
        0 0 45px rgba(114, 27, 77, .05);
}

.founder-advantage__row {
    transition: background-color .18s ease;
}

.founder-advantage__row:not(.founder-advantage__row--header):hover {
    background: rgba(255, 255, 255, .012);
}

.founder-advantage__noq-icon-image {
    filter: drop-shadow(0 4px 10px rgba(255, 32, 150, .12));
}

/* =========================================================
   FAQ POLISH
========================================================= */

.founder-faq {
    background:
        linear-gradient(180deg,
            #0b0b0d 0%,
            #0a0a0c 100%);
}

.founder-faq__list {
    max-width: 900px;
}

.founder-faq__item {
    border: 1px solid rgba(255, 255, 255, .035);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.founder-faq__item[open] {
    background: #1b1b20;
    border-color: rgba(255, 255, 255, .065);
}

.founder-faq__question {
    transition: background-color .2s ease;
}

.founder-faq__item[open] .founder-faq__question {
    background: rgba(255, 255, 255, .012);
}

/* =========================================================
   FINAL CTA POLISH
========================================================= */

.founder-final-cta {
    isolation: isolate;
    min-height: 330px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(90deg,
            rgba(206, 27, 137, 0.84) 0%,
            rgba(220, 54, 176, 0.82) 50%,
            rgba(195, 58, 187, 0.84) 100%),
        var(--final-cta-bg, linear-gradient(120deg, #cf218d, #d83bb6));

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

.founder-final-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;

    background:
        radial-gradient(circle at 50% 30%,
            rgba(255, 255, 255, .11),
            transparent 34%);
}

.founder-final-cta__inner {
    max-width: 790px;
}

.founder-final-cta__heading {
    text-wrap: balance;
    text-shadow: 0 2px 18px rgba(115, 8, 72, .12);
}

.founder-final-cta__button {
    box-shadow:
        0 12px 30px rgba(107, 8, 67, .16);
}

.founder-final-cta__button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 16px 36px rgba(107, 8, 67, .20);
}

/* =========================================================
   ACCESSIBILITY / INTERACTION
========================================================= */

.founder-page a:focus-visible,
.founder-page button:focus-visible,
.founder-page summary:focus-visible {
    outline: 2px solid #ff4aaf;
    outline-offset: 3px;
}

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

@media (max-width: 1200px) {

    .founder-program__image {
        padding: 10px;
    }

}

@media (max-width: 767px) {

    .founder-creator-card:hover,
    .founder-feature-card:hover,
    .founder-trust__item:hover {
        transform: none;
    }

    .founder-final-cta {
        min-height: 290px;
    }

    .founder-program__image {
        padding: 0;
    }

}

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

    .founder-page *,
    .founder-page *::before,
    .founder-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

}

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

.founder-footer {
    width: 100%;
    padding: 64px 0 30px;
    background: #09090b;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.founder-footer__top {
    display: grid;
    grid-template-columns:
        minmax(320px, 1.7fr) minmax(160px, 1fr) minmax(160px, 1fr) minmax(150px, 0.8fr);
    align-items: start;
    column-gap: 85px;
}

.founder-footer__brand {
    width: 100%;
    max-width: 380px;
}

.founder-footer__logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.founder-footer__logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 240px;
    max-height: 55px;
    object-fit: contain;
}

.founder-footer__description {
    max-width: 330px;
    margin: 25px 0 18px;
    color: #a3a3a8;
    font-size: 14px;
    line-height: 1.6;
}

.founder-footer__socials {
    display: flex;
    align-items: center;
    gap: 14px;
}

.founder-footer__social-link {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition:
        opacity .2s ease,
        transform .2s ease;
}

.founder-footer__social-link:hover {
    opacity: .75;
    transform: translateY(-1px);
}

.founder-footer__social-icon {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
    object-fit: contain;
}

.founder-footer__column {
    width: 100%;
}

.founder-footer__heading {
    margin: 0 0 20px;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 600;
    line-height: 1.3;
}

.founder-footer__menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.founder-footer__menu li {
    margin: 0;
    padding: 0;
}

.founder-footer__menu a {
    color: #acacb1 !important;
    font-size: 14px;
    line-height: 1.35;
    text-decoration: none !important;
    transition:
        color .2s ease,
        transform .2s ease;
}

.founder-footer__menu a:hover,
.founder-footer__menu a:focus {
    color: #ffffff !important;
    transform: translateX(2px);
}

.founder-footer__divider {
    width: 100%;
    height: 1px;
    margin: 60px 0 25px;
    background: rgba(255, 255, 255, 0.09);
}

.founder-footer__bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-footer__copyright {
    margin: 0;
    color: #50535b;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
}

@media (max-width: 1024px) {
    .founder-footer__top {
        grid-template-columns:
            1.5fr 1fr 1fr .8fr;
        column-gap: 40px;
    }
}

@media (max-width: 767px) {
    .founder-footer {
        padding: 52px 0 25px;
    }

    .founder-footer__top {
        grid-template-columns:
            1fr 1fr;
        gap: 42px 32px;
    }

    .founder-footer__brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .founder-footer__divider {
        margin: 45px 0 22px;
    }
}

@media (max-width: 520px) {
    .founder-footer__top {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .founder-footer__brand {
        grid-column: auto;
    }

    .founder-footer__logo {
        max-width: 190px;
    }
}

body.founder-page .founder-footer__heading {
    color: #ffffff !important;
}

body.founder-page .founder-footer__menu a,
body.founder-page .founder-footer__menu a:link,
body.founder-page .founder-footer__menu a:visited {
    color: #acacb1 !important;
}

body.founder-page .founder-footer__menu a:hover,
body.founder-page .founder-footer__menu a:focus {
    color: #ffffff !important;
}

/* =========================================================
   LANGUAGE SWITCHER - FUNCTIONAL LINKS
========================================================= */

.founder-header__language {
    text-decoration: none !important;
}

.founder-header__language:visited {
    color: #8c8d91;
}

.founder-header__language.active,
.founder-header__language.active:visited {
    color: #ffffff !important;
}

.founder-header__language:hover,
.founder-header__language:focus {
    color: #ffffff !important;
}


/* =========================================================
   FAQ SINGLE-OPEN POLISH
========================================================= */

.founder-faq__item {
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.founder-faq__item[open] {
    background: #1b1b20;
    border-color: rgba(255, 255, 255, 0.07);
}

.founder-faq__item[open] .founder-faq__question {
    color: #ffffff !important;
}

.founder-faq__item[open] .founder-faq__arrow {
    transform: rotate(180deg);
}