.home-band {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 4rem 0;
}

.vip-home-page .home-band {
    padding: 1.5rem 0;
}

.home-band--hero {
    background: linear-gradient(180deg, #ffffff 0%, #f2f4f8 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding-top: 2.5rem;
}

.home-band--white {
    background: #ffffff;
}

.home-band--light {
    background: #f6f7f9;
}

.home-band--muted {
    background: #edf0f2;
}

.home-band--dark {
    background: #0e1016;
    color: #f5f7fb;
}

.home-band--ink {
    background: linear-gradient(135deg, #090a0f, #161a23);
}

.home-hero,
.home-section {
    margin: 0 auto;
    padding: 4rem 1.5rem;
    max-width: 800px;
}

.vip-home-page .home-section {
    padding: 2rem 1.5rem;
}

.home-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: center;
    padding-top: 1rem;
}

.home-hero__eyebrow,
.home-section__eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ff8e3c;
    font-weight: 600;
}

.home-hero__tagline,
.home-section__summary {
    font-size: 1.125rem;
    color: #5d6d7e;
    line-height: 1.6;
    margin-top: 1rem;
}

.home-section__summary a {
    color: #fc7e0f;
    text-decoration: none;
}

.home-section__summary a:hover {
    text-decoration: underline;
}

.home-hero__actions,
.cta-panel .home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.home-button {
    border-radius: 999px;
    padding: 0.85rem 1.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-button--primary {
    background: linear-gradient(135deg, #ff8e3c, #ff5f6d);
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 143, 60, 0.3);
}

.home-button--ghost {
    border: 1px solid rgba(255, 143, 60, 0.5);
    color: #ff8e3c;
}

.home-button:hover {
    transform: translateY(-2px);
}

.home-hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.home-hero__stats > div {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.home-hero__stats dt {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9ea7b3;
    margin-bottom: 0.35rem;
    width: 100%;
    text-align: center;
}

.home-hero__stats dd {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #2d3142;
    width: 100%;
    text-align: center;
}

.home-hero__visual {
    position: relative;
    padding: 2rem;
    border-radius: 30px;
    background: radial-gradient(circle at top left, #ffe8d9, #f5f7fb);
    overflow: hidden;
    min-height: 360px;
}

.home-hero__waveform {
    display: flex;
    gap: 0.6rem;
    align-items: flex-end;
    height: 180px;
}

.home-hero__waveform span {
    flex: 1;
    border-radius: 6px;
    background: linear-gradient(180deg, rgba(255, 110, 84, 0.85), rgba(255, 142, 60, 0.65));
    animation: pulse 1.4s ease-in-out infinite;
}

.home-hero__waveform span:nth-child(odd) {
    animation-delay: 0.3s;
}

.home-hero__waveform span:nth-child(3n) {
    animation-delay: 0.6s;
}

.home-hero__card {
    margin-top: 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(38, 44, 65, 0.12);
    padding: 1.5rem;
}

.home-hero__card-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #9ea7b3;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.home-hero__card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3142;
    margin-bottom: 0.5rem;
}

.home-hero__card-meta {
    font-size: 0.85rem;
    color: #5d6d7e;
}

.home-section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.vip-home-page .home-section__header {
    margin-bottom: 1.5rem;
}

.home-section--dark,
.home-section--dark h2,
.home-section--dark p,
.home-section--dark li {
    color: #f5f7fb;
}

.home-section--dark .home-section__eyebrow {
    color: #ffb066;
}

.home-section--dark li::before {
    background: #ffb066;
}

.feature-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 15px 35px rgba(20, 24, 44, 0.08);
    border: 1px solid rgba(255, 143, 60, 0.1);
}

.feature-card h3 {
    margin-top: 0;
    color: #2d3142;
    line-height: 1;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #5d6d7e;
    line-height: 1.5;
}

.insight-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.insight-section__text ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
}

.insight-section__text li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
}

.insight-section__text li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: #ff8e3c;
}

.insight-graphic {
    background: linear-gradient(180deg, #1f2251, #0b0d27);
    border-radius: 30px;
    padding: 2rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.insight-graphic__chart {
    height: 160px;
    border-radius: 20px;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.15),
        rgba(255, 255, 255, 0.15) 2px,
        transparent 2px,
        transparent 30px
    );
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.insight-graphic__panel {
    background: rgba(13, 15, 41, 0.75);
    border-radius: 16px;
    padding: 1.5rem;
}

#homepage-top-mentions-link {
    color: #ffb16f;
    text-decoration: none;
}

#homepage-top-mentions-link:hover,
#homepage-top-mentions-list a:hover {
    text-decoration: underline;
}

#homepage-top-mentions-list a {
    color: #fff;
    text-decoration: none;
}

.insight-graphic__panel ul {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}

.insight-graphic__panel li {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
    font-weight: 600;
}

.workflow-section {
    background: linear-gradient(180deg, #faf7f4, #fff);
    border-radius: 30px;
}

.workflow-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.workflow-item {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 15px 30px rgba(25, 18, 7, 0.08);
    min-height: 150px;
}

.workflow-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d3142;
}

.workflow-item span {
    color: #5d6d7e;
}

.workflow-item__image {
    display: block;
    width: 100%;
    max-width: 180px;
    min-height: 146px;
    object-fit: contain;
    margin: 1rem auto;
    border-radius: 8px;
}

.home-grid main {
    margin-top: 2rem;
}

.partial-loader {
    grid-column: 1 / -1;
    text-align: center;
}

.js-animate-tile {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.js-animate-tile.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.load-more-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    margin: 1.5rem 0;
    background: #f0f1f3;
    color: #5d6d7e;
    text-align: center;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
}

.load-more-link:hover {
    background: #e4e6e9;
    color: #2d3142;
}

.cta-section {
    padding-bottom: 6rem;
}

.cta-panel {
    background: linear-gradient(120deg, #2d3142, #121530);
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    color: #fff;
    box-shadow: 0 30px 60px rgba(10, 12, 31, 0.4);
}

.cta-panel p {
    color: rgba(255, 255, 255, 0.85);
}

.js-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-animate[data-animation="fade-up"] {
    transform: translateY(40px);
}

.js-animate[data-animation="slide-up"] {
    transform: translateY(60px);
}

.js-animate[data-animation="fade"] {
    transform: translateY(20px);
}

.js-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0% {
        transform: scaleY(0.6);
    }
    50% {
        transform: scaleY(1);
    }
    100% {
        transform: scaleY(0.6);
    }
}

@media (max-width: 768px) {
    .home-band {
        padding: 3rem 0;
    }

    .home-hero,
    .home-section {
        padding: 3rem 1rem;
    }

    .home-hero__actions,
    .cta-panel .home-hero__actions {
        flex-direction: column;
    }

    .cta-panel {
        padding: 2.5rem 1.5rem;
    }
}
