.public-shell {
    background:
        radial-gradient(circle at top left, rgba(185, 28, 28, 0.06), transparent 26%),
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.06), transparent 22%),
        linear-gradient(180deg, #faf7f2 0%, #f7f3ec 100%);
}

.public-brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.08rem;
    text-align: left;
}

.public-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 3.85rem;
    height: 3.85rem;
    overflow: hidden;
}

.public-brand-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
    transform: translate(-0.12rem, 0.02rem);
}

.public-brand-title {
    display: block;
    color: #173f77;
    font-size: 1.52rem;
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 0.88;
}

.public-brand-subtitle {
    display: block;
    color: #004b43;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 0.92;
}

.public-brand-subtitle + .public-brand-subtitle {
    margin-top: 0.02rem;
}

@media (min-width: 768px) {
    .public-brand-lockup {
        gap: 0.12rem;
    }

    .public-brand-mark {
        width: 4.75rem;
        height: 4.75rem;
    }

    .public-brand-copy {
        transform: translate(-0.18rem, 0.02rem);
    }

    .public-brand-title {
        font-size: 1.98rem;
        line-height: 0.84;
    }

    .public-brand-subtitle {
        font-size: 0.78rem;
        line-height: 0.9;
    }
}

.public-nav-link {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    border: 0;
    background: transparent;
    padding: 0.55rem 0.8rem;
    color: #3f3f46;
    font: inherit;
    line-height: 1.25rem;
    text-align: left;
    white-space: nowrap;
    transition: background-color 180ms ease, color 180ms ease,
        transform 180ms ease;
    list-style: none;
    cursor: pointer;
}

.public-nav-link:hover {
    background: rgba(255, 255, 255, 0.8);
}

.public-nav-link.is-active {
    background: #b91c1c;
    color: #fff;
}

.public-nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.public-nav-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 0.5rem;
}

.public-nav-panel {
    position: absolute;
    left: 0;
    top: calc(100% + 0.25rem);
    min-width: 14rem;
    border: 1px solid #e7e5e4;
    border-radius: 1.5rem;
    background: #fff;
    padding: 0.5rem;
    box-shadow: 0 22px 50px rgba(24, 24, 27, 0.12);
    display: none;
    z-index: 60;
}

.public-nav-dropdown:hover .public-nav-panel,
.public-nav-dropdown:focus-within .public-nav-panel {
    display: block;
}

.public-nav-panel-link {
    display: block;
    border-radius: 1rem;
    padding: 0.875rem 1rem;
    color: #3f3f46;
    font-size: 0.875rem;
    transition: background-color 180ms ease;
}

.public-nav-panel-link:hover {
    background: #f5f5f4;
}

.public-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding: 0.75rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    transition: background-color 180ms ease, border-color 180ms ease,
        color 180ms ease;
    white-space: nowrap;
}

.public-header-cta-primary {
    background: #b91c1c;
    color: #fff;
}

.public-header-cta-primary:hover {
    background: #991b1b;
}

.public-header-cta-secondary {
    border: 1px solid #d6d3d1;
    background: rgba(255, 255, 255, 0.7);
    color: #44403c;
}

.public-header-cta-secondary:hover {
    background: #fff;
    border-color: #b91c1c;
    color: #991b1b;
}

.public-header-login {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #52525b;
    transition: color 180ms ease;
}

.public-header-login:hover {
    color: #18181b;
}

.mobile-menu-open {
    overflow: hidden;
}

.public-mobile-menu {
    max-height: calc(100vh - 5.5rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

[data-animate] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 500ms ease, transform 500ms ease;
}

[data-animate].in-view {
    opacity: 1;
    transform: translateY(0);
}

.swiper-pagination-bullet {
    background: #991b1b;
    opacity: 0.35;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.lpk-section-shell {
    margin-left: auto;
    margin-right: auto;
    max-width: 80rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 768px) {
    .lpk-section-shell {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.lpk-kicker {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.lpk-card {
    border: 1px solid #e7e5e4;
    border-radius: 2rem;
    background: #fff;
    box-shadow: 0 12px 40px rgba(24, 24, 27, 0.05);
}

.public-social-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.public-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(231, 229, 228, 0.18);
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.06);
    color: #f5f5f4;
    transition: transform 180ms ease, background-color 180ms ease,
        border-color 180ms ease, color 180ms ease;
}

.public-social-link:hover {
    transform: translateY(-1px);
    background: #ffffff;
    border-color: #ffffff;
    color: #171717;
}

.public-social-link svg {
    width: 1.1rem;
    height: 1.1rem;
}
