@tailwind base;
@tailwind components;
@tailwind utilities;

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;900&display=swap');

@font-face {
    font-family: 'Manrope';
    src: url('/assets/fonts/Manrope-VariableFont_wght.ttf') format('truetype');
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --page-bg: #fffdf8;
    --surface: #ffffff;
    --text-primary: #000000;
    --text-muted: #4b4b4b;
    --border-soft: rgba(18, 18, 18, 0.1);
    --shadow-soft: 0 18px 48px rgba(18, 18, 18, 0.06);
    --font-display: 'Manrope', Helvetica, sans-serif;
    --font-ui: 'Inter', Arial, sans-serif;
}

html {
    font-family: var(--font-display);
    color: var(--text-primary);
    background: var(--page-bg);
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--page-bg);
    color: var(--text-primary);
    overflow-wrap: break-word;
}

html {
    overflow-x: hidden;
}

.hero-stage-surface {
    background: linear-gradient(121deg, #fff0c9 40%, #83d4fc 106%);
    background-size: 115% 115%;
    animation: heroSurfaceShift 18s ease-in-out infinite alternate;
}

.hero-stage-fade {
    background: linear-gradient(180deg, rgba(255, 245, 228, 0) 0%, #fff5e4 100%);
}

.hero-stage-glow {
    background: radial-gradient(50% 50%, rgb(255, 150, 74) 8.45595%, rgba(255, 202, 200, 0) 86.5965%);
    mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.906) 89%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.906) 89%, rgba(0, 0, 0, 0) 100%);
    transform-origin: 78% 18%;
    animation: heroGlowFloat 14s ease-in-out infinite alternate;
}

@keyframes heroSurfaceShift {
    0% {
        background-position: 0% 0%;
        filter: saturate(1);
    }

    100% {
        background-position: 100% 18%;
        filter: saturate(1.04);
    }
}

@keyframes heroGlowFloat {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.2;
    }

    100% {
        transform: translate3d(-2.5%, 3%, 0) scale(1.08);
        opacity: 0.28;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-stage-surface,
    .hero-stage-glow {
        animation: none;
    }
}

.site-topbar {
    gap: 1.5rem;
    position: fixed;
    top: 0.5rem;
    left: 50%;
    width: min(calc(100vw - 1.25rem), 1328px);
    transform: translateX(-50%);
    z-index: 50;
}

@media (min-width: 480px) {
    .site-topbar {
        width: min(calc(100vw - 2.5rem), 1328px);
    }
}

.hero-shell {
    max-width: 88rem;
    padding-top: 6.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.section-wrap {
    max-width: 88rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.faq-wrap,
.newsletter-wrap,
.site-footer__inner {
    max-width: 88rem;
}

@media (min-width: 768px) {
    .site-topbar {
        top: 1rem;
        width: min(calc(100vw - 5rem), 1328px);
    }

    .hero-shell {
        padding-top: 7rem;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }

    .section-wrap {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

.top-menu {
    align-items: center;
    justify-content: flex-end;
    gap: clamp(1.5rem, 2vw, 2.75rem);
    margin-left: auto;
    margin-right: clamp(1rem, 2vw, 2rem);
    padding-right: 0.5rem;
    text-align: right;
}

.top-menu a {
    color: inherit;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.25rem;
    text-decoration: none;
    white-space: nowrap;
}

.top-menu a:hover {
    text-decoration: underline;
}

@media (max-width: 479px) {
    .site-topbar .site-topbar-cta span {
        font-size: 0.65rem;
        letter-spacing: 0.03em;
    }
    .site-topbar .site-topbar-cta {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        gap: 0.375rem;
    }
}

.site-topbar-cta {
    flex-shrink: 0;
}

.site-topbar-cta-icon {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

.why-card-image-wrap {
    margin-top: auto;
    padding-top: 1rem;
    min-height: 0;
    flex: 1 1 auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.why-card-image {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.wa-button-icon {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    object-fit: contain;
}

.wa-wrap > :not(.wa-wrap-image) {
    position: relative;
    z-index: 1;
}

.wa-wrap-image {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: min(42vw, 34rem);
    max-width: 58%;
    height: auto;
    pointer-events: none;
}

.faq-shell {
    max-width: 58rem;
    margin: 0 auto;
}

.faq-list {
    border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}

.faq-item summary {
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-question {
    position: relative;
    display: block;
    padding: 1.5rem 3rem 1.5rem 0;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: clamp(1.125rem, 1rem + 0.4vw, 1.4rem);
    font-weight: 700;
    line-height: 1.35;
    color: #000;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1;
}

.faq-item[open] .faq-question::after {
    content: "−";
}

.faq-answer {
    padding: 0 3rem 1.5rem 0;
}

.faq-answer p {
    margin: 0;
    font-family: var(--font-ui);
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(0, 0, 0, 0.76);
}

.newsletter-shell {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 2rem;
    padding: 2rem;
    border-radius: 2.5rem;
    background: linear-gradient(142deg, rgb(236, 192, 191) 0%, rgb(254, 157, 86) 100%);
}

.newsletter-copy {
    position: relative;
    z-index: 1;
    max-width: 36rem;
}

.newsletter-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 1.7rem + 1vw, 3.4rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.newsletter-text {
    margin: 1rem 0 0;
    max-width: 34rem;
    font-family: var(--font-ui);
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.82);
}

.newsletter-form-block {
    margin-top: 2rem;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
}

.newsletter-input {
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
    padding: 1rem 1.25rem;
    font-family: var(--font-ui);
    font-size: 1rem;
    color: #000;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgb(150, 172, 183);
}

.newsletter-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: 0;
    padding: 1rem 1.4rem;
    border-radius: 999px;
    background: #000;
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.newsletter-button-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.newsletter-note {
    margin: 1rem 0 0;
    max-width: 34rem;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.72);
}

.newsletter-visual {
    position: relative;
    min-height: 28rem;
    overflow: hidden;
}

.newsletter-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 0;
}

.payment-methods__list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.payment-methods__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    min-height: 1.375rem;
    padding: 0.3125rem 0.45rem;
    border: 0.5px solid rgb(154, 154, 154);
    border-radius: 4px;
    background: #fff;
}

.payment-methods__logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 0.75rem;
}

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 5.5rem 0 2.25rem;
    background: linear-gradient(180deg, rgba(255, 141, 60, 0) 0%, rgb(255, 141, 60) 45%);
}

.site-footer__inner {
    position: relative;
    z-index: 1;
}

.site-footer__brand {
    display: flex;
    width: 100%;
    max-width: 100%;
}

.site-footer__logo {
    width: 100%;
    max-width: 100%;
    margin-bottom: 6rem;
}

.logo-gojoe--footer {
    --logo-gojoe-color: #fff5e4;
}

.logo-gojoe--black {
    --logo-gojoe-color: #000;
}

.site-footer__content {
    display: grid;
    gap: 1.25rem;
    margin-top: 2rem;
}

.site-footer__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.site-footer__row--top {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.95);
}

.site-footer__shipping {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.site-footer__eyebrow {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.1;
}

.site-footer__shipping-logos {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-footer__shipping-logo {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
}

.site-footer__shipping-logo--uber {
    width: 3.625rem;
}

.site-footer__shipping-logo--dhl {
    width: 4.6875rem;
}

.site-footer__payments {
    margin-left: auto;
}

.site-footer__payments .payment-methods__list {
    justify-content: flex-end;
}

.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
}

.site-footer__nav-link {
    position: relative;
    display: inline-flex;
    width: fit-content;
    padding-bottom: 0.15rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: none;
}

.site-footer__nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #000;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 160ms ease;
}

.site-footer__nav-link:hover,
.site-footer__nav-link:focus-visible {
    color: #000;
}

.site-footer__nav-link:hover::after,
.site-footer__nav-link:focus-visible::after {
    transform: scaleX(1);
}

.site-footer__legal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-footer__socials {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-footer__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    color: #000;
    text-decoration: none;
}

.site-footer__social svg {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
}

.site-footer__copyright {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2;
    color: #000;
}

@media (max-width: 1023px) {
    .newsletter-visual {
        margin-left: -2rem;
        margin-right: -2rem;
        margin-bottom: -2rem;
        min-height: 28rem;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        overflow: hidden;
    }

    .newsletter-image {
        position: static;
        inset: auto;
        width: 24rem;
        max-width: 100%;
        height: auto;
        object-fit: initial;
        object-position: initial;
    }
}

@media (min-width: 1024px) {
    .newsletter-shell {
        grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.8fr);
        align-items: stretch;
        padding: 3.75rem 3.75rem 0;
    }

    .newsletter-copy {
        padding-bottom: 3.25rem;
    }

    .newsletter-visual {
        min-height: 0;
        align-self: stretch;
    }

    .site-footer__content {
        gap: 1.1rem;
    }
}

@media (max-width: 767px) {
    .hero-content .payment-methods__list {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

    .hero-content .payment-methods__logo {
        max-height: 1rem;
    }
}

@media (max-width: 767px) {
    .newsletter-shell {
        border-radius: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
        border-radius: 1.75rem;
    }

    .newsletter-button {
        width: 100%;
    }

    /* handled by max-width: 1023px block */

    .site-footer {
        padding-top: 4rem;
    }

    .site-footer__shipping {
        align-items: flex-start;
    }

    .site-footer__payments {
        margin-left: 0;
    }

    .site-footer__payments .payment-methods__list,
    .site-footer__legal {
        justify-content: flex-start;
    }
}

.bg-third-surface {
    background:
        linear-gradient(180deg, #fff5e4 0%, #fff5e4 18%, rgba(255, 245, 228, 0) 34%),
        linear-gradient(121deg, #fff5e4 0%, #fff5e4 42%, #fff0d8 56%, #ffd09d 74%, #ffad6d 84%, #fff5e4 100%);
}

.bg-third-fade {
    background: linear-gradient(180deg, rgba(255, 245, 228, 0) 0%, #fff5e4 100%);
}

.bg-third-glow {
    background: radial-gradient(52% 52% at 78% 22%, rgb(255, 121, 55) 0%, rgba(255, 188, 120, 0.18) 62%, rgba(255, 188, 120, 0) 100%);
    mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.92) 89%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.92) 89%, rgba(0, 0, 0, 0) 100%);
}

.bg-fourth-surface {
    background:
        linear-gradient(180deg, #fff5e4 0%, rgba(255, 245, 228, 0) 16%, rgba(255, 245, 228, 0) 82%, #fff5e4 100%),
        linear-gradient(90deg, rgb(236, 192, 191) 0%, rgb(254, 157, 86) 100%);
}

.map-box {
    display: flex;
    flex-direction: column;
}

.delivery-description,
.map-area {
    min-width: 0;
}

.map-heading {
    font-size: clamp(1.75rem, 1.2rem + 1.5vw, 2.5rem);
    line-height: 1.1;
}

.map-claim {
    margin: 0.75rem 0 0;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.45;
    color: #000;
}

.map-copy {
    margin: 0.75rem 0 0;
    font-family: var(--font-ui);
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.8);
}

.map-delivery {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.14);
}

.map-delivery summary {
    list-style: none;
}

.map-delivery summary::-webkit-details-marker {
    display: none;
}

.map-delivery__summary {
    position: relative;
    display: block;
    padding: 0 2.5rem 0 0;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 1rem + 0.35vw, 1.45rem);
    font-weight: 700;
    line-height: 1.25;
    color: #000;
}

.map-delivery__summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
}

.map-delivery[open] .map-delivery__summary::after {
    content: "−";
}

.map-delivery__content {
    padding-top: 1rem;
}

.map-delivery__locations {
    margin: 1.25rem 0 0;
    font-family: var(--font-ui);
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.78);
}

.map-area {
    width: 100%;
}

.map-area img {
    display: block;
    width: 100%;
    height: auto;
}

@media (min-width: 1024px) {
    .map-box {
        flex-direction: row;
        align-items: stretch;
    }

    .delivery-description,
    .map-area {
        flex: 0 0 50%;
        width: 50%;
    }

    .map-area img {
        height: 100%;
        object-fit: cover;
    }
}

.site-shell {
    width: min(100%, 72rem);
    margin: 0 auto;
    padding: 1.5rem 1.5rem 5rem;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.5rem 0 2rem;
}

.site-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    color: var(--text-primary);
    text-decoration: none;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
    flex: 1 1 auto;
}

.site-nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2.5rem;
    margin-left: auto;
}

.site-nav-link {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.2;
    color: var(--text-primary);
    text-decoration: none;
}

.site-nav-link:hover {
    color: var(--text-muted);
}

.site-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    background: var(--text-primary);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.site-cta:hover {
    background: #2a2a2a;
}

.type-page {
    width: min(100%, 56rem);
    margin: 0 auto;
    padding: 2rem 0 0;
}

.type-card {
    border: 1px solid var(--border-soft);
    border-radius: 1.5rem;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    padding: clamp(1.5rem, 3vw, 3rem);
}

.eyebrow {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    line-height: 1;
    text-transform: uppercase;
    margin: 0 0 1rem;
}

html h1,
html h2,
html h3,
html h4,
html h5,
html h6 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0;
    margin: 0;
    color: var(--text-primary);
}

html h1 {
    font-size: clamp(2.75rem, 7vw, 3.75rem);
    line-height: 1.1;
    padding: 1rem 0;
}

html h2 {
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    line-height: 1.1;
}

html h3 {
    font-size: clamp(1.75rem, 4.5vw, 3rem);
    line-height: 1.15;
}

html h4 {
    font-size: clamp(1.35rem, 3vw, 2.25rem);
    line-height: 1.2;
}

html h5 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    line-height: 1.2;
}

html h6 {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    line-height: 1;
    text-transform: uppercase;
}

p,
li {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.6;
    margin: 0;
}

.lead {
    font-size: 1.15rem;
}

.type-stack {
    display: grid;
    gap: 1.5rem;
}

.type-sample {
    display: grid;
    gap: 0.5rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--border-soft);
}

.type-meta {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0;
    color: var(--text-muted);
}

.type-grid {
    display: grid;
    gap: 2rem;
}

ul {
    margin: 0;
    padding-left: 1.25rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-copy {
    margin-bottom: 2rem;
}

.logo-gojoe {
    aspect-ratio: 4.94;
    height: auto;
    cursor: pointer;

    background-color: var(--logo-gojoe-color, #000);
    font-family: sans-serif;
    font-size: 12px;
    -webkit-font-smoothing: antialiased;

    mask: url('data:image/svg+xml;utf8,<svg display=\"block\" role=\"presentation\" viewBox=\"0 0 163 33\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M 16.478 32.958 C 11.889 32.958 8.078 31.378 4.829 28.128 C 1.58 24.879 0 21.069 0 16.48 C 0 11.89 1.58 8.08 4.829 4.831 C 7.796 1.863 11.213 0.296 15.274 0.038 L 15.589 0.018 L 15.589 4.036 L 15.317 4.059 C 12.378 4.307 9.801 5.518 7.66 7.66 C 5.239 10.082 4.01 13.049 4.01 16.479 C 4.01 19.908 5.239 22.875 7.66 25.297 C 10.082 27.718 13.048 28.946 16.478 28.946 L 17.367 28.946 L 17.367 17.368 L 21.378 17.368 L 21.378 32.957 L 16.478 32.957 Z M 42.53 32.958 C 37.941 32.958 34.13 31.378 30.881 28.128 C 27.632 24.878 26.052 21.069 26.052 16.479 C 26.052 11.89 27.632 8.08 30.881 4.83 C 34.131 1.581 37.942 0 42.53 0 C 47.118 0 50.929 1.58 54.179 4.829 C 57.428 8.079 59.008 11.89 59.008 16.478 C 59.008 21.067 57.428 24.878 54.179 28.127 C 50.929 31.377 47.118 32.956 42.53 32.956 Z M 42.53 4.011 C 39.101 4.011 36.134 5.239 33.712 7.661 C 31.29 10.083 30.062 13.05 30.062 16.479 C 30.062 19.909 31.29 22.876 33.712 25.297 C 36.134 27.719 39.1 28.947 42.53 28.947 C 45.96 28.947 48.926 27.719 51.348 25.297 C 53.77 22.876 54.998 19.909 54.998 16.479 C 54.998 13.05 53.77 10.083 51.348 7.661 C 48.926 5.239 45.959 4.011 42.53 4.011 Z M 72.919 28.921 L 73.191 28.899 C 76.13 28.651 78.707 27.439 80.848 25.297 C 83.269 22.876 84.498 19.909 84.498 16.479 L 84.498 0 L 88.508 0 L 88.508 16.478 C 88.508 21.068 86.928 24.878 83.678 28.127 C 80.711 31.094 77.295 32.661 73.234 32.919 L 72.919 32.939 Z M 109.66 32.958 C 105.071 32.958 101.26 31.378 98.011 28.128 C 94.762 24.878 93.182 21.069 93.182 16.479 C 93.182 11.89 94.762 8.08 98.011 4.83 C 101.26 1.58 105.071 0 109.66 0 C 114.249 0 118.059 1.58 121.309 4.829 C 124.558 8.079 126.138 11.89 126.138 16.478 C 126.138 21.067 124.558 24.878 121.309 28.127 C 118.059 31.377 114.248 32.956 109.66 32.956 Z M 109.66 4.011 C 106.23 4.011 103.263 5.239 100.842 7.661 C 98.42 10.083 97.192 13.05 97.192 16.479 C 97.192 19.909 98.42 22.876 100.842 25.297 C 103.262 27.719 106.229 28.947 109.66 28.947 C 113.09 28.947 116.056 27.719 118.478 25.297 C 120.9 22.876 122.128 19.909 122.128 16.479 C 122.128 13.05 120.9 10.083 118.478 7.661 C 116.055 5.239 113.089 4.011 109.66 4.011 Z M 130.811 32.958 L 130.811 0 L 162.681 0 L 162.681 4.011 L 134.822 4.011 L 134.822 14.474 L 157.978 14.474 L 157.978 18.484 L 134.822 18.484 L 134.822 28.946 L 162.681 28.946 L 162.681 32.958 Z\" fill=\"var(--token-2bbd5211-59d4-4ff1-86c6-3c3fe32eb21b, rgb(0, 0, 0))\" height=\"32.95780000066206px\" id=\"Xohcl8JAW\" stroke-dasharray=\"\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\" stroke-width=\"0.0988024\" stroke=\"var(--token-2bbd5211-59d4-4ff1-86c6-3c3fe32eb21b, rgb(0, 0, 0))\" width=\"162.68100463867188px\"/></svg>') no-repeat center / contain;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg display=\"block\" role=\"presentation\" viewBox=\"0 0 163 33\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M 16.478 32.958 C 11.889 32.958 8.078 31.378 4.829 28.128 C 1.58 24.879 0 21.069 0 16.48 C 0 11.89 1.58 8.08 4.829 4.831 C 7.796 1.863 11.213 0.296 15.274 0.038 L 15.589 0.018 L 15.589 4.036 L 15.317 4.059 C 12.378 4.307 9.801 5.518 7.66 7.66 C 5.239 10.082 4.01 13.049 4.01 16.479 C 4.01 19.908 5.239 22.875 7.66 25.297 C 10.082 27.718 13.048 28.946 16.478 28.946 L 17.367 28.946 L 17.367 17.368 L 21.378 17.368 L 21.378 32.957 L 16.478 32.957 Z M 42.53 32.958 C 37.941 32.958 34.13 31.378 30.881 28.128 C 27.632 24.878 26.052 21.069 26.052 16.479 C 26.052 11.89 27.632 8.08 30.881 4.83 C 34.131 1.581 37.942 0 42.53 0 C 47.118 0 50.929 1.58 54.179 4.829 C 57.428 8.079 59.008 11.89 59.008 16.478 C 59.008 21.067 57.428 24.878 54.179 28.127 C 50.929 31.377 47.118 32.956 42.53 32.956 Z M 42.53 4.011 C 39.101 4.011 36.134 5.239 33.712 7.661 C 31.29 10.083 30.062 13.05 30.062 16.479 C 30.062 19.909 31.29 22.876 33.712 25.297 C 36.134 27.719 39.1 28.947 42.53 28.947 C 45.96 28.947 48.926 27.719 51.348 25.297 C 53.77 22.876 54.998 19.909 54.998 16.479 C 54.998 13.05 53.77 10.083 51.348 7.661 C 48.926 5.239 45.959 4.011 42.53 4.011 Z M 72.919 28.921 L 73.191 28.899 C 76.13 28.651 78.707 27.439 80.848 25.297 C 83.269 22.876 84.498 19.909 84.498 16.479 L 84.498 0 L 88.508 0 L 88.508 16.478 C 88.508 21.068 86.928 24.878 83.678 28.127 C 80.711 31.094 77.295 32.661 73.234 32.919 L 72.919 32.939 Z M 109.66 32.958 C 105.071 32.958 101.26 31.378 98.011 28.128 C 94.762 24.878 93.182 21.069 93.182 16.479 C 93.182 11.89 94.762 8.08 98.011 4.83 C 101.26 1.58 105.071 0 109.66 0 C 114.249 0 118.059 1.58 121.309 4.829 C 124.558 8.079 126.138 11.89 126.138 16.478 C 126.138 21.067 124.558 24.878 121.309 28.127 C 118.059 31.377 114.248 32.956 109.66 32.956 Z M 109.66 4.011 C 106.23 4.011 103.263 5.239 100.842 7.661 C 98.42 10.083 97.192 13.05 97.192 16.479 C 97.192 19.909 98.42 22.876 100.842 25.297 C 103.262 27.719 106.229 28.947 109.66 28.947 C 113.09 28.947 116.056 27.719 118.478 25.297 C 120.9 22.876 122.128 19.909 122.128 16.479 C 122.128 13.05 120.9 10.083 118.478 7.661 C 116.055 5.239 113.089 4.011 109.66 4.011 Z M 130.811 32.958 L 130.811 0 L 162.681 0 L 162.681 4.011 L 134.822 4.011 L 134.822 14.474 L 157.978 14.474 L 157.978 18.484 L 134.822 18.484 L 134.822 28.946 L 162.681 28.946 L 162.681 32.958 Z\" fill=\"var(--token-2bbd5211-59d4-4ff1-86c6-3c3fe32eb21b, rgb(0, 0, 0))\" height=\"32.95780000066206px\" id=\"Xohcl8JAW\" stroke-dasharray=\"\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\" stroke-width=\"0.0988024\" stroke=\"var(--token-2bbd5211-59d4-4ff1-86c6-3c3fe32eb21b, rgb(0, 0, 0))\" width=\"162.68100463867188px\"/></svg>') no-repeat center / contain;
}

@media (max-width: 640px) {
    .site-shell {
        padding: 1rem 1rem 3rem;
    }

    .site-header {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 1.5rem;
    }

    .site-nav {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .site-nav-links {
        width: 100%;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 1rem 1.25rem;
        margin-left: 0;
    }

    .type-page {
        padding: 1rem 0 0;
    }

    .type-card {
        border-radius: 1rem;
        padding: 1.25rem;
    }
}

/* MARQUEE */
.marquee {
    padding: 2.5rem 0;
}

.splide__slide {
    width: 27.5rem;
}

.usage-card {
    position: relative;
    min-height: 34.375rem;
    overflow: hidden;
    border-radius: 1rem;
    display: flex;
    align-items: flex-start;
    color: var(--usage-text-color, #ffffff);
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.42) 100%), var(--usage-image);
    background-position: center;
    background-size: cover;
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.22);
}

.usage-card-content {
    position: relative;
    z-index: 1;
    padding: 1.75rem;
}

.usage-card h3 {
    color: inherit;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1;
    margin-bottom: 1rem;
}

.usage-card p {
    max-width: 22rem;
    color: inherit;
    font-size: 1rem;
    line-height: 1.55;
    margin: 0;
}

.card {
    height: 34.375rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.8);
}
