.hero-banner {
    position: relative;
    padding: 6.25rem 1.5rem 4.5rem;
    overflow: clip;
}

.hero-banner__background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-banner__background::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(248, 248, 239, 0.7), rgba(215, 228, 153, 0.42)),
        radial-gradient(circle at left center, rgba(255, 255, 255, 0.4), transparent 44%);
}

.hero-banner__background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
    transform: scale(1.02);
}

.hero-banner::before,
.hero-banner::after {
    content: "";
    position: absolute;
    inset: 4% auto auto -12%;
    width: 74%;
    height: 28%;
    border-top: 2px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    transform: rotate(7deg);
    pointer-events: none;
}

.hero-banner::after {
    inset: auto auto -18% -18%;
    width: 58%;
    height: 54%;
    border-top: 0;
    border-right: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    transform: rotate(12deg);
}

.hero-banner__shell {
    position: relative;
    z-index: 1;
    width: min(100%, var(--container-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(2rem, 4vw, 3.75rem);
}

.hero-banner__content {
    min-width: 0;
    max-width: 41rem;
    padding-top: 1rem;
}

.hero-banner__eyebrow {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(6, 8, 29, 0.62);
}

.hero-banner__title {
    margin: 0;
    display: grid;
    gap: 0.15em;
    font-size: var(--section-title-font-size);
    font-weight: var(--section-title-font-weight);
    font-style: normal;
    line-height: var(--section-title-line-height);
    letter-spacing: 0;
    text-wrap: balance;
    text-transform: uppercase;
}

.hero-banner__title-main,
.hero-banner__title-highlight {
    display: block;
}

.hero-banner__title-highlight {
    color: var(--color-highlight);
}

.hero-banner__summary {
    max-width: 39rem;
    margin: 1.9rem 0 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(6, 8, 29, 0.9);
}

.hero-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.25rem;
}

.hero-banner__media {
    position: relative;
    min-width: 0;
}

.hero-banner__media-frame {
    position: relative;
    overflow: hidden;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: var(--radius-panel);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 32px 54px rgba(89, 104, 28, 0.14);
    aspect-ratio: 1.34;
}

.hero-banner__media-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 20%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.3), transparent 40%);
    pointer-events: none;
}

.hero-banner__image,
.hero-banner__video,
.hero-banner__dashboard {
    width: 100%;
    height: 100%;
}

.hero-banner__image,
.hero-banner__video {
    object-fit: cover;
}

.hero-banner__dashboard {
    display: grid;
    grid-template-rows: 1.2rem 1fr;
    gap: 0;
    padding: 1.2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 245, 0.94));
}

.hero-banner__dashboard-topbar {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0 0.4rem;
}

.hero-banner__dashboard-topbar span {
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: rgba(239, 110, 91, 0.86);
}

.hero-banner__dashboard-topbar span:nth-child(2) {
    background: rgba(239, 193, 91, 0.9);
}

.hero-banner__dashboard-topbar span:nth-child(3) {
    background: rgba(118, 196, 95, 0.88);
}

.hero-banner__dashboard-body {
    display: grid;
    grid-template-columns: 9.5rem minmax(0, 1fr);
    gap: 1rem;
    min-height: 0;
    margin-top: 0.8rem;
}

.hero-banner__dashboard-sidebar {
    position: relative;
    border-radius: 1.25rem;
    background:
        linear-gradient(180deg, rgba(247, 249, 244, 1), rgba(242, 245, 238, 1)),
        linear-gradient(180deg, rgba(6, 8, 29, 0.05), rgba(6, 8, 29, 0.02));
    box-shadow: inset -1px 0 0 rgba(6, 8, 29, 0.06);
}

.hero-banner__dashboard-sidebar::before,
.hero-banner__dashboard-sidebar::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    height: 0.5rem;
    border-radius: 999px;
    background: rgba(10, 18, 38, 0.09);
    box-shadow:
        0 1.1rem 0 rgba(10, 18, 38, 0.07),
        0 2.2rem 0 rgba(10, 18, 38, 0.07),
        0 4.3rem 0 rgba(10, 18, 38, 0.07),
        0 5.4rem 0 rgba(10, 18, 38, 0.07),
        0 6.5rem 0 rgba(10, 18, 38, 0.07);
}

.hero-banner__dashboard-sidebar::before {
    top: 1.4rem;
}

.hero-banner__dashboard-sidebar::after {
    top: auto;
    bottom: 2rem;
    box-shadow:
        0 -1.1rem 0 rgba(10, 18, 38, 0.07),
        0 -2.2rem 0 rgba(10, 18, 38, 0.07);
}

.hero-banner__dashboard-main {
    display: grid;
    grid-template-rows: 4.25rem 11rem 4rem 1fr;
    gap: 0.9rem;
    min-height: 0;
}

.hero-banner__dashboard-balance {
    position: relative;
    border-radius: 1rem;
    background:
        linear-gradient(90deg, #0d6472 0 62%, #136d7d 62% 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent);
}

.hero-banner__dashboard-balance::before,
.hero-banner__dashboard-balance::after {
    content: "";
    position: absolute;
    left: 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
}

.hero-banner__dashboard-balance::before {
    top: 1rem;
    width: 5rem;
    height: 0.5rem;
}

.hero-banner__dashboard-balance::after {
    top: 1.9rem;
    width: 8rem;
    height: 0.95rem;
}

.hero-banner__dashboard-chart {
    position: relative;
    border-radius: 1rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 250, 247, 0.98)),
        linear-gradient(90deg, rgba(6, 8, 29, 0.04), rgba(6, 8, 29, 0));
    border: 1px solid rgba(11, 21, 42, 0.06);
}

.hero-banner__dashboard-chart::before,
.hero-banner__dashboard-chart::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    border-radius: 0.8rem;
}

.hero-banner__dashboard-chart::before {
    top: 1.4rem;
    height: 5rem;
    background:
        linear-gradient(90deg, #166a79 0 7%, transparent 7% 10%, #166a79 10% 15%, transparent 15% 18%, #166a79 18% 23%, transparent 23% 27%, #166a79 27% 32%, transparent 32% 36%, #166a79 36% 43%, transparent 43% 48%, #166a79 48% 52%, transparent 52% 57%, #166a79 57% 62%, transparent 62% 67%, #166a79 67% 72%, transparent 72% 77%, #166a79 77% 82%, transparent 82% 87%, #166a79 87% 92%, transparent 92% 100%),
        linear-gradient(180deg, transparent 0 68%, rgba(6, 8, 29, 0.05) 68% 70%, transparent 70% 100%);
    opacity: 0.96;
}

.hero-banner__dashboard-chart::after {
    bottom: 1.2rem;
    height: 2rem;
    background:
        linear-gradient(90deg, #68cf19 0 7%, transparent 7% 10%, #68cf19 10% 15%, transparent 15% 18%, #68cf19 18% 23%, transparent 23% 27%, #68cf19 27% 32%, transparent 32% 36%, #68cf19 36% 43%, transparent 43% 48%, #68cf19 48% 52%, transparent 52% 57%, #68cf19 57% 62%, transparent 62% 67%, #68cf19 67% 72%, transparent 72% 77%, #68cf19 77% 82%, transparent 82% 87%, #68cf19 87% 92%, transparent 92% 100%);
}

.hero-banner__dashboard-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.hero-banner__dashboard-cards span,
.hero-banner__dashboard-table {
    border-radius: 0.95rem;
    border: 1px solid rgba(11, 21, 42, 0.06);
    background: rgba(255, 255, 255, 0.88);
}

.hero-banner__dashboard-cards span {
    position: relative;
    min-height: 100%;
}

.hero-banner__dashboard-cards span::before,
.hero-banner__dashboard-cards span::after,
.hero-banner__dashboard-table::before,
.hero-banner__dashboard-table::after {
    content: "";
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    border-radius: 999px;
    background: rgba(6, 8, 29, 0.08);
}

.hero-banner__dashboard-cards span::before {
    top: 0.8rem;
    height: 0.42rem;
}

.hero-banner__dashboard-cards span::after {
    top: 1.65rem;
    width: 55%;
    height: 0.8rem;
}

.hero-banner__dashboard-table {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 249, 245, 0.92)),
        linear-gradient(90deg, rgba(6, 8, 29, 0.03), rgba(6, 8, 29, 0));
}

.hero-banner__dashboard-table::before {
    top: 0.9rem;
    height: 0.46rem;
}

.hero-banner__dashboard-table::after {
    top: 1.8rem;
    height: 0.46rem;
    box-shadow:
        0 1.55rem 0 rgba(6, 8, 29, 0.08),
        0 3.1rem 0 rgba(6, 8, 29, 0.08),
        0 4.65rem 0 rgba(6, 8, 29, 0.08);
}

@media (max-width: 1200px) {
    .hero-banner__shell {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-banner__content {
        max-width: none;
        padding-top: 0;
    }

    .hero-banner__media {
        max-width: 48rem;
    }
}

@media (max-width: 767px) {
    .hero-banner {
        padding: 3.5rem 1rem 3rem;
    }

    .hero-banner__summary {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-banner__actions {
        gap: 0.75rem;
    }

    .hero-banner__media-frame {
        aspect-ratio: 1.08;
    }

    .hero-banner__dashboard {
        padding: 0.8rem;
    }

    .hero-banner__dashboard-body {
        grid-template-columns: 4.8rem minmax(0, 1fr);
        gap: 0.65rem;
    }

    .hero-banner__dashboard-main {
        grid-template-rows: 3rem 7rem 3rem 1fr;
    }

    .hero-banner__dashboard-cards {
        gap: 0.5rem;
    }
}
