:root {
    --hubsoft-bg: #ffffff;
    --hubsoft-soft-bg: #f5f5f7;
    --hubsoft-card: #ffffff;
    --hubsoft-text: #1d1d1f;
    --hubsoft-muted: #6e6e73;
    --hubsoft-subtle: #86868b;
    --hubsoft-border: #e5e5ea;
    --hubsoft-border-strong: #d2d2d7;
    --hubsoft-blue: #0071e3;
    --hubsoft-blue-hover: #0077ed;
    --hubsoft-shadow: 0 16px 42px rgba(0, 0, 0, 0.07);
    --hubsoft-liquid-glass-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.44));
    --hubsoft-liquid-glass-border: rgba(255, 255, 255, 0.68);
    --hubsoft-liquid-glass-shadow: 0 24px 70px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.82);
    --hubsoft-radius: 8px;
    --hubsoft-card-radius: 18px;
    --hubsoft-container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
}

body.hubsoft-ui {
    margin: 0;
    background: var(--hubsoft-bg);
    color: var(--hubsoft-text);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro SC", "SF Pro Text", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.hubsoft-ui {
    background:
        radial-gradient(circle at 16% 8%, rgba(0, 113, 227, 0.1), transparent 30%),
        radial-gradient(circle at 82% 18%, rgba(123, 220, 181, 0.14), transparent 32%),
        var(--hubsoft-bg);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hubsoft-container {
    width: min(calc(100% - 40px), var(--hubsoft-container));
    margin: 0 auto;
}

.hubsoft-site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(229, 229, 234, 0.72);
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: saturate(180%) blur(20px);
}

.hubsoft-header-inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.hubsoft-brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    gap: 12px;
}

.hubsoft-brand-mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid var(--hubsoft-border);
    border-radius: var(--hubsoft-radius);
    background: linear-gradient(180deg, #ffffff, #f1f1f4);
    color: var(--hubsoft-text);
    font-weight: 700;
}

.hubsoft-brand-mark .custom-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 6px;
}

.hubsoft-brand-text {
    display: grid;
    gap: 1px;
    min-width: 0;
}

.hubsoft-brand-text strong,
.hubsoft-brand-text small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hubsoft-brand-text strong {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 650;
}

.hubsoft-brand-text small {
    color: var(--hubsoft-muted);
    font-size: 12px;
}

.hubsoft-nav,
.hubsoft-menu {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hubsoft-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hubsoft-nav a {
    color: var(--hubsoft-muted);
    font-size: 13px;
    font-weight: 500;
    transition: color 160ms ease;
}

.hubsoft-nav a:hover,
.hubsoft-nav a:focus {
    color: var(--hubsoft-text);
}

.hubsoft-hero {
    background:
        linear-gradient(180deg, rgba(245, 245, 247, 0.8), rgba(255, 255, 255, 0)),
        var(--hubsoft-bg);
}

.hubsoft-hero-inner {
    position: relative;
    min-height: 420px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: center;
    gap: 56px;
    margin-top: 30px;
    padding: 54px 34px;
    overflow: hidden;
    border: 1px solid var(--hubsoft-liquid-glass-border);
    border-radius: 30px;
    background: var(--hubsoft-liquid-glass-bg);
    box-shadow: var(--hubsoft-liquid-glass-shadow);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
}

.hubsoft-eyebrow {
    margin: 0 0 12px;
    color: var(--hubsoft-blue);
    font-size: 13px;
    font-weight: 650;
    letter-spacing: 0;
}

.hubsoft-hero-copy h1,
.hubsoft-page-head h1,
.hubsoft-section-head h2,
.hubsoft-single-copy h1 {
    margin: 0;
    color: var(--hubsoft-text);
    letter-spacing: 0;
}

.hubsoft-hero-copy h1 {
    max-width: 820px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.03;
    font-weight: 720;
}

.hubsoft-hero-copy p:last-child {
    max-width: 720px;
    margin: 22px 0 0;
    color: var(--hubsoft-muted);
    font-size: 19px;
    line-height: 1.65;
}

.hubsoft-hero-panel {
    position: relative;
    overflow: hidden;
    min-height: 238px;
    padding: 28px;
    border: 1px solid var(--hubsoft-liquid-glass-border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.52);
    box-shadow: var(--hubsoft-liquid-glass-shadow);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    display: grid;
    align-content: center;
    gap: 6px;
}

.hubsoft-hero-panel span,
.hubsoft-hero-panel em {
    color: var(--hubsoft-muted);
    font-size: 14px;
    font-style: normal;
}

.hubsoft-hero-panel strong {
    font-size: 72px;
    line-height: 1;
    font-weight: 720;
}

.hubsoft-library {
    padding: 56px 0 88px;
}

.hubsoft-section-head,
.hubsoft-page-head-inner {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid var(--hubsoft-liquid-glass-border);
    border-radius: 26px;
    background: var(--hubsoft-liquid-glass-bg);
    box-shadow: var(--hubsoft-liquid-glass-shadow);
    backdrop-filter: blur(26px) saturate(180%);
    -webkit-backdrop-filter: blur(26px) saturate(180%);
}

.hubsoft-section-head h2,
.hubsoft-page-head h1 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    font-weight: 700;
}

.hubsoft-page-head {
    padding: 64px 0 34px;
    border-bottom: 0;
    background:
        radial-gradient(circle at 18% 24%, rgba(0, 113, 227, 0.14), transparent 30%),
        var(--hubsoft-soft-bg);
}

.hubsoft-page-head p {
    max-width: 620px;
    margin: 14px 0 0;
    color: var(--hubsoft-muted);
}

.hubsoft-filter {
    display: grid;
    grid-template-columns: minmax(180px, 260px) minmax(150px, 190px) auto auto;
    gap: 10px;
    align-items: center;
}

.hubsoft-filter input,
.hubsoft-filter select,
.hubsoft-filter button,
.hubsoft-filter-reset {
    min-height: 42px;
    border-radius: 999px;
    font: inherit;
    font-size: 14px;
}

.hubsoft-filter input,
.hubsoft-filter select {
    width: 100%;
    border: 1px solid var(--hubsoft-border);
    background: var(--hubsoft-card);
    color: var(--hubsoft-text);
    outline: none;
}

.hubsoft-filter input {
    padding: 0 16px;
}

.hubsoft-filter select {
    padding: 0 38px 0 14px;
}

.hubsoft-filter input:focus,
.hubsoft-filter select:focus {
    border-color: rgba(0, 113, 227, 0.48);
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.12);
}

.hubsoft-filter button,
.hubsoft-filter-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 0 18px;
    white-space: nowrap;
}

.hubsoft-filter button {
    background: var(--hubsoft-blue);
    color: #fff;
    cursor: pointer;
}

.hubsoft-filter button:hover {
    background: var(--hubsoft-blue-hover);
}

.hubsoft-filter-reset {
    color: var(--hubsoft-blue);
}

.hubsoft-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.hubsoft-card {
    position: relative;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 20px;
    overflow: hidden;
    border: 1px solid var(--hubsoft-liquid-glass-border);
    border-radius: 24px;
    background: var(--hubsoft-liquid-glass-bg);
    box-shadow: var(--hubsoft-liquid-glass-shadow);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    opacity: 0;
    transform: translateY(12px);
    transition: transform 220ms ease, opacity 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.hubsoft-hero-inner::after,
.hubsoft-hero-panel::after,
.hubsoft-section-head::after,
.hubsoft-page-head-inner::after,
.hubsoft-card::after,
.hubsoft-empty-state::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.56), transparent 42%);
    opacity: 0.72;
}

.hubsoft-hero-inner > *,
.hubsoft-hero-panel > *,
.hubsoft-section-head > *,
.hubsoft-page-head-inner > *,
.hubsoft-card > *,
.hubsoft-empty-state > * {
    position: relative;
    z-index: 1;
}

.hubsoft-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hubsoft-card:hover {
    border-color: rgba(255, 255, 255, 0.86);
    box-shadow: 0 28px 76px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.86);
    transform: translateY(-2px);
}

.hubsoft-card.is-featured {
    border-color: rgba(0, 113, 227, 0.24);
}

.hubsoft-card-top {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    align-items: center;
    gap: 15px;
}

.hubsoft-card-icon,
.hubsoft-single-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--hubsoft-liquid-glass-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
}

.hubsoft-product-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hubsoft-product-icon-fallback {
    color: var(--hubsoft-text);
    font-size: 26px;
    font-weight: 760;
}

.hubsoft-card-heading {
    min-width: 0;
}

.hubsoft-card-heading h3 {
    margin: 4px 0 0;
    color: var(--hubsoft-text);
    font-size: 22px;
    line-height: 1.18;
    font-weight: 680;
}

.hubsoft-card-heading h3 a {
    display: block;
    overflow-wrap: anywhere;
}

.hubsoft-badge {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    min-height: 22px;
    padding: 0 9px;
    border: 1px solid rgba(0, 113, 227, 0.22);
    border-radius: 999px;
    color: var(--hubsoft-blue);
    background: rgba(0, 113, 227, 0.06);
    font-size: 12px;
    font-weight: 650;
    white-space: nowrap;
}

.hubsoft-card-summary {
    min-height: 92px;
    margin: 0;
    color: var(--hubsoft-muted);
    font-size: 15px;
    line-height: 1.65;
}

.hubsoft-card-category {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    min-height: 30px;
    padding: 0 11px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 999px;
    background: var(--hubsoft-soft-bg);
    color: var(--hubsoft-muted);
    font-size: 12px;
    font-weight: 650;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hubsoft-card-meta,
.hubsoft-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hubsoft-card-meta span,
.hubsoft-meta-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--hubsoft-soft-bg);
    color: var(--hubsoft-muted);
    font-size: 12px;
    font-weight: 560;
}

.hubsoft-card-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: auto;
}

.hubsoft-card-action {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid var(--hubsoft-border);
    border-radius: 999px;
    background: var(--hubsoft-card);
    color: var(--hubsoft-text);
    font-size: 13px;
    font-family: inherit;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.hubsoft-card-action:hover,
.hubsoft-card-action:focus {
    border-color: var(--hubsoft-border-strong);
    background: var(--hubsoft-soft-bg);
}

.hubsoft-card-action.is-primary {
    border-color: var(--hubsoft-blue);
    background: var(--hubsoft-blue);
    color: #ffffff;
}

.hubsoft-card-action.is-primary:hover,
.hubsoft-card-action.is-primary:focus {
    border-color: var(--hubsoft-blue-hover);
    background: var(--hubsoft-blue-hover);
}

.hubsoft-card-action.is-disabled {
    color: var(--hubsoft-subtle);
    background: #fafafa;
    cursor: not-allowed;
}

.hubsoft-download-menu {
    position: relative;
    min-width: 0;
}

.hubsoft-download-menu.is-open {
    z-index: 30;
}

.hubsoft-download-menu > .hubsoft-card-action {
    width: 100%;
    appearance: none;
}

.hubsoft-download-panel {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 0;
    z-index: 20;
    width: min(220px, 70vw);
    padding: 6px;
    border: 1px solid var(--hubsoft-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(10px) scale(0.94);
    pointer-events: none;
    transform-origin: bottom right;
    transition: opacity 210ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 260ms cubic-bezier(0.18, 0.89, 0.32, 1.18), box-shadow 210ms ease;
    backdrop-filter: saturate(180%) blur(18px);
}

.hubsoft-download-menu.is-open .hubsoft-download-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    animation: hubsoft-download-pop 260ms cubic-bezier(0.18, 0.89, 0.32, 1.18);
}

@keyframes hubsoft-download-pop {
    0% {
        opacity: 0;
        transform: translateY(12px) scale(0.92);
    }

    72% {
        opacity: 1;
        transform: translateY(-2px) scale(1.015);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hubsoft-download-option {
    display: grid;
    gap: 2px;
    padding: 11px 12px;
    border-radius: 10px;
    color: var(--hubsoft-text);
    background: transparent;
    text-align: left;
    transition: background 150ms ease;
}

.hubsoft-download-option:hover,
.hubsoft-download-option:focus {
    background: var(--hubsoft-soft-bg);
}

.hubsoft-download-option span {
    font-size: 14px;
    font-weight: 680;
}

.hubsoft-download-option small {
    color: var(--hubsoft-muted);
    font-size: 12px;
}

.hubsoft-download-option.is-disabled {
    color: var(--hubsoft-subtle);
    cursor: not-allowed;
}

.hubsoft-empty-state {
    position: relative;
    overflow: hidden;
    padding: 58px 28px;
    border: 1px solid var(--hubsoft-liquid-glass-border);
    border-radius: 24px;
    background: var(--hubsoft-liquid-glass-bg);
    box-shadow: var(--hubsoft-liquid-glass-shadow);
    backdrop-filter: blur(26px) saturate(180%);
    -webkit-backdrop-filter: blur(26px) saturate(180%);
    text-align: center;
}

.hubsoft-empty-state h2 {
    margin: 0 0 10px;
    font-size: 28px;
}

.hubsoft-empty-state p {
    margin: 0 auto 18px;
    max-width: 520px;
    color: var(--hubsoft-muted);
}

.hubsoft-empty-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--hubsoft-blue);
    color: #fff;
    font-weight: 650;
}

.hubsoft-pagination {
    margin-top: 34px;
}

.hubsoft-pagination ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hubsoft-pagination a,
.hubsoft-pagination span {
    min-width: 38px;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid var(--hubsoft-liquid-glass-border);
    border-radius: 999px;
    color: var(--hubsoft-muted);
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    font-size: 14px;
}

.hubsoft-pagination .current {
    color: #fff;
    border-color: var(--hubsoft-blue);
    background: var(--hubsoft-blue);
}

.hubsoft-single-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 54px;
    background:
        radial-gradient(circle at 15% 25%, rgba(0, 113, 227, 0.16), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.86), transparent 24%),
        var(--hubsoft-soft-bg);
}

.hubsoft-single-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--hubsoft-liquid-glass-border);
    border-radius: 28px;
    background: var(--hubsoft-liquid-glass-bg);
    box-shadow: var(--hubsoft-liquid-glass-shadow);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
}

.hubsoft-single-hero-inner::after,
.hubsoft-prose::after,
.hubsoft-single-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.56), transparent 40%);
    opacity: 0.72;
    z-index: 0;
}

.hubsoft-single-hero-inner > *,
.hubsoft-prose > *,
.hubsoft-single-icon > * {
    position: relative;
    z-index: 1;
}

.hubsoft-single-icon {
    position: relative;
    overflow: hidden;
    width: 130px;
    height: 130px;
    border: 1px solid var(--hubsoft-liquid-glass-border);
    background: rgba(255, 255, 255, 0.52);
    box-shadow: var(--hubsoft-liquid-glass-shadow);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
}

.hubsoft-single-copy h1 {
    max-width: 820px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.04;
    font-weight: 730;
}

.hubsoft-single-copy > p:not(.hubsoft-eyebrow) {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--hubsoft-muted);
    font-size: 19px;
    line-height: 1.65;
}

.hubsoft-meta-row {
    margin-top: 22px;
}

.hubsoft-single-actions {
    max-width: 520px;
    margin-top: 26px;
}

.hubsoft-single-content {
    padding: 58px 0 90px;
}

.hubsoft-prose {
    position: relative;
    overflow: hidden;
    max-width: 820px;
    padding: 34px;
    border: 1px solid var(--hubsoft-liquid-glass-border);
    border-radius: 24px;
    background: var(--hubsoft-liquid-glass-bg);
    box-shadow: var(--hubsoft-liquid-glass-shadow);
    backdrop-filter: blur(26px) saturate(180%);
    -webkit-backdrop-filter: blur(26px) saturate(180%);
}

.hubsoft-prose > *:first-child {
    margin-top: 0;
}

.hubsoft-prose h2,
.hubsoft-prose h3 {
    margin: 38px 0 14px;
    line-height: 1.2;
}

.hubsoft-prose p,
.hubsoft-prose li {
    color: #424245;
    font-size: 17px;
    line-height: 1.78;
}

.hubsoft-prose a {
    color: var(--hubsoft-blue);
}

.hubsoft-simple-entry {
    padding: 26px 0;
    border-bottom: 1px solid var(--hubsoft-border);
}

.hubsoft-simple-entry h2 {
    margin: 0 0 8px;
}

.hubsoft-entry-summary {
    color: var(--hubsoft-muted);
}

.hubsoft-content-list {
    padding: 46px 0 80px;
}

.hubsoft-site-footer {
    padding: 28px 0;
    border-top: 1px solid var(--hubsoft-border);
    color: var(--hubsoft-muted);
    background: #fafafa;
    font-size: 13px;
}

.hubsoft-footer-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
}

.hubsoft-footer-inner p {
    margin: 0;
}

.hubsoft-admin-icon-preview {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin-bottom: 10px;
    border: 1px solid #dcdcde;
    border-radius: 8px;
    background: #f6f7f7;
    overflow: hidden;
}

.hubsoft-admin-icon-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .hubsoft-hero-inner {
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 32px;
        padding: 42px 28px;
    }

    .hubsoft-hero-panel {
        min-height: 170px;
    }

    .hubsoft-section-head,
    .hubsoft-page-head-inner {
        align-items: stretch;
        flex-direction: column;
    }

    .hubsoft-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hubsoft-filter {
        grid-template-columns: minmax(0, 1fr) minmax(150px, 220px) auto auto;
    }
}

@media (max-width: 720px) {
    .hubsoft-container {
        width: min(calc(100% - 28px), var(--hubsoft-container));
    }

    .hubsoft-header-inner {
        min-height: 58px;
    }

    .hubsoft-brand-text small {
        display: none;
    }

    .hubsoft-nav {
        gap: 12px;
    }

    .hubsoft-nav a {
        font-size: 12px;
    }

    .hubsoft-hero-copy h1 {
        font-size: 42px;
    }

    .hubsoft-hero-copy p:last-child,
    .hubsoft-single-copy > p:not(.hubsoft-eyebrow) {
        font-size: 17px;
    }

    .hubsoft-filter {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .hubsoft-hero-inner,
    .hubsoft-section-head,
    .hubsoft-page-head-inner {
        border-radius: 22px;
        padding: 24px;
    }

    .hubsoft-filter button,
    .hubsoft-filter-reset {
        width: 100%;
    }

    .hubsoft-card-grid {
        grid-template-columns: 1fr;
    }

    .hubsoft-card {
        min-height: 0;
        padding: 20px;
    }

    .hubsoft-card-summary {
        min-height: 0;
    }

    .hubsoft-card-actions,
    .hubsoft-single-actions {
        grid-template-columns: 1fr;
    }

    .hubsoft-single-hero-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hubsoft-single-copy h1 {
        font-size: 40px;
    }

    .hubsoft-single-icon {
        width: 104px;
        height: 104px;
    }

    .hubsoft-footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .hubsoft-brand-mark {
        width: 32px;
        height: 32px;
    }

    .hubsoft-brand-text strong {
        max-width: 132px;
    }

    .hubsoft-hero-copy h1,
    .hubsoft-single-copy h1 {
        font-size: 34px;
    }

    .hubsoft-card-top {
        grid-template-columns: 54px minmax(0, 1fr);
    }

    .hubsoft-card-icon {
        width: 54px;
        height: 54px;
    }
}
