:root {
    color-scheme: light;
    font-family: "Aptos", "Segoe UI", sans-serif;
    background: #fbfbf7;
    color: #111814;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: linear-gradient(rgba(17, 24, 20, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 24, 20, .025) 1px, transparent 1px), radial-gradient(circle at top left, rgba(185, 255, 102, .20), transparent 34rem), radial-gradient(circle at 85% 10%, rgba(48, 168, 145, .14), transparent 28rem), #fbfbf7;
    background-size: 34px 34px, 34px 34px, auto, auto, auto;
}

a {
    color: inherit;
}

.tenant-header,
.tenant-footer,
.tenant-hero,
.content-section {
    width: min(1280px, calc(100% - 32px));
    margin-inline: auto;
}

.tenant-header {
    position: sticky;
    top: 12px;
    z-index: 20;
    display: grid;
    grid-template-columns: minmax(210px, auto) minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    margin-top: 12px;
    padding: 10px 12px;
    border: 1px solid rgba(17, 34, 26, .08);
    border-radius: 24px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 45px rgba(17, 34, 26, .07);
}

.tenant-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

    .tenant-brand span,
    .hero-orb span {
        display: inline-flex;
        width: 48px;
        height: 48px;
        align-items: center;
        justify-content: center;
        border-radius: 15px;
        background: var(--tenant-primary);
        color: var(--tenant-accent);
        font-weight: 900;
    }

    .tenant-brand img {
        width: 48px;
        height: 48px;
        border-radius: 15px;
        object-fit: cover;
    }

    .tenant-brand strong {
        max-width: 190px;
        line-height: 1.15;
    }

.tenant-header nav {
    display: flex;
    gap: 3px;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: thin;
}

    .tenant-header nav a {
        flex: 0 0 auto;
        padding: 9px 11px;
        border-radius: 999px;
    color: rgba(17, 34, 26, .82);
        font-size: 14px;
        font-weight: 760;
        text-decoration: none;
    }

        .tenant-header nav a:hover {
            background: rgba(17, 34, 26, .08);
        }

.tenant-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border: 0;
    border-radius: 15px;
    background: var(--tenant-primary);
    background: color-mix(in srgb, var(--tenant-primary) 86%, #07110c);
    color: #fff;
    font-weight: 850;
    text-decoration: none;
    cursor: pointer;
}

    .tenant-cta.large {
        min-height: 52px;
        padding-inline: 24px;
    }

.tenant-hero {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, .85fr);
    gap: 56px;
    align-items: center;
    padding: 72px 0 52px;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(185, 255, 102, .45);
    color: #0b3327;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

h1, h2, h3, p {
    overflow-wrap: break-word;
    word-break: normal;
}

.tenant-hero h1 {
    max-width: 820px;
    margin: 0;
    color: #07110c;
    font-size: clamp(44px, 6.2vw, 76px);
    line-height: .98;
    letter-spacing: -.055em;
}

.tenant-hero p {
    max-width: 720px;
    margin: 22px 0;
    color: rgba(17, 34, 26, .78);
    font-size: clamp(17px, 1.7vw, 21px);
    line-height: 1.65;
}

.tenant-hero img,
.hero-orb {
    width: 100%;
    aspect-ratio: 1 / .86;
    border-radius: 38px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--tenant-primary), #173f35);
    box-shadow: 0 34px 90px rgba(17, 34, 26, .18);
}

.hero-orb {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero-orb span {
        width: 128px;
        height: 128px;
        background: rgba(255, 255, 255, .12);
        color: var(--tenant-accent);
        font-size: 72px;
    }

.content-section {
    padding: 24px 0 40px;
}

    .content-section.split {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
        gap: 22px;
    }

.soft-card,
.inquiry-card,
.catalog-card {
    padding: 28px;
    border: 1px solid rgba(17, 34, 26, .08);
    border-radius: 32px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 22px 60px rgba(17, 34, 26, .07);
}

    .soft-card h2,
    .inquiry-card h3 {
        margin: 0 0 12px;
        font-size: clamp(26px, 3vw, 42px);
        line-height: 1.06;
        letter-spacing: -.035em;
    }

    .soft-card p,
    .catalog-card p {
        color: rgba(17, 34, 26, .68);
        line-height: 1.65;
    }

.glow {
    background: linear-gradient(135deg, rgba(185, 255, 102, .32), rgba(255, 255, 255, .88));
}

.quick-grid,
.catalog-grid,
.form-grid {
    display: grid;
    gap: 14px;
}

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

    .quick-grid a,
    .text-link {
        color: var(--tenant-primary);
        font-weight: 900;
    }

.catalog-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.catalog-card {
    display: grid;
    gap: 16px;
}

    .catalog-card img,
    .section-image {
        width: 100%;
        height: 210px;
        border-radius: 24px;
        object-fit: cover;
    }

    .catalog-card h3 {
        margin: 0 0 8px;
        font-size: 26px;
    }

.coupon-box {
    display: inline-flex;
    padding: 14px 18px;
    border: 1px dashed var(--tenant-primary);
    border-radius: 16px;
    color: var(--tenant-primary);
    font-size: 24px;
    font-weight: 950;
    letter-spacing: .08em;
}

.input {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(17, 34, 26, .14);
    border-radius: 16px;
    background: #fff;
    font: inherit;
}

textarea.input {
    min-height: 120px;
}

.form-message {
    padding: 12px 14px;
    border-radius: 16px;
    font-weight: 800;
}

    .form-message.ok {
        background: rgba(16, 185, 129, .12);
        color: #047857;
    }

    .form-message.bad {
        background: rgba(239, 68, 68, .12);
        color: #b91c1c;
    }

.tenant-footer {
    display: grid;
    grid-template-columns: 1.4fr .8fr 1fr 1fr;
    gap: 34px;
    margin-bottom: 24px;
    padding: 34px;
    border: 1px solid rgba(17, 34, 26, .08);
    border-radius: 34px;
    background: #fff;
    color: rgba(17, 34, 26, .65);
    box-shadow: 0 20px 60px rgba(17, 34, 26, .06);
}

    .tenant-footer h4 {
        margin: 0 0 12px;
        color: #111814;
    }

    .tenant-footer a {
        display: block;
        margin-bottom: 8px;
        color: rgba(17, 34, 26, .72);
        font-weight: 760;
        text-decoration: none;
    }

.footer-logo {
    margin-bottom: 12px;
}

.footer-brand-block p,
.tenant-footer p {
    margin: 0;
    line-height: 1.65;
}

.footer-contact {
    display: grid;
    align-content: start;
    gap: 7px;
    text-align: left;
}

.loading-screen {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 32px;
    text-align: center;
}

@media (max-width: 980px) {
    .tenant-header {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

        .tenant-header nav {
            justify-content: flex-start;
            padding-bottom: 4px;
        }

    .tenant-hero,
    .content-section.split,
    .quick-grid,
    .tenant-footer {
        grid-template-columns: 1fr;
    }

    .tenant-hero {
        gap: 28px;
        padding-top: 46px;
    }

        .tenant-hero h1 {
            font-size: clamp(40px, 12vw, 58px);
        }
}

.tenant-header {
    border-color: rgba(17, 34, 26, .07);
    box-shadow: 0 18px 52px rgba(17, 34, 26, .08);
    backdrop-filter: blur(18px) saturate(1.16);
}

    .tenant-brand strong,
    .tenant-header nav a,
    .tenant-footer a {
        font-weight: 680;
    }

    .tenant-header nav a {
        min-height: 40px;
        padding: 10px 12px;
        border-radius: 999px;
    }

        .tenant-header nav a:hover,
        .tenant-header nav a:focus-visible {
            background: rgba(185, 255, 102, .22);
            color: var(--tenant-primary);
        }

.tenant-hero {
    grid-template-columns: minmax(0, .98fr) minmax(320px, .78fr);
    gap: clamp(28px, 4vw, 56px);
    padding-top: clamp(42px, 7vw, 76px);
}

    .tenant-hero h1 {
        max-width: 760px;
        font-size: clamp(42px, 5.3vw, 70px);
        line-height: 1.04;
        letter-spacing: -.046em;
        font-weight: 720;
    }

    .tenant-hero p {
        max-width: 680px;
        font-size: clamp(16px, 1.35vw, 20px);
        line-height: 1.68;
    }

    .tenant-hero img,
    .hero-orb {
        border-radius: clamp(26px, 3vw, 38px);
    }

.soft-card h2,
.inquiry-card h3,
.catalog-card h3 {
    font-weight: 700;
    letter-spacing: -.028em;
}

.eyebrow {
    font-weight: 720;
}

.tenant-footer {
    align-items: start;
}

@media (max-width: 720px) {
    .tenant-header {
        width: min(100% - 18px, 1180px);
        margin-top: 9px;
        padding: 12px;
        border-radius: 24px;
    }

        .tenant-header nav {
            gap: 4px;
            overflow-x: auto;
            scrollbar-width: none;
        }

            .tenant-header nav::-webkit-scrollbar {
                display: none;
            }

    .tenant-hero h1 {
        font-size: clamp(36px, 12vw, 52px);
    }

    .tenant-hero p {
        margin: 16px 0;
    }
}

.tenant-menu-toggle-input,
.tenant-menu-toggle-button {
    display: none;
}

.tenant-download-hero,
.tenant-download-grid {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.tenant-download-hero {
    padding: clamp(54px, 8vw, 96px) 0 26px;
}

    .tenant-download-hero h1 {
        max-width: 820px;
        margin: 16px 0;
        font-size: clamp(42px, 6vw, 76px);
        line-height: 1.03;
        letter-spacing: -.052em;
        font-weight: 720;
    }

    .tenant-download-hero p {
        max-width: 700px;
        margin: 0;
        color: rgba(17, 34, 26, .68);
        font-size: clamp(17px, 1.5vw, 21px);
        line-height: 1.68;
    }

.tenant-download-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 44px;
}

.tenant-download-card {
    display: grid;
    gap: 24px;
    align-content: space-between;
    min-height: 260px;
    padding: 26px;
    border: 1px solid rgba(17, 34, 26, .08);
    border-radius: 30px;
    background: radial-gradient(circle at 92% 10%, color-mix(in srgb, var(--tenant-accent) 40%, transparent), transparent 13rem), #fff;
    box-shadow: 0 24px 60px rgba(17, 34, 26, .08);
    color: #111814;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease;
}

    .tenant-download-card:hover,
    .tenant-download-card:focus-visible {
        transform: translateY(-4px);
        box-shadow: 0 34px 78px rgba(17, 34, 26, .13);
    }

    .tenant-download-card strong {
        display: block;
        margin-bottom: 8px;
        font-size: 24px;
        letter-spacing: -.02em;
    }

    .tenant-download-card p {
        margin: 0;
        color: rgba(17, 34, 26, .66);
        line-height: 1.62;
    }

.tenant-platform-icon {
    display: inline-grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 18px;
    background: color-mix(in srgb, var(--tenant-primary) 10%, white);
    color: var(--tenant-primary);
    font-weight: 850;
}

    .tenant-platform-icon.android {
        background: rgba(61, 220, 132, .14);
        color: #0d8f4f;
    }

    .tenant-platform-icon.ios {
        background: rgba(17, 24, 39, .08);
        color: #111827;
    }

.text-deconration-none {
    text-decoration: none;
}

.explore-online {
    margin-bottom: 3rem;
}

.tenant-contact-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(17, 34, 26, .08);
}

.tenant-contact-line i {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 12px;
    background: color-mix(in srgb, var(--tenant-accent) 28%, white);
    color: var(--tenant-primary);
}

.tenant-cms-sections {
    display: grid;
    gap: 18px;
}

.tenant-cms-section {
    overflow: hidden;
}

.tenant-cms-section .section-subtitle {
    color: rgba(17, 34, 26, .68);
    font-size: 18px;
}

@media (max-width: 980px) {
    .tenant-header {
        grid-template-columns: 1fr auto;
    }

    .tenant-menu-toggle-button {
        display: inline-grid;
        width: 46px;
        height: 46px;
        place-items: center;
        border: 1px solid rgba(17, 34, 26, .1);
        border-radius: 999px;
        background: rgba(255, 255, 255, .82);
        cursor: pointer;
    }

        .tenant-menu-toggle-button span {
            display: block;
            width: 18px;
            height: 2px;
            margin: 2px 0;
            border-radius: 999px;
            background: #111814;
        }

    .tenant-header nav,
    .tenant-header .tenant-cta {
        display: none;
        grid-column: 1 / -1;
    }

    .tenant-menu-toggle-input:checked ~ nav {
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 6px;
        padding-top: 12px;
    }

    .tenant-menu-toggle-input:checked ~ .tenant-cta {
        display: inline-flex;
        justify-content: center;
        margin-top: 10px;
    }

    .tenant-download-grid {
        grid-template-columns: 1fr;
    }

    .content-section,
    .tenant-download-hero,
    .tenant-download-grid {
        width: min(100% - 18px, 1180px);
    }
}

@media (max-width: 620px) {
    .tenant-hero,
    .tenant-download-hero {
        padding-top: 28px;
    }

    .tenant-hero {
        display: flex;
        flex-direction: column;
        gap: 24px;
        width: min(100% - 18px, 1180px);
        padding-bottom: 28px;
    }

    .tenant-hero > div {
        width: 100%;
        min-width: 0;
    }

    .tenant-download-hero h1,
    .tenant-hero h1 {
        max-width: 100%;
        font-size: clamp(34px, 11vw, 46px);
        line-height: 1.05;
        letter-spacing: -.04em;
        overflow-wrap: normal;
        word-break: normal;
    }

    .tenant-hero p {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.58;
    }

    .tenant-hero img,
    .hero-orb {
        width: 100%;
        min-height: 240px;
        aspect-ratio: 1.12 / 1;
        border-radius: 26px;
    }

    .soft-card,
    .catalog-card,
    .inquiry-card,
    .tenant-download-card {
        padding: 20px;
        border-radius: 24px;
    }

    .quick-grid {
        grid-template-columns: 1fr;
    }

    .tenant-footer {
        padding: 22px;
    }
}

.view-promotion-link-right {
    float: right;
}

.tenant-pull-right {
    float: right;
}

.tenant-10by10-y-margin {
    margin: 0.8rem 0rem;
}

/* Final responsive safety net: avoid letter-by-letter hero wrapping on narrow phones. */
.tenant-hero > div,
.tenant-hero h1,
.tenant-hero p {
    min-width: 0;
    word-break: normal;
    overflow-wrap: normal;
}

.tenant-footer {
    grid-template-columns: minmax(260px, 1.25fr) repeat(4, minmax(150px, .8fr));
}

.tenant-footer .footer-contact span {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.tenant-footer .footer-contact i {
    width: 18px;
    margin-top: 2px;
    color: var(--tenant-primary);
}

.footer-powered {
    margin-top: 12px;
    font-size: 13px;
}

@media (max-width: 980px) {
    .tenant-hero {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        width: min(100% - 20px, 1180px);
        padding: 34px 0 30px;
    }

    .tenant-hero h1 {
        max-width: 100%;
        font-size: clamp(38px, 9vw, 56px);
        line-height: 1.08;
        letter-spacing: -.035em;
        text-wrap: balance;
    }

    .tenant-hero p {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.6;
    }

    .tenant-hero img,
    .hero-orb {
        max-height: 380px;
        aspect-ratio: 16 / 10;
    }

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

@media (max-width: 540px) {
    .tenant-hero {
        width: min(100% - 24px, 1180px);
        gap: 20px;
        padding-top: 28px;
    }

    .tenant-hero h1 {
        font-size: clamp(34px, 10.5vw, 44px);
        line-height: 1.1;
        letter-spacing: -.03em;
        text-wrap: pretty;
    }

    .tenant-hero img,
    .hero-orb {
        min-height: 220px;
        max-height: 300px;
        border-radius: 24px;
    }

    .tenant-footer {
        grid-template-columns: 1fr;
        width: min(100% - 20px, 1180px);
        gap: 22px;
    }
}
:root {
    --tenant-select-border: rgba(14, 38, 30, .12);
    --tenant-select-focus: rgba(126, 230, 200, .18);
}

.searchable-select-native {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 1px !important;
    height: 1px !important;
}

.searchable-select {
    position: relative;
}

.searchable-select-trigger {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .7rem .95rem;
    border: 1px solid var(--tenant-select-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, .94);
    text-align: left;
}

.searchable-select.open .searchable-select-trigger,
.searchable-select-trigger:focus-visible {
    box-shadow: 0 0 0 3px var(--tenant-select-focus);
    outline: none;
}

.searchable-select-label {
    min-width: 0;
    flex: 1;
}

.searchable-select-panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 40;
    display: none;
    border: 1px solid var(--tenant-select-border);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(9, 28, 22, .12);
    overflow: hidden;
}

.searchable-select.open .searchable-select-panel {
    display: block;
}

.searchable-select-search {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--tenant-select-border);
    padding: .75rem .95rem;
    outline: none;
}

.searchable-select-options {
    max-height: 260px;
    overflow: auto;
}

.searchable-select-option,
.searchable-select-empty {
    width: 100%;
    display: block;
    padding: .75rem .95rem;
}

.searchable-select-option {
    border: 0;
    background: transparent;
    text-align: left;
}

.searchable-select-option:hover,
.searchable-select-option.active {
    background: rgba(126, 230, 200, .20);
}

.searchable-select-empty {
    color: rgba(14, 38, 30, .55);
}
