.hero h1 {
    font-size: clamp(46px, 4.5vw, 64px);
}

.hero-title-line,
.hero-description-line {
    display: block;
    white-space: nowrap;
}

.hero h1 .hero-title-line {
    color: var(--ink);
}

.hero h1 .hero-title-blue {
    color: var(--blue);
}

.hero-copy > p {
    font-size: 16px;
    line-height: 1.9;
}

.hero-actions {
    flex-wrap: nowrap;
}

.hero-actions .button-large {
    flex: 0 0 auto;
    padding-right: 17px;
    padding-left: 17px;
    white-space: nowrap;
}

.showcase-copy .showcase-title-nowrap {
    font-size: clamp(28px, 2.5vw, 34px);
    white-space: nowrap;
}

.section-heading .section-title-nowrap,
.download-title-line {
    display: block;
    white-space: nowrap;
}

.mini-program-section {
    width: min(1200px, calc(100% - 48px));
    margin: 8px auto 70px;
    display: grid;
    grid-template-columns: minmax(340px, .85fr) minmax(560px, 1.15fr);
    gap: 64px;
    align-items: center;
    padding: 58px 64px;
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 92% 14%, rgba(58, 205, 255, .32), transparent 30%),
        linear-gradient(135deg, #10215a, #2357b7 62%, #047f9a);
    box-shadow: 0 28px 70px rgba(19, 57, 126, .18);
}

.mini-program-section .eyebrow {
    color: #dbeafe;
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .18);
}

.mini-program-copy h2 {
    margin: 18px 0 12px;
    font-size: clamp(30px, 3.5vw, 46px);
    line-height: 1.2;
    letter-spacing: -.035em;
}

.mini-program-copy p {
    margin: 0;
    color: #d3def1;
    font-size: 16px;
}

.mini-program-copy ul {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 18px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
    font-weight: 700;
}

.mini-program-copy li::before {
    content: "✓";
    margin-right: 7px;
    color: #86efac;
}

.mini-program-demo-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin-top: 26px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 12px;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    font-size: 14px;
    font-weight: 800;
    transition: .2s ease;
}

.mini-program-demo-link:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .2);
}

.mini-program-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 12px;
    align-items: center;
}

.mini-program-flow div {
    min-width: 0;
    padding: 24px 18px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 18px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
}

.mini-program-flow span,
.mini-program-flow strong,
.mini-program-flow small {
    display: block;
}

.mini-program-flow span {
    margin-bottom: 18px;
    color: #93c5fd;
    font-size: 13px;
    font-weight: 900;
}

.mini-program-flow strong {
    white-space: nowrap;
    font-size: 17px;
}

.mini-program-flow small {
    margin-top: 5px;
    color: #cbdaf0;
    font-size: 12px;
    line-height: 1.5;
}

.mini-program-flow i {
    color: rgba(255, 255, 255, .65);
    font-style: normal;
}

@media (max-width: 1020px) {
    .mini-program-section {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 680px) {
    .hero-title-line {
        white-space: nowrap;
    }

    .hero-description-line {
        white-space: normal;
    }

    .hero-actions .button-large {
        width: 100%;
    }

    .showcase-copy .showcase-title-nowrap {
        font-size: clamp(21px, 6.4vw, 26px);
    }

    .section-heading .section-title-nowrap {
        font-size: clamp(23px, 7vw, 32px);
    }

    .mini-program-section {
        width: calc(100% - 28px);
        margin-bottom: 38px;
        padding: 38px 22px;
        border-radius: 22px;
    }

    .mini-program-flow {
        grid-template-columns: 1fr;
    }

    .mini-program-flow i {
        display: none;
    }
}
