@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../fonts/PlusJakartaSans-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: "Be Vietnam Pro extra bold";
    src: url("../fonts/BeVietnamPro-ExtraBold.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "Be Vietnam Pro Semi Bold";
    src: url("../fonts/BeVietnamPro-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Be Vietnam Pro Light";
    src: url("../fonts/BeVietnamPro-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Be Vietnam Pro Thin";
    src: url("../fonts/BeVietnamPro-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: "Haffer";
    src: url("../fonts/Haffer-TRIAL-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Haffer SemiBold";
    src: url("../fonts/Haffer-TRIAL-SemiBold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Urbanist';
    src: url('/assets/fonts/Urbanist-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: "Urbanist Italic";
    src: url("../fonts/Urbanist-Italic-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: italic;
}

@font-face {
    font-family: "Haffer Italic";
    src: url("../fonts/Haffer-TRIAL-RegularItalic.otf") format("opentype");
    font-weight: 400;
    font-style: italic;
}

:root {
    --hub-dark: #2A0F14;
    --hub-text: #544145;
    --hub-muted: #69575d;
    --hub-yellow: #FAE261;
    --hub-yellow-strong: #FDC331;
    --hub-cream: #F0EDE7;
    --hub-panel: #F0EDE7;
    --hub-line: #DFE0DE;
    --hub-green: #C2F8C8;
    --hub-red: #FBC7BE;
    --modal-powered-by: #212121;
    --section-space: 80px;
    --section-space-mobile: 50px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: auto;
}

html,
body {
    margin: 0;
    min-height: 100%;
    font-family: "Urbanist", Arial, sans-serif;
    color: var(--hub-text);
    background: #f8faf7;
}

html.hub-modal-open,
body.hub-modal-open {
    overflow: hidden;
    height: 100%;
}

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

button,
input {
    font: inherit;
}

.highlight {
    display: inline-block;
    background: var(--hub-yellow);
    color: inherit;
    font-family: "Be Vietnam Pro semi bold", sans-serif;
    padding: 0.02em 0.02em;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.hub-page {
    background: #fbfdfb;
}

.hub-container {
    width: min(1340px, calc(100% - 96px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid #dfdfda;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    font-family: "Plus Jakarta Sans", "Urbanist", Arial, sans-serif;
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    min-height: 72px;
}

.brand,
.hub-auth-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--hub-dark);
    white-space: nowrap;
}

.brand strong,
.hub-auth-logo strong {
    display: block;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: .9;
}

.brand small,
.hub-auth-logo small {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.brand b,
.hub-auth-logo b {
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 0 5px 2px;
    border-radius: 50%;
    background: var(--hub-yellow);
}

.brand-shield,
.hub-shield {
    display: grid;
    place-items: center;
    width: 48px;
    height: 56px;
    color: #e30012;
    font-size: 22px;
    font-weight: 900;
    clip-path: polygon(50% 0, 100% 17%, 90% 78%, 50% 100%, 10% 78%, 0 17%);
    background: #fff;
    border: 4px solid var(--hub-dark);
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    font-size: 16px;
    font-weight: 500;
    color: var(--hub-text);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--hub-dark);
    font-weight: 700;
}

.login-pill,
.primary-btn,
.outline-btn,
.dark-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 600;
    color: var(--hub-dark);
}

.login-pill,
.primary-btn {
    background: var(--hub-yellow);
}

.login-pill i,
.primary-btn i,
.outline-btn i,
.dark-btn i {
    font-size: 12px;
    line-height: 1;
}

.outline-btn {
    border: 1.5px solid var(--hub-dark);
    background: #fff;
}

.dark-btn {
    color: #fff;
    background: var(--hub-dark);
}

.menu-button {
    display: none;
    border: 0;
    background: transparent;
    color: var(--hub-dark);
    font-size: 22px;
}

.hero-section {
    display: flex;
    justify-content: center;
    position: relative;
    min-height: 700px;
    background-image: url("../img/backgrounds/hub-hero-section-background.png");
    background-position: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 70px;
    align-items: center;
    min-height: 500px;
    padding: 54px 0;
}

.hero-copy h1 {
    margin: 0;
    color: var(--hub-dark);
    font-family: "Be Vietnam Pro Semi Bold", sans-serif;
    font-size: 75px;
    font-weight: 900;
    line-height: 1.04;
}

.hero-kicker {
    margin: 24px 0 22px;
    font-size: 23px;
    font-family: "Be Vietnam Pro Semi Bold", sans-serif;
    color: var(--hub-dark);
}

.hero-kicker b {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 9px 4px;
    color: var(--hub-dark);
    border-radius: 50%;
    background: var(--hub-yellow);
}

.hero-text {
    max-width: 650px;
    margin: 0 0 34px;
    color: var(--hub-text);
    font-family: "Haffer", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.hero-actions a {
    font-family: "Haffer SemiBold", sans-serif;
    font-size: 18px;
}

@media screen and (max-width: 480px) {
    .hero-actions a {
        font-size: 12px;
    }
}

.hero-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.hero-flow img {
    width: 70%;
    height: auto;
}

@media screen and (max-width: 480px) {
    .hero-flow img {
        width: 100%;
    }
}

.ticker {
    min-height: 76px;
    border: 1px solid #DFE0DE;
    background: #F8FAF7;
    white-space: nowrap;
    overflow: hidden;
}

.ticker-track {
    display: inline-flex;
    gap: 0;
    padding: 22px 0;
}

.ticker-track span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding: 6px 26px 6px 0;
    margin-right: 26px;
    color: #010F25;
    font-family: "Haffer", sans-serif;
    font-size: 18px;
    font-weight: 400;
}

.ticker-track span::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 30px;
    background: #010F254D;
}

.ticker-track span:last-child::after {
    display: none;
}

.ticker-track img {
    width: 31px;
    height: 31px;
    border-radius: 8px;
    flex-shrink: 0;
}

.section {
    padding: var(--section-space) 0;
}

.real-hubs {
    padding-top: 0;
}

.section h2,
.pickup-section h2,
.choose-section h2,
.community-section h2 {
    margin: 0;
    color: var(--hub-dark);
    font-family: "Be Vietnam Pro Semi Bold", sans-serif;
    font-size: 45px;
    font-weight: 600;
    line-height: 1.08;
}

.hub-types h2,
.choose-section h2 {
    text-align: center;
}

.hub-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 34px;
}

.hub-type-card {
    min-height: 380px;
    padding: 0 22px 26px;
    background: var(--hub-panel);
    clip-path: polygon(0 0, 100% 0, 100% 88%, 90% 100%, 0 100%);
}

.hub-type-card h3 {
    margin: 22px 0 8px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--hub-dark);
}

.hub-type-card p {
    min-height: 58px;
    margin: 0 0 18px;
    font-family: "Haffer", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--hub-text);
    line-height: 1.35;
}

.hub-type-card small {
    font-family: "Be Vietnam Pro Semi Bold", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--hub-dark);
}

.hub-type-card small b {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 8px 1px;
    border-radius: 50%;
    background: var(--hub-yellow);
}

.hub-visual {
    position: relative;
    height: 190px;
    margin: 0 -22px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f8f8f6 0%, #dedbd4 100%);
}

.hub-visual img {
    width: 100%;
    height: 100%;
}

.pickup-section {
    padding-top: 10px;
    padding-bottom: var(--section-space);
}

.pickup-section p {
    margin: 12px 0 48px;
    font-family: "Haffer", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--hub-text);
}

.pickupSwiper {
    display: none;
}

.pickup-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
}

.pickup-step {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 20px;
    text-align: center;
    color: var(--hub-dark);
    font-size: 13px;
    font-weight: 900;
}

.pickup-dot-line {
    position: absolute;
    top: 27px;
    left: calc(50% + 40px);
    right: -40%;
    height: 6px;
    padding: 0 3px;
    background-image: radial-gradient(circle, var(--hub-text) 1.5px, transparent 1.5px);
    background-size: 12px 4px;
    background-repeat: repeat-x;
    background-position: center;
    background-origin: content-box;
    background-clip: content-box;
    pointer-events: none;
}

.pickup-dot-line::before,
.pickup-dot-line::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--hub-text);
}

.pickup-dot-line::before {
    left: 0;
}

.pickup-dot-line::after {
    right: 0;
}

.pickup-step img {
    position: relative;
    z-index: 1;
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.pickup-step span {
    color: var(--hub-dark);
    font-family: "Be Vietnam Pro Semi Bold", sans-serif;
    font-size: 16px;
}

.feature-panels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    padding: 0 0 var(--section-space);
}

.feature-panels .feature-panel {
    display: flex;
    flex-direction: column;
    gap: 50px;
    min-height: 350px;
    padding: 100px 44px 100px;
    background: var(--hub-panel);
    position: relative;
}

.feature-body {
    display: grid;
    grid-template-columns: 1fr 210px;
    gap: 26px;
    align-items: start;
    position: relative;
}

.feature-image-section,
.feature-image-tracking-section {
    display: none;
}

.feature-body .feature-image {
    height: 290px;
    position: absolute;
    right: 0px;
}

.feature-panel .feature-image-tracking {
    bottom: 60px;
    right: 100px;
    height: 350px;
    position: absolute;
}

.feature-panels h2 {
    margin: 0 0 14px;
    font-family: "Be Vietnam Pro Semi Bold", sans-serif;
    color: var(--hub-dark);
    font-size: 45px;
    font-weight: 600;
    line-height: 1.08;
}

.feature-panels .feature-head p {
    margin: 0;
    font-family: "Haffer-TRIAL", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--hub-text);
}

.feature-panels .feature-body ul,
.compare-grid ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-body li {
    display: flex;
    align-items: center;
    gap: 13px;
    font-family: "Haffer-TRIAL", sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 13px;
    color: var(--hub-dark);
}

.choose-section {
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding: 0 0 var(--section-space);
}

.choose-section h2 {
    padding: 0;
}

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

.compare-grid .traditional,
.compare-grid .v4-hub {
    padding: 58px 44px 42px;
}

.compare-grid h3 {
    margin: 0 0 32px;
    font-family: "Be Vietnam Pro Semi Bold", sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: var(--hub-dark);
}

.compare-grid li {
    display: flex;
    font-family: "Haffer-TRIAL", sans-serif;
    font-weight: 400;
    font-size: 18px;
    gap: 13px;
    margin: 0 0 13px;
    color: var(--hub-dark);
    justify-content: start;
    align-items: flex-start;
}

@media screen and (max-width: 480px) {
    .compare-grid .traditional,
    .compare-grid .v4-hub {
        padding: 28px 24px 28px;
    }

    .compare-grid h3 {
        font-size: 17px;
        margin-bottom: 15px;
    }
}

.traditional {
    background: var(--hub-red);
}

.v4-hub {
    background: var(--hub-green);
}

.section-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.arrow-controls {
    display: none;
    gap: 12px;
}

.arrow-controls button {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--hub-yellow);
    color: var(--hub-dark);
    font-size: 24px;
}

.arrow-controls button:first-child {
    background: #fff4bb;
    color: #9a8f78;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 28px;
}

.gallery-card {
    position: relative;
    margin: 0;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 87%, 90% 100%, 0 100%);
}

.gallery-label {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 220px;
    padding: 10px 28px 10px 14px;
    background: #fff;
    color: var(--hub-dark);
    font-family: "Be Vietnam Pro Semi Bold", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    /* clip-path: polygon(0 0, calc(100% - 1.1rem) 0, 100% 100%, 0 100%); */
    clip-path: polygon(0 0, 100% 0px, 85% 100%, 0px 100%);
}

.gallery-card img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.van-action::after {
    content: "";
    position: absolute;
    right: 9%;
    bottom: 54px;
    width: 64px;
    height: 120px;
    border-radius: 38px 38px 10px 10px;
    background: #c58a72;
}

.stats-row {
    display: flex;
    width: min(1340px, calc(100% - 96px));
    margin: 0 auto var(--section-space);
    border: 1px solid #00000033;
}

.stats-row > div {
    flex: 1;
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 32px 18px;
    text-align: center;
}

.stats-divider {
    width: 1px;
    background: #00000033;
    margin: 32px 0;
    align-self: stretch;
}

.stats-row strong {
    font-family: "Inter", "Inter-VariableFont_opsz,wght", sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--hub-dark);
}

.stats-row strong span {
    color: var(--hub-yellow);
}

.stats-row small {
    font-family: "Haffer-TRIAL", sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--hub-text);
}

.community-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    gap: 80px;
    align-items: start;
    width: min(1340px, calc(100% - 96px));
    margin: 0 auto;
    padding: 0 0 var(--section-space);
}

.community-section p {
    margin: 14px 0 0;
    font-family: "Haffer-TRIAL", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--hub-text);
    line-height: 1.25;
}

.partner-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 138px;
    width: min(1340px, calc(100% - 96px));
    margin: 0 auto 70px;
    padding: 28px 36px;
    background: var(--hub-yellow-strong);
    clip-path: polygon(0 0, 100% 0, 100% 72%, 96% 100%, 0 100%);
}

@media screen and (max-width: 480px) {
    .partner-cta {
        clip-path: polygon(0 0, 100% 0, 100% 72%, 90% 100%, 0px 100%);
    }
}

.partner-cta h2 {
    margin: 0 0 12px;
    font-family: "Be Vietnam Pro Semi Bold", sans-serif;
    font-weight: 600;
    font-size: 45px;
    color: var(--hub-dark);
}

.partner-cta p {
    margin: 0;
    font-family: "Haffer-TRIAL", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--hub-dark);
}

.partner-cta .dark-btn {
    background: var(--hub-dark);
    color: var(--hub-yellow);
}

.hub-footer {
    display: grid;
    grid-template-columns: 1.5fr .8fr .8fr .9fr 1.3fr;
    padding: 48px max(44px, calc((100vw - 1340px) / 2)) 20px;
    background: #ebebeb;
    border-bottom: 1px solid #d8d6d2;
}

.hub-footer p {
    display: block;
    margin: 0 0 12px;
    font-family: "Haffer-TRIAL", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #544145;
    line-height: 1.35;
}

.hub-footer a {
    display: block;
    margin: 0 0 12px;
    color: #544145;
    font-family: "Haffer-TRIAL", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
}

.hub-footer h3 {
    margin: 0 0 22px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--hub-dark);
}

.hub-contact-list p {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 10px;
}

.hub-contact-list p img,
.hub-contact-list p .email-hub-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    margin-top: 4px;
}

.hub-contact-list p a {
    margin: 0;
    padding: 0;
}

.email-hub-icon {
    width: 15px !important;
    height: 15px !important;
}

.footer-brand-block > p {
    max-width: 260px;
    margin-top: 22px;
}

.powered-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    color: var(--hub-text);
    font-family: "Haffer-TRIAL", sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.powered-mini img {
    width: 150px;
    height: auto;
}

.hub-footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid #d8d6d2;
    color: #544145;
    font-family: "Haffer-TRIAL", sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.footer-copyright {
    font-family: "Urbanist Italic", "Urbanist", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #2A0F14;
}

@media screen and (max-width: 480px) {
    .hub-footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

.footer-brand-note {
    font-family: "Haffer Italic", "Haffer", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #010F25;
}

.hub-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: start;
    justify-items: center;
    overflow-y: auto;
    padding: 24px;
}

.hub-modal.is-open {
    display: grid;
}

.hub-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, .56);;
    backdrop-filter: blur(4px);
}

.hub-auth-shell {
    position: relative;
    margin: auto 0;
    width: min(700px, calc(100vw - 28px));
    min-height: auto;
    padding: 60px 32px 32px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 0 100%, transparent 0 42px, #2A0F1466 43px 44px, transparent 45px),
        radial-gradient(circle at 0 100%, transparent 0 86px, #2A0F1466 87px 88px, transparent 89px),
        radial-gradient(circle at 34% 104%, transparent 0 56px, #2A0F1466 57px 58px, transparent 59px),
        radial-gradient(circle at 34% 104%, transparent 0 116px, #2A0F1466 117px 118px, transparent 119px),
        var(--hub-yellow);
}

.hub-auth-shell-small {
    width: min(640px, calc(100vw - 28px));
    padding: 50px 32px 28px;
}

.hub-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--hub-dark);
    cursor: pointer;
}

.hub-close i {
    font-size: 32px;
    line-height: 1;
}

.hub-auth-card {
    position: relative;
    width: 100%;
    min-height: auto;
    padding: 56px 20px 20px;
    border-radius: 24px;
    background: #fff;
}

.hub-auth-card-forgot {
    min-height: auto;
    padding-top: 56px;
}

.hub-auth-card-otp {
    min-height: auto;
    padding-top: 56px;
    border-radius: 24px;
}

.hub-auth-card-new-password {
    min-height: auto;
    padding-top: 56px;
}

.hub-auth-logo {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: 80%;
    padding: 10px 20px;
    border-radius: 14px;
    background: var(--hub-cream);
}

.hub-auth-logo img {
    height: 44px;
    width: auto;
}

.hub-auth-logo strong {
    font-size: 18px;
}

.hub-auth-logo small {
    margin-top: 2px;
    font-size: 9px;
}

.hub-shield {
    width: 28px;
    height: 32px;
    font-size: 13px;
    border-width: 3px;
}

.hub-auth-card h2 {
    font-family: "Be Vietnam Pro Semi Bold", sans-serif;
    margin: 20px 0 0;
    text-align: center;
    color: var(--hub-dark);
    font-size: 44px;
    font-weight: 600;
    line-height: 1.1;
}

.hub-auth-subtitle {
    font-family: "Haffer", sans-serif;
    margin: 16px 0;
    text-align: center;
    color: var(--hub-text);
    font-size: 16px;
    font-weight: 400;
}

.hub-auth-copy {
    width: 100%;
    margin: 16px 0;
    text-align: center;
    color: var(--hub-text);
    font-family: "Haffer", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
}

.hub-field {
    display: block;
    width: 100%;
    margin: 0 auto 12px;
}

.hub-field span:first-child {
    display: block;
    margin: 0 0 4px 16px;
    color: var(--hub-dark);
    font-family: "Haffer", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.hub-field input {
    width: 100%;
    height: 44px;
    padding: 0 18px;
    border: 1px solid var(--hub-line);
    border-radius: 999px;
    outline: none;
    color: var(--hub-text);
    font-family: "Haffer", sans-serif;
    font-size: 16px;
    font-weight: 400;
    background: #fff;
}

.hub-password-field {
    position: relative;
    display: block;
}

.hub-password-toggle {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    color: var(--hub-yellow-strong);
    cursor: pointer;
}

.hub-password-toggle i {
    font-size: 22px;
}

.hub-forgot {
    display: block;
    width: max-content;
    margin: -2px 0 16px auto;
    color: var(--hub-dark);
    font-family: "Haffer", sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-decoration: underline;
}

.hub-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: var(--hub-yellow);
    color: var(--hub-dark);
    font-family: "Haffer SemiBold", sans-serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

.hub-submit:disabled {
    cursor: wait;
    opacity: .75;
}

.hub-submit i {
    font-size: 12px;
}

.hub-back {
    display: block;
    width: max-content;
    margin: 16px auto 0;
    color: var(--hub-dark);
    font-family: "Haffer SemiBold", sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: underline;
}

.hub-auth-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    color: var(--hub-dark);
    font-family: "Haffer", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.hub-auth-links a {
    color: inherit;
    font-family: "Haffer SemiBold", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
}

.hub-auth-links .otp-back-btn,
.hub-auth-links .password-back-btn {
    font-size: 18px;
}

.hub-otp-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin: 0 0 24px;
    justify-items: center;
}

.hub-otp-input {
    width: 100%;
    max-width: 56px;
    height: 56px;
    border: 1px solid var(--hub-line);
    border-radius: 14px;
    outline: none;
    text-align: center;
    color: var(--hub-dark);
    font-size: 20px;
    font-weight: 400;
    font-family: "Haffer", sans-serif;
    background: #fff;
    transition: border-color 0.2s;
}

.hub-otp-input:focus {
    border-color: var(--hub-yellow);
}

.hub-powered {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: max-content;
    max-width: 80%;
    margin: 20px auto 0;
    padding: 8px 18px;
    border-radius: 999px;
    background: #fff;
    font-family: "urbanist", "Haffer", sans-serif;
    color: var(--modal-powered-by);
    font-size: 16px;
    font-weight: 500;
}

.hub-powered img {
    width: 100px;
    height: auto;
}

.hub-alert {
    margin: 0 0 12px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #ffe1e1;
    color: #8c1020;
    font-family: "Haffer", sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.hub-alert ul {
    margin: 0;
    padding-left: 16px;
}

.hub-alert-success {
    background: #e7ffe8;
    color: #146d2b;
}

@media (max-width: 1050px) {
    .hub-container {
        width: min(100% - 28px, 1340px);
    }

    .site-header {
        padding: 0;
    }

    .header-inner {
        grid-template-columns: auto auto 1fr;
        gap: 14px;
        min-height: 54px;
    }

    .menu-button {
        display: grid;
        place-items: center;
    }

    .nav-links {
        display: none;
    }

    .brand strong {
        font-size: 24px;
    }

    .brand small {
        font-size: 10px;
    }

    .brand-shield {
        width: 30px;
        height: 36px;
        border-width: 2.5px;
        font-size: 14px;
    }

    .login-pill {
        justify-self: end;
        min-height: 33px;
        padding: 0 15px;
        font-size: 12px;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-grid {
        display: block;
        min-height: auto;
        padding: 24px 0 26px;
    }

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

    .hero-kicker {
        margin: 13px 0 12px;
        font-size: 14px;
    }

    .hero-text {
        max-width: 330px;
        margin-bottom: 18px;
        font-size: 11px;
        line-height: 1.4;
    }

    .hero-actions {
        gap: 8px;
    }

    .primary-btn,
    .outline-btn,
    .dark-btn {
        min-height: 33px;
        padding: 0 13px;
        font-size: 10px;
    }

    .hero-flow {
        margin: 26px auto 0;
        max-width: 320px;
    }

    .ticker {
        min-height: 42px;
    }

    .ticker-track span {
        font-size: 14px;
    }

    .ticker-track img {
        width: 22px;
        height: 22px;
    }

    .section {
        padding: var(--section-space-mobile) 0;
    }

    .section h2,
    .pickup-section h2,
    .choose-section h2,
    .community-section h2 {
        font-size: 25px;
    }

    .hub-type-grid,
    .gallery-grid,
    .feature-panels,
    .compare-grid,
    .community-section,
    .hub-footer {
        grid-template-columns: 1fr;
    }

    .hub-type-grid {
        gap: 18px;
        margin-top: 24px;
    }

    .hub-type-card {
        min-height: auto;
    }

    .hub-visual {
        height: 170px;
    }

    .pickup-section {
        padding-top: 0;
        padding-bottom: var(--section-space-mobile);
    }

    .pickup-section p {
        margin-bottom: 24px;
        font-size: 11px;
    }

    .pickupSwiper {
        display: block;
        width: 100%;
        overflow: hidden;
        margin-top: 8px;
    }

    .pickupSwiper .swiper-wrapper,
    .pickupSwiper .swiper-slide {
        height: auto;
    }

    .pickupSwiper .pickup-step {
        box-sizing: border-box;
        gap: 12px;
        font-size: 10px;
    }

    .pickupSwiper .pickup-step img {
        width: 36px;
        height: 36px;
    }

    .pickupSwiper .pickup-step span {
        font-size: 12px;
        max-width: 120px;
    }

    .pickupSwiper .pickup-dot-line {
        display: block;
        top: 18px;
        left: calc(50% + 1.75rem);
        right: auto;
        width: 80px;
    }

    .pickup-steps {
        display: none;
    }

    .feature-panels {
        width: 100%;
        padding: 0 0 var(--section-space-mobile);
        gap: 0;
    }

    .feature-panels .feature-panel {
        min-height: auto;
        padding: 34px 18px;
    }

    .feature-body {
        grid-template-columns: 1fr;
    }

    .feature-image,
    .feature-image-tracking {
        display: none;
    }

    .feature-image-section,
    .feature-image-tracking-section {
        display: flex;
        justify-content: center;
    }

    .feature-image-section .feature-image-mobile,
    .feature-image-tracking-section .feature-image-tracking-mobile {
        width: 100%;
        max-width: 280px;
        height: auto;
    }

    .feature-panels h2 {
        font-size: 25px;
    }

    .feature-panels p {
        margin-bottom: 26px;
        font-size: 11px;
    }

    .feature-panels li,
    .compare-grid li {
        font-size: 11px;
    }

    .choose-section {
        width: 100%;
        padding: 0 0 var(--section-space-mobile);
        gap: 0;
    }

    .choose-section h2 {
        padding: 0;
    }

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

    .traditional,
    .v4-hub {
        width: 100%;
    }

    .section-heading-row {
        align-items: flex-start;
    }

    .arrow-controls button {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .gallery-grid {
        gap: 14px;
        margin-top: 20px;
    }

    .gallery-card {
        clip-path: polygon(0 0, 100% 0, 100% 88%, 86% 100%, 0 100%);
    }

    .gallery-label {
        padding: 8px 22px 8px 12px;
        font-size: 13px;
    }

    .gallery-card img {
        aspect-ratio: 16 / 11;
        min-height: 220px;
    }

    .stats-row {
        flex-direction: column;
        width: min(100% - 28px, 1340px);
        margin-bottom: var(--section-space-mobile);
    }

    .stats-divider {
        width: auto;
        height: 1px;
        margin: 0 18px;
    }

    .stats-row strong {
        font-size: 28px;
    }

    .community-section {
        gap: 12px;
        width: min(100% - 28px, 1340px);
        padding: 0 0 30px;
    }

    .community-section p {
        font-size: 11px;
    }

    .partner-cta {
        display: block;
        width: min(100% - 28px, 1340px);
        margin: 0 auto 38px;
        padding: 20px 18px 24px;
    }

    .partner-cta h2 {
        font-size: 22px;
    }

    .partner-cta p {
        margin-bottom: 18px;
        font-size: 11px;
    }

    .hub-footer {
        gap: 22px;
        padding: 34px 14px;
    }

    .hub-modal {
        padding: 14px;
    }

    .hub-auth-shell {
        width: min(540px, calc(100vw - 28px));
        padding: 44px 20px 24px;
    }

    .hub-auth-shell-small {
        width: min(540px, calc(100vw - 28px));
        padding: 40px 20px 22px;
    }

    .hub-auth-card {
        padding: 50px 16px 18px;
        border-radius: 18px;
    }

    .hub-auth-logo {
        padding: 8px 16px;
    }

    .hub-auth-logo strong {
        font-size: 16px;
    }

    .hub-auth-logo small {
        font-size: 8px;
    }
}

.hub-policy-shell {
    width: min(720px, calc(100vw - 28px));
    min-height: 540px;
}

.hub-policy-card {
    height: min(680px, calc(100vh - 130px));
    padding: 58px 28px 24px;
}

.hub-policy-scroll {
    height: 100%;
    overflow-y: auto;
    padding-right: 12px;
}

.hub-policy-scroll h2 {
    margin: 0 0 10px;
    text-align: center;
    font-size: clamp(30px, 4vw, 40px);
    line-height: 1.04;
}

.hub-policy-scroll h2 span {
    color: var(--blue);
}

.hub-policy-meta {
    margin: 0 0 5px;
    text-align: center;
    color: #0A0A0A;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}
