
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(500px, 0.88fr); gap: 46px; align-items: center; }
.hero h1 {
    margin: 16px 0 14px;
    font-size: 64px;
    line-height: 1.04;
    letter-spacing: 0;
}
.hero p { margin: 0 0 22px; font-size: 18px; max-width: 680px; color: var(--muted); }
.site-footer,
main > .section:not(:first-of-type) {
    content-visibility: auto;
    contain-intrinsic-size: 1px 960px;
}
.pricing-highlight {
    background: linear-gradient(135deg, var(--night), #123858);
    color: #eaf3ff;
}
.price-big { margin: 12px 0; font-size: 42px; }
.auth-shell {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 28px;
    align-items: start;
}
.auth-shell-compact {
    grid-template-columns: minmax(0, 640px) minmax(280px, 360px);
    justify-content: center;
}
.auth-shell-compact .auth-card {
    width: 100%;
    max-width: 640px;
}
.auth-shell-compact .notice {
    width: 100%;
    max-width: 360px;
}
.auth-primary-actions {
    align-items: center;
    gap: 14px;
}
.auth-primary-actions .button {
    flex: 0 0 auto;
}
.auth-primary-actions .text-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}
.auth-legal-row {
    margin-top: 10px;
}
.auth-legal-row .muted {
    display: block;
}
.altcha-shell {
    display: block;
    min-height: 78px;
    padding: 8px 0;
}
.altcha-shell altcha-widget {
    width: 100%;
    max-width: 420px;
}
.site-footer {
    margin-top: 56px;
    padding: 52px 0 28px;
    background: var(--night);
    color: #dfe9f1;
}
.footer-brand-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.footer-brand-head h3 {
    margin: 0;
}
.footer-brand-logo {
    width: 44px;
    height: 44px;
    display: block;
    object-fit: contain;
    border-radius: 14px;
}
.footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
.footer-links li + li { margin-top: 10px; }
.footer-meta { margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.08); color: rgba(223,233,241,0.74); }
.support-fab-shell {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 34;
}
.support-fab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 18px 0 14px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: #fff;
    box-shadow: 0 24px 40px rgba(37,99,235,0.26);
    cursor: pointer;
}
.support-fab-icon {
    min-width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    overflow: hidden;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.02em;
}
.support-fab-icon img {
    width: 28px;
    height: 28px;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.support-fab-copy {
    font-weight: 800;
    letter-spacing: 0.01em;
}
.support-modal-head {
    margin-bottom: 22px;
}
.support-modal {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: none;
}
.support-modal.is-open {
    display: block;
}
.support-modal .portal-modal-backdrop {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(180deg, rgba(9, 19, 31, 0.12), rgba(16, 33, 63, 0.16));
    backdrop-filter: blur(2px) saturate(108%);
    transition: opacity .22s ease;
}
.support-modal .portal-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(980px, calc(100% - 32px));
    max-height: min(86vh, 760px);
    margin: 7vh auto 0;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(16,33,50,0.08);
    box-shadow: 0 32px 80px rgba(16,33,50,0.24);
    overflow: auto;
    isolation: isolate;
    opacity: 0;
    transform: translateY(18px) scale(0.965);
    transition: transform .24s cubic-bezier(.18,.88,.32,1.08), opacity .18s ease;
}
.support-modal.is-open .portal-modal-backdrop {
    opacity: 1;
}
.support-modal.is-open .portal-modal-dialog {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.support-modal .portal-modal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}
.support-modal .portal-modal-head h2 {
    margin: 0 0 6px;
    font-size: 28px;
    letter-spacing: 0;
}
.support-modal .portal-modal-head p {
    margin: 0;
    color: var(--muted);
}
.support-modal .portal-modal-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(16,33,50,0.08);
    color: var(--ink);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}
.support-channel-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 4px 14px;
    scrollbar-width: thin;
    scroll-behavior: smooth;
}
.support-channel-card {
    display: grid;
    gap: 14px;
    flex: 0 0 280px;
    width: 280px;
    max-width: 280px;
    min-height: 100%;
    min-width: 0;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(16,33,50,0.08);
    background: rgba(248,251,255,0.94);
    align-content: start;
    overflow: hidden;
}
.support-channel-card.is-featured {
    border-color: rgba(37,99,235,0.18);
    box-shadow: 0 18px 36px rgba(37,99,235,0.10);
}
.support-channel-card-head {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
}
.support-channel-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 700;
}
.support-channel-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}
.support-channel-icon--telegram {
    background: rgba(37,99,235,0.14);
    color: #1d4ed8;
}
.support-channel-icon--wechat {
    background: rgba(34,197,94,0.16);
    color: #15803d;
}
.support-channel-icon--whatsapp {
    background: rgba(22,163,74,0.14);
    color: #15803d;
}
.support-channel-icon--xchat,
.support-channel-icon--custom {
    background: rgba(245,158,11,0.16);
    color: #b45309;
}
.support-channel-head-copy h3 {
    margin: 0 0 4px;
    font-size: 22px;
    letter-spacing: -0.03em;
    overflow-wrap: anywhere;
}
.support-channel-head-copy p,
.support-channel-description,
.support-channel-availability,
.support-channel-qr-note {
    margin: 0;
    color: var(--muted);
    overflow-wrap: anywhere;
}
.support-channel-head-copy {
    min-width: 0;
}
.support-channel-contact {
    display: grid;
    gap: 6px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(37,99,235,0.07);
}
.support-channel-contact span {
    font-size: 13px;
    color: var(--muted);
}
.support-channel-contact strong {
    user-select: text;
    word-break: break-all;
    line-height: 1.5;
}
.support-channel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.support-channel-action-button {
    min-width: 0;
    flex: 1 1 148px;
}
.support-channel-action-button.is-success,
.portal-overview-coupon-copy.is-success {
    border-color: rgba(34,197,94,0.24);
    background: rgba(34,197,94,0.14);
    color: #166534;
}
.support-channel-action-button.is-failed,
.portal-overview-coupon-copy.is-failed {
    border-color: rgba(239,68,68,0.24);
    background: rgba(239,68,68,0.12);
    color: #b91c1c;
}
.support-channel-qr-panel {
    display: grid;
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(16,33,50,0.08);
}
.support-channel-qr-layout {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    align-items: start;
}
.support-channel-qr-media,
.support-channel-qr-copy {
    display: grid;
    gap: 12px;
    justify-items: center;
}
.support-channel-qr-image-link {
    display: inline-flex;
    width: fit-content;
}
.support-channel-qr-image {
    width: min(100%, 160px);
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    border: 1px solid rgba(16,33,50,0.08);
    background: #fff;
    object-fit: cover;
}
.support-channel-qr-copy {
    width: 100%;
}
.support-channel-qr-note {
    text-align: center;
}
.pill-active {
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: #fff;
}
body.has-modal-open {
    overflow: hidden;
}
.compare-card { display: grid; gap: 10px; }
.compare-card .mini { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.article-section {
    padding-top: 42px;
}
.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}
.article-prose {
    padding: 34px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.9);
    background: var(--surface);
    box-shadow: var(--shadow);
}
.article-prose h2,
.article-prose h3,
.article-prose h4 {
    margin: 28px 0 12px;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0;
    line-height: 1.22;
}
.article-prose h2:first-child,
.article-prose h3:first-child,
.article-prose h4:first-child {
    margin-top: 0;
}
.article-prose p,
.article-prose li {
    color: var(--ink);
    line-height: 1.86;
}
.article-prose p {
    margin: 0 0 18px;
}
.article-prose ul,
.article-prose ol {
    margin: 0 0 20px;
    padding-left: 24px;
}
.article-prose a {
    color: var(--primary-deep);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.article-prose img {
    display: block;
    width: auto;
    max-width: min(100%, 720px);
    height: auto;
    margin: 18px auto;
    border: 1px solid rgba(16,33,50,0.10);
    border-radius: 14px;
    box-shadow: 0 18px 46px rgba(15,23,42,0.08);
}
.article-prose img.article-media {
    width: 100%;
    max-width: min(100%, 480px);
}
.article-prose video {
    display: block;
    width: 100%;
    max-width: 720px;
    margin: 24px auto;
    border: 1px solid rgba(16,33,50,0.10);
    border-radius: 14px;
    background: #0f172a;
    object-fit: contain;
    box-shadow: 0 18px 46px rgba(15,23,42,0.12);
}
.article-prose table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
    overflow: hidden;
    border: 1px solid rgba(16,33,50,0.10);
    border-radius: 14px;
}
.article-prose th,
.article-prose td {
    padding: 12px 14px;
    border: 1px solid rgba(16,33,50,0.08);
    text-align: left;
    vertical-align: top;
}
.article-prose th {
    background: rgba(37,99,235,0.06);
    font-weight: 800;
}
.article-prose pre {
    overflow-x: auto;
    margin: 0 0 20px;
    padding: 16px 18px;
    border-radius: 14px;
    background: #0f172a;
    color: #e2e8f0;
}
.article-prose code {
    padding: 2px 6px;
    border-radius: 8px;
    background: rgba(37,99,235,0.08);
    color: var(--primary-deep);
}
.article-prose pre code {
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
}
.article-aside {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 104px;
}
.article-cta-card,
.article-related-card {
    padding: 24px;
    border-radius: 22px;
    border: 1px solid rgba(16,33,50,0.08);
    background: rgba(255,255,255,0.92);
    box-shadow: var(--shadow);
}
.article-cta-card {
    display: grid;
    gap: 14px;
}
.article-cta-card h2,
.article-related-card h2 {
    margin: 0;
    font-size: 22px;
    letter-spacing: 0;
}
.article-cta-card p {
    margin: 0;
    color: var(--muted);
}
.article-related-card .list-clean li:last-child {
    border-bottom: 0;
}
.article-related-card a:hover,
.article-related-card a:focus-visible {
    color: var(--primary-deep);
}
.article-prose a,
.article-prose code {
    overflow-wrap: anywhere;
    word-break: break-word;
}
.article-heading-anchor {
    margin-left: 8px;
    color: rgba(37,99,235,0.35);
    font-size: .8em;
    text-decoration: none !important;
    opacity: 0;
    transition: opacity .16s ease, color .16s ease;
}
.article-prose h2:hover .article-heading-anchor,
.article-prose h3:hover .article-heading-anchor,
.article-prose h4:hover .article-heading-anchor,
.article-heading-anchor:focus-visible {
    opacity: 1;
    color: var(--primary-deep);
}
.article-video {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 720px;
    aspect-ratio: 16 / 9;
    margin: 24px auto;
    border: 1px solid rgba(16,33,50,0.08);
    border-radius: 14px;
    background: #0f172a;
    box-shadow: 0 18px 44px rgba(15,23,42,0.16);
}
.article-video iframe,
.article-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.article-video video {
    object-fit: contain;
    background: #0f172a;
}
.article-video-label {
    margin: 0 0 10px;
    color: var(--ink);
    font-weight: 800;
}
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (min-width: 960px) {
    body {
        font-size: 15px;
    }
    .header-row {
        min-height: 74px;
        gap: 18px;
    }
    .brand {
        gap: 10px;
        min-width: 200px;
    }
    .brand-logo {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }
    .brand-mark {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }
    .main-nav {
        gap: 14px;
    }
    .main-nav a {
        padding: 8px 10px;
    }
    .lang-switch,
    .menu-toggle {
        min-height: 40px;
    }
    .button {
        min-height: 44px;
        padding: 0 18px;
    }
    .hero {
        padding: 64px 0 40px;
    }
    .hero-grid {
        gap: 32px;
    }
    .eyebrow,
    .pill,
    .kicker,
    .badge {
        padding: 8px 13px;
    }
    .eyebrow {
        font-size: 15px;
    }
    .hero h1 {
        margin: 14px 0 12px;
        font-size: clamp(36px, 6vw, 66px);
    }
    .hero p {
        margin: 0 0 18px;
        font-size: 16px;
        max-width: 620px;
    }
    .card,
.split-card,
.auth-card,
.notice,
.product-card,
.table-wrap{
        padding: 22px;
        border-radius: 24px;
    }
    .section {
        padding: 48px 0;
    }
    .page-hero {
        padding: 44px 0 8px;
    }
    .section-head {
        margin-bottom: 22px;
    }
    .section-head h1,
    .section-head h2 {
        margin: 0 0 10px;
        font-size: clamp(28px, 3.6vw, 46px);
    }
    .section-head p {
        font-size: 16px;
    }
    .price-big {
        font-size: 38px;
    }
    .metric strong {
        font-size: 26px;
    }
}
@media (max-width: 1100px) {
    .hero-grid,
.grid-4,
.grid-3,
.grid-2,
.split-grid,
.auth-shell,
.footer-grid,
.form-grid,
.portal-stats,
.portal-grid-overview,
.portal-grid-main,
.portal-checkout-layout,
.portal-shell,
.portal-stat-strip,
.portal-filter-bar,
.portal-detail-hero,
.portal-detail-layout,
.article-layout,
.portal-detail-meta-grid,
.portal-billing-hero-grid{ grid-template-columns: 1fr; }
    .hero h1{
        font-size: 50px;
    }
    .article-aside {
        position: static;
    }
    .main-nav,
    .header-actions { display: none; }
    .menu-toggle { display: inline-flex; margin-left: auto; align-items: center; justify-content: center; }
    .nav-mobile-only { display: block; }
    .nav-mobile-languages { display: flex; }
    .main-nav.is-open {
        display: flex;
        position: absolute;
        top: 82px;
        left: 16px;
        right: 16px;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border-radius: 24px;
        background: rgba(255,255,255,0.98);
        box-shadow: var(--shadow);
    }
    .support-channel-grid {
        justify-content: flex-start;
    }
    .support-channel-qr-layout {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 720px) {
    .hero h1{
        font-size: 32px;
        line-height: 1.12;
        overflow-wrap: anywhere;
    }
    .hero p{
        font-size: 16px;
        line-height: 1.7;
    }
    .section-head h1,
    .section-head h2 {
        font-size: 34px;
    }
    .container,
    .portal-shell { width: calc(100% - 20px); }
    .support-fab-shell {
        right: 14px;
        bottom: 14px;
    }
    .support-fab {
        min-height: 54px;
        padding-right: 16px;
    }
    .support-fab-copy {
        font-size: 14px;
    }
    .support-fab-icon {
        min-width: 40px;
        height: 40px;
    }
    .support-fab-icon img {
        width: 22px;
        height: 22px;
    }
    .support-modal .portal-modal-dialog {
        width: calc(100% - 12px);
        max-height: min(84vh, 760px);
        margin: auto auto 0;
        padding: 20px;
        border-radius: 24px 24px 0 0;
    }
    .support-modal .portal-modal-head h2 {
        font-size: 24px;
    }
    .support-channel-card {
        flex-basis: 250px;
        width: 250px;
        max-width: 250px;
        padding: 16px;
        border-radius: 20px;
    }
    .support-channel-grid {
        justify-content: flex-start;
        gap: 14px;
    }
    .support-channel-qr-image {
        width: min(100%, 150px);
    }
    .auth-primary-actions {
        gap: 10px;
    }
    .altcha-shell altcha-widget {
        max-width: 100%;
    }
}

.distributor-page {
    overflow: hidden;
}
.distributor-hero {
    padding: 64px 0 30px;
}
.distributor-hero-shell {
    position: relative;
    padding: 34px 38px 24px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.92);
    background: linear-gradient(145deg, rgba(255,255,255,0.98) 0%, rgba(245,249,255,0.96) 58%, rgba(223,233,255,0.88) 100%);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.distributor-hero-shell::before {
    content: '';
    position: absolute;
    right: -110px;
    bottom: -130px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16,33,63,0.20) 0%, rgba(37,99,235,0.11) 42%, transparent 72%);
}
.distributor-hero-shell::after {
    content: '';
    position: absolute;
    inset: 0 0 0 auto;
    width: min(38%, 360px);
    background: linear-gradient(180deg, rgba(16,33,63,0.06), transparent 68%);
    clip-path: polygon(34% 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0.9;
}
.distributor-hero-topline,
.distributor-hero-copy,
.distributor-hero-proofband {
    position: relative;
    z-index: 1;
}
.distributor-hero-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 26px;
}
.distributor-hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}
.distributor-hero-headline {
    position: relative;
    z-index: 1;
    max-width: 920px;
}
.distributor-hero-headline h1 {
    max-width: 920px;
}
.distributor-hero-copy {
    display: grid;
    grid-template-columns: minmax(0, 1.24fr) minmax(300px, 0.76fr);
    gap: 26px;
    align-items: end;
    margin-top: 24px;
}
.distributor-hero-support p {
    max-width: 760px;
}
.distributor-hero-support .cta-row {
    margin-top: 28px;
}
.distributor-hero-manifest {
    padding: 24px 24px 22px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(15,23,42,0.97), rgba(16,33,63,0.93));
    color: #edf4ff;
    box-shadow: 0 28px 56px rgba(16,33,63,0.18);
}
.distributor-hero-manifest .eyebrow {
    margin-bottom: 14px;
    background: rgba(255,255,255,0.10);
    color: #fff;
}
.distributor-hero-manifest strong {
    display: block;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 34px;
    line-height: 1.06;
    letter-spacing: -0.03em;
}
.distributor-hero-manifest p {
    margin-bottom: 0;
    color: rgba(237,244,255,0.82);
}
.distributor-hero-proofband {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid rgba(16,33,63,0.08);
}
.distributor-hero-proofband article {
    min-width: 0;
}
.distributor-hero-proofband span {
    display: block;
    margin-bottom: 8px;
    font-weight: 800;
    font-size: 15px;
}
.distributor-hero-proofband p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}
.distributor-fit-grid {
    align-items: stretch;
}
.distributor-fit-card h3,
.distributor-proof-card h3 {
    margin-top: 0;
}
.distributor-fit-card p,
.distributor-proof-card p {
    margin-bottom: 0;
}
.distributor-mid-grid {
    align-items: stretch;
}
.distributor-feature-panel,
.distributor-steps-panel {
    min-height: 100%;
}
.distributor-feature-list,
.distributor-step-list {
    display: grid;
    gap: 14px;
}
.distributor-feature-item,
.distributor-step-item {
    padding: 18px 18px 16px;
    border-radius: 20px;
    border: 1px solid rgba(16,33,50,0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(219,231,255,0.30));
}
.distributor-feature-item strong,
.distributor-step-item strong {
    display: block;
    margin-bottom: 7px;
    font-size: 17px;
}
.distributor-feature-item p,
.distributor-step-item p {
    margin: 0;
    color: var(--muted);
}
.distributor-step-item {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}
.distributor-step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border-radius: 18px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-deep);
    background: rgba(37,99,235,0.10);
}
.distributor-proof-shell {
    display: grid;
    gap: 20px;
}
.distributor-proof-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241,246,255,0.96));
}
.distributor-form-shell {
    max-width: 980px;
    margin: 0 auto;
}
.distributor-form-grid {
    margin-bottom: 2px;
}
.distributor-form-actions {
    margin-top: 8px;
}

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

@media (max-width: 960px) {
    .distributor-hero-shell {
        padding: 26px 24px 22px;
        border-radius: 30px;
    }
    .distributor-hero-topline {
        flex-direction: column;
        align-items: flex-start;
    }
    .distributor-hero-tags {
        justify-content: flex-start;
    }
    .distributor-hero-copy {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .distributor-hero {
        padding: 48px 0 18px;
    }
    .distributor-hero-shell {
        padding: 22px 18px 18px;
        border-radius: 24px;
    }
    .distributor-hero-manifest strong {
        font-size: 28px;
    }
    .distributor-hero-proofband,
    .distributor-step-item {
        grid-template-columns: 1fr;
    }
    .distributor-step-index {
        width: 72px;
    }
}

@media (max-width: 760px) {
    .support-fab {
        min-width: 54px;
        padding: 7px;
        border-radius: 999px;
    }
    .support-fab-copy {
        display: none;
    }
}
