@charset "UTF-8";

@font-face {
    font-family: 'HelveticaNeue';
    src: url('/assets/fonts/HelveticaNeueLight.otf') format('opentype');
    font-weight: 400;
    font-display: swap
}

@font-face {
    font-family: 'HelveticaNeue';
    src: url('/assets/fonts/HelveticaNeueMedium.otf') format('opentype');
    font-weight: 700;
    font-display: swap
}

@font-face {
    font-family: 'HelveticaNeue';
    src: url('/assets/fonts/HelveticaNeueBold.otf') format('opentype');
    font-weight: 800;
    font-display: swap
}

@font-face {
    font-family: 'HelveticaNeue';
    src: url('/assets/fonts/HelveticaNeueThin.otf') format('opentype');
    font-weight: 100;
    font-display: swap
}

@font-face {
    font-family: 'Cooper Md BT';
    src: url('/assets/fonts/Cooper Md BT Medium.ttf') format('truetype');
    font-weight: 400;
    font-display: swap
}

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

@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: "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 {
    --yellow: #FFE01B;
    --wine: #2A0F14;
    --ink: #2b2523;
    --soft: #F5F5F5;
    --gold: #E7B75F;
    --section-space: 60px;
    --section-space-mobile: 40px
}

* {
    box-sizing: border-box
}

* {
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: #fff;
    color: var(--ink);
    font-family: 'HelveticaNeue', Arial, sans-serif
}

.page-shell {
    overflow: clip
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #FFFFFF;
    border-bottom: 1px solid #00000033;
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2b2523;
    text-decoration: none
}

.brand img {
    display: block;
    height: 35px;
    width: auto
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto
}

.nav-links a {
    color: #231E15;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
    transition: color .2s
}

.nav-links a:hover {
    color: #231E15
}

.nav-links a.active {
    color: #231E15;
    font-weight: 700
}

.menu-button {
    display: none;
    width: 34px;
    height: 34px;
    padding: 7px 5px;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: var(--ink)
}

.menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    background: currentColor;
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg)
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg)
}

.menu-backdrop {
    display: none
}

.hero {
    position: relative;
    overflow: hidden;
    background: #211e17;
    color: white;
    text-align: left
}

.hero-art {
    position: absolute;
    inset: 0;
    background: url('../img/v4-master-hero-section-background.png') center/cover no-repeat
}

.hero-wash {
    position: absolute;
}

.hero-copy {
    position: relative;
    z-index: 1;
    padding: 155px 0;
    text-align: left
}

.hero h1,
.section h2,
.journey-section h2,
.card-body h3,
.ecosystem h3,
.build-grid h3,
.vision h2,
.impact-info h2 {
    font-family: 'Cooper Md BT', Georgia, serif
}

.hero h1 {
    font-family: 'Cooper Md BT';
    font-size: 70px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.18;
    letter-spacing: -2.5px;
    margin: 0 0 28px
}

.hero mark {
    display: inline-block;
    background: var(--yellow);
    padding: 0px 5px;
    color: #231E15
}

.hero p {
    font-family: 'HelveticaNeue', Arial, sans-serif;
    max-width: 650px;
    font-size: 20px;
    line-height: 1.45;
    margin: 0;
}

.actions {
    display: flex;
    gap: 15px;
    margin-top: 31px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 45px;
    padding: 16px 24px;
    border: 1px solid transparent;
    border-radius: 60px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, color .2s
}

.primary-btn {
    background: var(--yellow);
    color: #231E15;
}

.primary-btn:hover {
    background: #e6c809
}

.outline-btn {
    background: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.outline-btn:hover {
    background: rgba(255, 255, 255, .1)
}

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

.section > h2,
.section h2,
.journey-section h2 {
    text-align: center;
    color: #2A0F14;
    font-family: 'Cooper Md BT';
    font-size: 45px;
    font-weight: 400;
    margin: 0
}

.lead {
    text-align: center;
    margin: 13px 0 42px;
    color: #2A0F14;
    font-size: 18px;
    font-weight: 400;
}

.venture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.venture-card {
    min-height: 510px;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.venture-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15)
}

.card-image {
    height: 255px;
    background-size: cover;
    background-position: center;
    border-radius: 30px
}

.online {
    background-image: url('../img/our-ventures-online-business.jpg')
}

.shipping {
    background-image: url('../img/our-ventures-v4-shipping-solutions.png')
}

.hubs {
    background-image: url('../img/our-ventures-v4-hubs.png')
}

.card-body {
    padding: 19px 24px 18px;
    display: flex;
    flex: 1;
    flex-direction: column
}

.card-body h3 {
    font-family: 'Cooper Md BT';
    font-weight: 400;
    font-size: 30px;
    margin: 0 0 9px
}

.card-body p {
    font-weight: 400;
    font-size: 18px;
    margin: 0 0 13px
}

.card-body ul {
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 13px;
    line-height: 1.8
}

.card-body li {
    font-weight: 400;
    font-size: 18px;
    display: flex;
    align-items: center
}

.card-body li img {
    flex: 0 0 14px;
    width: 18px;
    height: 18px;
    object-fit: contain;
    margin-right: 8px
}

.card-body li a {
    color: inherit;
    text-decoration: none;
    font-size: inherit;
    font-weight: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0px;
}

.card-body li a.external-link {
    text-decoration: underline;
    text-underline-offset: 3px
}

.card-body li a.external-link i {
    font-size: 14px;
    margin-left: 2px
}

.card-body li a img {
    margin-right: 0
}

.card-body a {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    color: var(--wine)
}

.card-body a b {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    background: var(--yellow);
    border-radius: 50%;
    font-family: Arial;
    color: #2d2926;
}

.card-body a b img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dark {
    background: var(--wine);
    color: #FFFFFF;
}

.dark a {
    color: #FFFFFF;
}

.yellow-card {
    background: #FAE261;
}

.white-card {
    background: #FFFFFF;
}

.ecosystem {
    padding-top: 80px;
    padding-bottom: 80px
}

.section.ecosystem h2 {
    text-align: left;
    color: #231E15
}

.ecosystem h3 {
    font-family: 'Cooper Md BT';
    font-weight: 400;
    font-size: 25px;
    margin: 14px 0 7px;
    color: #231E15
}

.ecosystem p {
    color: #231E15;
    font-weight: 400;
    font-size: 18px;
}

#ecosystem .eco-flow {
    max-width: 1760px;
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    top: 0
}

#ecosystem > .container {
    position: relative;
    height: 500px;
}

.ventures-section {
    background: #F5F5F5;
}

.journey-section {
    padding: 66px 0 80px;
    background: #F5F5F5;
}

.timeline {
    position: relative;
    margin: 59px auto 0;
    max-width: 1750px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    text-align: center
}

.timeline article {
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s ease, transform 0.5s ease
}

.timeline article.animate-in {
    opacity: 1;
    transform: translateX(0)
}

.timeline article:not(:last-child)::after {
    content: '';
    position: absolute;
    z-index: 0;
    top: 11px;
    left: 50%;
    width: calc(100% + 18px);
    border-top: 2px dashed #9d9997;
}

.timeline article::before {
    content: '';
    display: block;
    position: relative;
    z-index: 1;
    width: 16px;
    height: 16px;
    border: 3px solid #231E15;
    background: var(--yellow);
    border-radius: 50%;
    margin: 0 auto 22px
}

.timeline b {
    font-weight: 400;
    font-size: 25px;
    font-family: 'Cooper Md BT';
}

.timeline p {
    font-size: 18px;
    line-height: 1.25;
    margin: 7px 0 0;
    color: #231E15;
}

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

.build-grid article {
    min-height: 180px;
    padding: 27px 20px;
    background: var(--soft);
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.build-grid article:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15)
}

.build-grid img {
    display: block;
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin: 0 auto
}

.build-grid h3 {
    font-weight: 400;
    font-size: 25px;
    color: #231E15;
    margin: 12px 0 8px
}

.build-grid p {
    font-size: 18px;
    line-height: 1.25;
    margin: 0;
    color: #231E15;
}

.impact-grid-layout {
    display: grid;
    grid-template-columns: minmax(360px, .75fr) minmax(480px, 1fr);
    gap: 42px;
    align-items: center
}

.vision {
    min-height: 550px;
    padding: 32px;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background: url('../img/our-vision-background.png');
    background-size: cover;
    background-position: center;
    color: white
}

.vision > div {
    max-width: 410px
}

.vision small {
    color: var(--yellow);
    font-family: 'Cooper Md BT', Georgia, serif;
    font-size: 30px;
    font-weight: 400;
}

.vision h2 {
    text-align: left;
    color: #FFFFFF;
    font-family: 'Cooper Md BT', Georgia, serif;
    font-size: 30px;
    margin: 7px 0 15px
}

.vision p {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.35;
    margin: 0 0 12px
}

.vision .btn {
    margin-top: 5px
}

.impact {
    padding-top: 0px !important;
}

.impact-info h2 {
    text-align: left;
    font-size: 45px;
    color: #231E15;
}

.impact-info p {
    font-size: 18px;
    color: #231E15;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 35px
}

.impact-grid b {
    padding: 15px;
    height: 170px;
    border-radius: 10px;
    background: var(--soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #3e3935;
    font-size: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.impact-grid b:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15)
}

.impact-grid b img {
    display: block;
    width: 30px;
    height: 30px;
    object-fit: contain
}

.impact-grid span {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 12px
}

.site-footer {
    background: var(--gold);
    color: #332b23;
    font-size: 12px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.55fr repeat(4, 1fr);
    gap: 10px;
    padding: 45px 0 52px
}

.footer-logo {
    display: block;
    width: 210px;
    height: auto;
    margin-bottom: 12px;
    background: white;
    border-radius: 10px;
    padding: 5px;
}

.footer-brand p {
    margin: 0;
    line-height: 1.5
}

.footer-grid h4 {
    margin: 0 0 18px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 800;
    font-size: 18px
}

.footer-grid a,
.footer-grid p {
    font-family: 'Haffer';
    color: #231E15;
    font-weight: 400;
    font-size: 16px;
    display: block;
    margin: 0 0 9px;
    text-decoration: none;
    line-height: 1.35
}

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

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 32px 0;
    border-top: 1px solid #00000033;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Urbanist Italic';
}

.footer-brand-note {
    font-family: 'Haffer Italic';
    font-size: 14px;
    font-weight: 400;
}

html.v4master-modal-open {
    overflow: hidden
}

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

.v4master-modal.is-open {
    display: grid
}

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

.v4master-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, rgba(42, 15, 20, .4) 43px 44px, transparent 45px),
        radial-gradient(circle at 0 100%, transparent 0 86px, rgba(42, 15, 20, .4) 87px 88px, transparent 89px),
        radial-gradient(circle at 34% 104%, transparent 0 56px, rgba(42, 15, 20, .4) 57px 58px, transparent 59px),
        radial-gradient(circle at 34% 104%, transparent 0 116px, rgba(42, 15, 20, .4) 117px 118px, transparent 119px),
        var(--yellow)
}

.v4master-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: #fff;
    cursor: pointer
}

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

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

.v4master-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(--soft);
}

.v4master-auth-logo img {
    height: 40px;
    width: auto
}

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

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

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

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

.v4master-policy-scroll h2 span {
    color: var(--wine)
}

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



@media (max-width: 768px) {

    .v4master-auth-logo img {
        height: 34px;
    }

    .container {
        width: 100%;
        padding: 0 16px
    }

    .header-inner {
        min-height: 60px
    }

    .nav-links {
        display: flex;
        position: fixed;
        z-index: 22;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(82vw, 320px);
        flex-direction: column;
        background: #fff;
        padding: 88px 28px 28px;
        box-shadow: -9px 0 20px rgba(0, 0, 0, .12);
        gap: 20px;
        margin: 0;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform .25s ease, visibility .25s ease
    }

    .nav-links.open {
        transform: translateX(0);
        visibility: visible
    }

    .menu-backdrop {
        display: block;
        position: fixed;
        z-index: 21;
        inset: 0;
        padding: 0;
        border: 0;
        background: rgba(0, 0, 0, .38);
        opacity: 0;
        visibility: hidden;
        transition: opacity .25s ease, visibility .25s ease
    }

    .menu-backdrop.open {
        opacity: 1;
        visibility: visible
    }

    .menu-button {
        display: block;
        position: relative;
        z-index: 23
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.12;
        letter-spacing: -1.4px;
        margin-bottom: 16px
    }

    .hero-art {
        background: url('../img/v4-master-hero-section-background-mobile.png') center top / cover no-repeat
    }

    .hero mark {
        padding: 3px 5px
    }

    .hero p {
        font-size: 20px;
    }

    .hero-copy {
        min-height: 670px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding-bottom: 50px;
    }

    .actions {
        margin-top: 18px;
        gap: 9px
    }

    .btn {
        min-height: 45px;
        padding: 0 14px;
        font-size: 16px
    }

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

    .section .container > h2,
    .journey-section h2,
    .impact-info h2 {
        font-size: 30px
    }

    .lead,
    .ecosystem h3 {
        font-size: 20px;
        margin: 9px 0 20px
    }

    .venture-grid {
        display: flex;
        flex-direction: column;
        gap: 14px
    }

    .venture-card {
        min-height: 0;
        border-radius: 30px;
    }

    .venture-card:hover,
    .build-grid article:hover,
    .impact-grid b:hover {
        transform: none;
        box-shadow: none
    }

    .card-body {
        min-height: 165px;
        padding: 13px 14px 12px
    }

    .card-body h3 {
        font-size: 20px;
        margin-bottom: 6px
    }

    .card-body p {
        font-size: 16px;
        margin-bottom: 8px;
        margin-top: 4px;
    }

    .card-body ul {
        font-size: 16px;
        line-height: 1.65;
    }

    .card-body li img {
        flex-basis: 10px;
        width: 20px;
        height: 20px;
    }

    .card-body a {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .card-body a b {
        width: 35px;
        height: 35px
    }

    .ecosystem {
        padding-top: 52px;
        padding-bottom: 48px
    }

    #ecosystem .eco-flow {
        content: url('../img/our-ecosystem-background-mobile.png');
        position: static;
        margin-top: 30px;
        width: 100%;
        padding: 0 10px;
    }

    #ecosystem > .container {
        position: static;
        height: auto
    }

    .ecosystem > h2 {
        text-align: center
    }

    .ecosystem h3 {
        text-align: left;
        margin: 9px 0 5px
    }

    .ecosystem p {
        text-align: left;
        font-size: 16px;
        line-height: 1.35
    }

    .journey-section {
        padding: 45px 0
    }

    .timeline {
        margin-top: 29px;
        grid-template-columns: 1fr;
        gap: 28px
    }

    .timeline article {
        display: block;
        width: calc(50% - 24px);
        text-align: left
    }

    .timeline article:nth-child(odd) {
        justify-self: start;
        text-align: right
    }

    .timeline article:nth-child(even) {
        justify-self: end
    }

    .timeline article::before {
        position: absolute;
        top: 0;
        width: 11px;
        height: 11px;
        border-width: 2px;
        margin: 0
    }

    .timeline article:nth-child(odd)::before {
        left: calc(100% + 18px)
    }

    .timeline article:nth-child(even)::before {
        left: -30px
    }

    .timeline article:not(:last-child)::after {
        display: block;
        top: 5px;
        width: 0;
        height: calc(100% + 28px);
        border-top: 0;
        border-left: 1px dotted #9d9997
    }

    .timeline article:nth-child(odd)::after {
        left: calc(100% + 25px)
    }

    .timeline article:nth-child(even)::after {
        left: -24px
    }

    .timeline article:last-child::after {
        display: none
    }

    .timeline b {
        font-size: 20px;
    }

    .timeline p {
        font-size: 16px;
        margin-top: 5px;
    }

    .build-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 23px
    }

    .build-grid img {
        width: 40px;
        height: 40px
    }

    .build-grid h3 {
        font-size: 20px;
        margin: 5px 0 5px
    }

    .build-grid p {
        font-size: 16px;
    }

    .impact-grid-layout {
        display: block
    }

    .vision {
        min-height: 520px;
        padding: 22px;
        border-radius: 40px;
        background-image: url('../img/our-vision-background-mobile.png')
    }

    .vision small {
        font-size: 24px;
    }

    .vision h2 {
        font-size: 24px;
        margin: 5px 0 11px
    }

    .vision p {
        font-size: 16px;
        margin-bottom: 8px
    }

    .impact-info {
        margin-top: 28px
    }

    .impact-info h2 {
        text-align: left;
    }

    .impact-info > p {
        text-align: left;
        font-size: 16px;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 18px;
        gap: 7px
    }

    .impact-grid b {
        height: 120px;
        font-size: 10px
    }

    .impact-grid b img {
        width: 18px;
        height: 18px
    }

    .impact-grid span {
        font-size: 14px;
        margin-top: 8px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 23px 18px;
        padding: 32px 0 32px;
        font-size: 8px
    }

    .footer-brand {
        grid-column: span 2
    }

    .footer-logo {
        width: 150px;
        margin-bottom: 8px
    }

    .footer-grid h4 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .footer-grid a,
    .footer-grid p {
        margin-bottom: 5px
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .v4master-modal {
        padding: 14px
    }

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

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

    .v4master-auth-logo {
        padding: 8px 16px
    }

    .v4master-policy-shell {
        width: min(540px, calc(100vw - 28px))
    }

    .v4master-policy-card {
        height: auto;
        max-height: none
    }

    .v4master-policy-scroll {
        max-height: calc(100vh - 155px)
    }
}
