.dispatch-hero {
    position: relative;
    padding: 80px 0 88px;
    background:
        radial-gradient(circle at 82% 12%, rgba(246, 252, 255, 0.76) 0, rgba(246, 252, 255, 0.24) 34%, transparent 52%),
        linear-gradient(118deg, var(--primary) 0%, var(--primary) 70%, #F6FCFF 100%);
    color: #fff;
    overflow: hidden;
}

.dispatch-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, rgba(255,255,255,.1) 0 1px, transparent 1px 18px);
    pointer-events: none;
}

.dispatch-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, .95fr);
    gap: 56px;
    align-items: center;
}

.dispatch-kicker {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 14px;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    font-size: 13px;
    font-weight: 800;
}

.dispatch-copy .bevel-pill,
.dispatch-cta .bevel-pill {
    margin-bottom: 16px;
}

.dispatch-copy h1 {
    max-width: 760px;
    margin-bottom: 20px;
    font-size: clamp(40px, 5.4vw, 68px);
    line-height: 1.05;
}

.dispatch-copy p {
    max-width: 650px;
    margin-bottom: 28px;
    color: rgba(255,255,255,.86);
    font-size: 18px;
}

.dispatch-actions,
.dispatch-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.dispatch-btn {
    min-width: 190px;
}

.dispatch-proof {
    margin-top: 26px;
}

.dispatch-proof span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.86);
    font-size: 13px;
    font-weight: 700;
}

.dispatch-product {
    padding: 22px;
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 18px;
    background: rgba(246,252,255,.94);
    box-shadow: 0 34px 44px rgba(0,0,0,.22);
}

.product-topbar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    color: var(--text-light);
    font-weight: 700;
}

.product-topbar strong {
    color: var(--primary);
}

.product-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 14px;
}

.product-panel {
    padding: 18px;
    border: 1px solid #dbe7ef;
    border-radius: 14px;
    background: #fff;
    color: var(--text);
}

.product-panel-main {
    grid-row: span 2;
}

.panel-heading {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.job-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid #edf2f6;
}

.job-row strong,
.job-row span,
.job-row em {
    display: block;
}

.job-row span {
    color: var(--text-light);
    font-size: 12px;
}

.job-row em {
    color: var(--primary);
    font-style: normal;
    font-weight: 800;
}

.job-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--primary);
}

.job-dot.yellow {
    background: var(--accent);
}

.metric-label {
    color: var(--text-light);
    font-size: 13px;
    font-weight: 700;
}

.metric-value {
    display: block;
    margin: 6px 0 12px;
    color: var(--primary);
    font-size: 28px;
}

.mini-chart {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 62px;
}

.mini-chart span {
    width: 100%;
    border-radius: 8px 8px 0 0;
    background: var(--primary);
}

.crew-stack {
    display: flex;
    margin-top: 16px;
}

.crew-stack span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-right: -8px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
}

.dispatch-section {
    padding: 90px 0;
}

.dispatch-section h2,
.dispatch-band h2,
.dispatch-cta h2 {
    max-width: 780px;
    margin: 0 auto 14px;
    color: #1a1a2e;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    text-align: center;
}

.dispatch-subtitle {
    max-width: 760px;
    margin: 0 auto 46px;
    color: var(--text-light);
    font-size: 17px;
    text-align: center;
}

.dispatch-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.dispatch-feature-grid article,
.workflow-step {
    padding: 26px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
}

.dispatch-feature-grid span {
    color: var(--primary);
    font-weight: 800;
}

.dispatch-feature-grid h3,
.workflow-step strong {
    display: block;
    margin: 10px 0;
    color: #1a1a2e;
    font-size: 20px;
}

.dispatch-feature-grid p,
.workflow-step p,
.dispatch-band p,
.dispatch-cta p {
    color: var(--text-light);
}

.dispatch-band {
    padding: 82px 0;
    background: #f6fcff;
}

.dispatch-band .dispatch-kicker {
    border-color: #c9e5f5;
    background: #fff;
    color: var(--primary);
}

.dispatch-band-inner {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 48px;
    align-items: center;
}

.dispatch-band h2,
.dispatch-band p {
    margin-left: 0;
    text-align: left;
}

.dispatch-band p {
    font-size: 18px;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.dispatch-cta {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 72%, #F6FCFF 100%);
}

.dispatch-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.dispatch-cta h2,
.dispatch-cta p {
    margin-left: 0;
    color: #fff;
    text-align: left;
}

.dispatch-cta p {
    max-width: 680px;
    color: rgba(255,255,255,.82);
}

.dispatch-cta .btn-cta {
    border: 2px solid rgba(255, 217, 54, 0.58);
    background: rgba(255, 255, 255, 0.12);
    color: var(--accent);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.dispatch-cta .btn-cta:hover {
    background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 1024px) {
    .dispatch-hero-inner,
    .dispatch-band-inner {
        grid-template-columns: 1fr;
    }

    .dispatch-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .workflow-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .dispatch-hero {
        padding: 70px 0 62px;
    }

    .dispatch-hero-inner,
    .dispatch-product,
    .dispatch-cta-inner {
        display: block;
    }

    .dispatch-product {
        margin-top: 34px;
        padding: 14px;
    }

    .product-grid,
    .dispatch-feature-grid,
    .workflow-grid {
        grid-template-columns: 1fr;
    }

    .dispatch-actions {
        flex-direction: column;
    }

    .dispatch-btn,
    .dispatch-cta .btn {
        width: 100%;
    }
}
