.token__launch-hero {
    background: url("../assets/img/token-launch-platform-bg.png");
    padding: 84px 8px 94px;
    overflow: hidden;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.widget-img-wrapper {
    max-width: 452px;
}

.token__launch-hero-content {
    margin-top: 60px;
    width: 500px;
}

.self-hosted {
    background: url("../assets/img/self-hosted-grid.png"), #1570ef;
    padding: 96px 8px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: -5%;
}

.token__launch__platform-contact-btn {
    height: 60px;
}


@media (max-width: 1600px) {
    .self-hosted {
        background-position: -12%;
    }
}

@media (max-width: 1500px) {
    .self-hosted {
        background-position: -24%;
    }
}

@media (max-width: 1400px) {
    .self-hosted {
        background-position: -36%;
    }
}

@media (max-width: 1300px) {
    .self-hosted {
        background-position: -55%;
    }
}

@media (max-width: 1200px) {
    .token__launch-hero {
        background-size: cover;
    }
}

.token__launch-hero__title {
    font-family: "Nobile";
    font-weight: 500;
    font-size: 45px;
    line-height: 58px;
    letter-spacing: 2%;
    color: #101828;
}

.token__launch-hero__desc {
    font-family: "Inter";
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #667085;
}

.token-launch__actions {
    margin-top: 48px;
}

/* Shared button base */
.token-launch__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    text-decoration: none;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
    cursor: pointer;
}

.token-launch__btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* Primary: white bg, blue text */
.token-launch__btn--primary {
    background-color: #ffffff;
    color: #1570ef;
    border: 2px solid #ffffff;
}

.token-launch__btn--primary:hover {
    color: #1570ef;
}

/* Outline: transparent bg, white border & text */
.token-launch__btn--outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.75);
}

.token-launch__btn--outline:hover {
    color: #ffffff;
    border-color: #ffffff;
}

.own-brand {
    padding: 48px 8px 96px;
}

.own-brand__subtitle {
    color: #434656;
}

.own-brand__card {
    background: #f2f4f7;
    border-radius: 24px;
    backdrop-filter: blur(47.5px);
    padding: 32px;
    max-width: 521px;
    height: stretch;
    flex: 1;
}

.own-brand__card-title {
    font-family: "Inter";
    font-size: 20px;
    letter-spacing: 0%;
    color: #101828;
}

.own-brand__card-desc {
    font-family: "Inter";
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #667085;
    margin-top: 8px;
}

/* ================================================
   Presale Environment Section
   ================================================ */

.presale-environment {
    background-color: #fff;
    padding: 96px 8px;
}

/* Section Header */
.presale-environment__header {
    margin-bottom: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.presale-environment__title {
    margin-bottom: 16px;
}

.presale-environment__subtitle {
    margin-bottom: 0;
}

/* ================================================
   Feature Cards
   ================================================ */

.presale-environment__cards {
    margin-bottom: 0;
}

.presale-environment__card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #d0d5dd;
    backdrop-filter: blur(41.599998474121094px);

    border-radius: 16px;
    padding: 27px;
    display: flex;
    flex-direction: column;
    min-height: 340px;
    position: relative;
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
    height: stretch;
}

.presale-environment__card:hover {
    box-shadow: 0 4px 16px rgba(16, 24, 40, 0.08);
    transform: translateY(-2px);
}

/* Card Icon Container */
.presale-environment__card-icon {
    width: 52px;
    height: 52px;
    background-color: #eff8ff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.presale-environment__card-icon svg {
    width: 24px;
    height: 24px;
}

/* Card Content */
.presale-environment__card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: auto;
}

.presale-environment__card-title {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0a2158;
    margin: 0 0 12px 0;
    line-height: 20px;
}

.presale-environment__card-desc {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #475467;
    line-height: 24px;
    margin: 0;
}

/* Card Border and Footer */
.presale-environment__card-border {
    border-top: 1px solid rgba(34, 106, 229, 0.14);
    margin-top: 48px;
    padding-top: 11px;
    display: flex;
    align-items: flex-start;
}

.presale-environment__card-footer-text {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1570ef;
    line-height: 24px;
    margin: 0;
}

/* ================================================
   Ownership Section
   ================================================ */

.ownership {
    background-color: #f9fafb;
    padding: 96px 8px;
}

/* Section Header */
.ownership__header {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ownership__title {
    margin-bottom: 16px;
}

.ownership__subtitle {
    margin-bottom: 0;
}

/* Main Card Container */
.ownership__card {
    background-color: #ffffff;
    border: 1px solid #eaecf0;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0px 1px 1px rgba(16, 24, 40, 0.05);
}

.ownership__card-intro {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #475467;
    line-height: 24px;
    margin-bottom: 24px;
    margin-top: 0;
}

/* Features Grid */
.ownership__features {
    margin-bottom: 24px;
}

/* Feature Card */
.ownership__feature-card {
    background: linear-gradient(to bottom, #f9fbff, #eef5ff);
    border: 1px solid rgba(35, 118, 239, 0.08);
    border-radius: 16px;
    padding: 18px;
    min-height: 148px;
    box-shadow: 0px 1px 1px rgba(16, 24, 40, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.ownership__feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 12px rgba(16, 24, 40, 0.08);
}

.ownership__feature-title {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #101828;
    margin: 0 0 10px 0;
    line-height: normal;
}

.ownership__feature-desc {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #475467;
    line-height: 24px;
    margin: 0;
    flex-grow: 1;
}

.ownership__feature-highlight {
    color: #1570ef;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
}

/* Card Footer */
.ownership__card-footer {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #355aa8;
    line-height: 24px;
    text-align: center;
    margin: 0;
}

/* ================================================
   Launch Support Section
   ================================================ */

.launch-support {
    background-color: #ffffff;
    padding: 96px 8px;
}

/* Section Header */
.launch-support__header {
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.launch-support__title {
    margin-bottom: 16px;
}

.launch-support__subtitle {
    margin-bottom: 0;
    max-width: 844px;
}

/* Content Layout */
.launch-support__content {
    margin-bottom: 0;
}

.launch-support__image-wrapper {
    height: stretch;
}

/* Image Box (Left Column) */
.launch-support__image-box {
    background-image: url("../assets/img/support-bg.png");
    background-size: cover;
    border: 1px solid #eaecf0;
    border-radius: 24px;
    padding: 24px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.launch-support__image-title {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    line-height: 32px;
    position: relative;
    z-index: 1;
}

.launch-support__image-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 24px;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Features List (Right Column) */
.launch-support__features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Feature Item */
.launch-support__feature-item {
    padding: 24px;
    background-color: #f9fafb;
    border-radius: 12px;
    border: 1px solid #eaecf0;
    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.launch-support__feature-item:hover {
    background-color: #f3f4f6;
    box-shadow: 0px 2px 8px rgba(16, 24, 40, 0.06);
}

.launch-support__feature-title {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #101828;
    margin: 0 0 8px 0;
    line-height: 24px;
}

.launch-support__feature-desc {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #475467;
    line-height: 24px;
    margin: 0;
}

/* ================================================
   Post-Sale Section
   ================================================ */

.post-sale {
    background-color: #fff;
    padding: 96px 8px;
}

/* Section Header */
.post-sale__header {
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.post-sale__title {
    margin-bottom: 16px;
}

.post-sale__subtitle {
    margin-bottom: 0;
    max-width: 844px;
}

/* Cards Grid */
.post-sale__cards {
    margin-bottom: 0;
}

/* Post-Sale Card */
.post-sale__card {
    background-color: #f9fafb;
    border: 1px solid #eaecf0;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 1px 1px rgba(16, 24, 40, 0.05);
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.post-sale__card:hover {
    box-shadow: 0px 4px 12px rgba(16, 24, 40, 0.08);
    transform: translateY(-2px);
}

.post-sale__card-title {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #101828;
    margin: 0 0 12px 0;
    line-height: 24px;
}

.post-sale__card-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #475467;
    line-height: 24px;
    margin: 0 0 16px 0;
}

.post-sale__card-desc {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #475467;
    line-height: 24px;
    margin: 0;
}

/* ================================================
   Flexibility Section
   ================================================ */

.flexibility {
    background-color: #fff;
    padding: 112px 8px;
}

/* Section Header */
.flexibility__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 44px;
}

.flexibility__title {
    font-family: "Nobile", serif;
    font-weight: 500;
    color: #101828;
    margin: 0 0 16px 0;
    letter-spacing: 0.72px;
}

.flexibility__subtitle {
    max-width: 844px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    color: #475467;
    margin: 0;
}

/* Cards Grid */
.flexibility__cards {
    margin-bottom: 0;
}

/* Flexibility Card */
.flexibility__card {
    background-color: #ffffff;
    border: 1px solid #eaecf0;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 280px;
    box-shadow:
        0px 1px 1.5px rgba(16, 24, 40, 0.1),
        0px 1px 1px rgba(16, 24, 40, 0.06);
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.flexibility__card:hover {
    box-shadow: 0px 4px 12px rgba(16, 24, 40, 0.12);
    transform: translateY(-2px);
}

/* Card Number */
.flexibility__card-number {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1570ef;
    line-height: 20px;
    margin: 0 0 16px 0;
}

/* Card Title */
.flexibility__card-title {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #101828;
    line-height: 20px;
    margin: 0 0 16px 0;
}

/* Card Description */
.flexibility__card-desc {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #475467;
    line-height: 24px;
    margin: 0;
    flex-grow: 1;
}

.self-hosted__content {
    gap: 32px;
}

.self-hosted__title {
    max-width: 450px;
}

.self-hosted__desc {
    color: #f5faff;
}

.self-hosted__features,
.self-hosted__desc {
    max-width: 515px;
}

.self-hosted__desc-title {
    font-size: 16px;
    font-family: "Inter", sans-serif;
}

.self-hosted__desc-text {
    color: #b2ddff;
    font-size: 14px;
    max-width: 465px;
}

.wheel-img {
    max-width: 492px;
    height: fit-content;
}

.launchpad__wrapper {
    padding: 100px 110px;
    background: url("../assets/img/launchpad-bg.png"), #1570ef;
    border-radius: 48px;
    background-size: cover;
}

.launchpad__cards {
    margin-top: 100px;
}

.launchpad__card {
    background: #ffffff;
    border: 1px solid #c4c5d90d;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 21px;
    flex-direction: column;
    height: 100%;
}

/* Card Icon Container */
.launchpad__card-icon {
    width: 48px;
    height: 48px;
    background-color: #1570ef1a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.launchpad__card-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    color: #191c1e;
    font-family: "Inter";
}

.launchpad__card-desc {
    color: #434656;
}

/* ================================================
   Responsive Design
   ================================================ */

@media (max-width: 1600px) {
    .launchpad__wrapper {
        padding: 48px 32px;
    }
}

@media (max-width: 991px) {
    .token__launch-hero-wrapper {
        align-items: center;
    }

    .token__launch-hero {
        background: url("../assets/img/token-launch-platform-bg-mob.png");
        background-size: cover;
        background-repeat: no-repeat;
    }

    .token__launch-hero {
        padding-bottom: 25px;
        padding-top: 80px;
    }

    .token__launch-hero-content {
        margin: 0;
        width: 100%;
    }

    .token__launch-hero__title {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 16px !important;
    }

    .token__launch-hero__desc {
        font-size: 16px;
        line-height: 24px;
    }

    .token-launch-cube {
        max-height: 320px;
    }

    .token-launch__action-btn {
        justify-content: center;
    }

    .widget-img-wrapper {
        margin-top: 42px;
        margin-bottom: -138px;
    }

    .token-launch__actions {
        margin-top: 24px;
        justify-content: center;
    }

    .launch-support {
        padding: 60px 8px;
    }

    .own-brand__card {
        padding: 32px 24px;
        max-width: unset;
    }

    .own-brand {
        padding: 48px 8px 96px;
    }

    .launch-support__header {
        margin-bottom: 48px;
    }

    .launchpad__wrapper {
        padding: 48px 20px 24px;
        border-radius: 0;
        background: #175cd3;
    }

    .launch-support__title {
        font-size: 28px;
    }

    .launch-support__image-box {
        min-height: 480px;
        padding: 40px;
    }

    .launch-support__features {
        gap: 16px;
        margin-top: 24px;
    }

    .post-sale {
        padding: 48px 8px 56px;
    }

    .post-sale__header {
        margin-bottom: 24px;
    }

    .post-sale__title {
        font-size: 28px;
    }

    .presale-environment {
        padding: 48px 8px 56px;
    }

    .presale-environment__header {
        margin-bottom: 40px;
    }

    .presale-environment__title {
        font-size: 28px;
    }

    .presale-environment__card {
        min-height: auto;
        margin-top: 16px;
        padding: 16px;
    }

    .ownership {
        padding: 48px 8px 56px;
        background-color: #fff;
    }

    .ownership__header {
        margin-bottom: 40px;
    }

    .ownership__title {
        font-size: 28px;
    }

    .flexibility {
        padding: 60px 8px;
    }

    .flexibility__header {
        margin-bottom: 40px;
    }

    .flexibility__cards {
        row-gap: 0;
    }

    .self-hosted__title {
        max-width: none;
        text-align: center;
    }

    .self-hosted__features,
    .self-hosted__desc,
    .self-hosted__desc-text {
        max-width: none;
    }

    .wheel-img {
        max-width: 332px;
        margin-bottom: 24px;
    }

    .self-hosted {
        padding: 60px 8px;
        background: linear-gradient(360deg, #4a91f3 0%, #1570ef 100%);
        border-radius: 0;
    }

    .launchpad__cards {
        margin-top: 48px;
    }

    .token__launch__platform-contact-btn {
        height: 44px;
    }
}

@media (max-width: 767px) {
    .self-hosted {
        padding: 48px 8px;
    }

    .launch-support__features {
        gap: 24px;
    }

    .wheel-img {
        max-width: 327px;
        margin-bottom: 32px;
    }

    .self-hosted__desc {
        text-align: center;
    }

    .flexibility,
    .launch-support {
        padding: 48px 8px 56px;
    }

    .launch-support__header {
        margin-bottom: 40px;
    }

    .launch-support__title {
        font-size: 24px;
    }

    .launch-support__image-box {
        min-height: 308px;
        padding: 14px;
        margin-bottom: 24px;
        background-size: contain;
        background-position: bottom;
        background-color: #1570ef;
        background-repeat: no-repeat;
    }

    .launch-support__image-title {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 8px;
    }

    .launch-support__image-subtitle {
        font-size: 14px;
        line-height: 20px;
    }

    .launch-support__feature-item {
        padding: 16px 24px;
    }

    .launch-support__feature-title {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .post-sale__title {
        font-size: 24px;
    }

    .post-sale__card {
        padding: 24px;
        border-radius: 16px;
    }

    .post-sale__card-title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .post-sale__card-subtitle {
        margin-bottom: 16px;
    }

    .presale-environment__header {
        margin-bottom: 32px;
    }

    .presale-environment__title {
        font-size: 24px;
    }

    .presale-environment__subtitle {
        font-size: 14px;
        line-height: 20px;
    }

    .presale-environment__card {
        padding: 16px;
        border-radius: 16px;
    }

    .ownership__header {
        margin-bottom: 32px;
    }

    .ownership__title {
        font-size: 24px;
    }

    .ownership__card {
        padding: 0;
        border-radius: 0;
        background-color: #fff;
        border: none;
        box-shadow: none;
    }

    .ownership__card-intro {
        text-align: center;
    }

    .ownership__feature-card {
        padding: 16px;
        min-height: auto;
    }

    .cube-img {
        height: auto;
    }

    .flexibility__header {
        margin-bottom: 40px;
    }

    .flexibility__title {
        margin-bottom: 12px;
    }

    .flexibility__card {
        padding: 24px;
        min-height: auto;
        border-radius: 16px;
    }

    .flexibility__card-number {
        margin-bottom: 16px;
    }

    .flexibility__card-title {
        margin-bottom: 16px;
    }

    .self-hosted__content {
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .token__launch-hero {
        background-size: cover;
    }
}

.contact-cta-banner__desc {
    font-family: "Nobile" !important;
}