body {
    background: linear-gradient(135deg, #0A6E3F 0%, #074D2C 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.chip {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 20px;
    color: rgba(255, 255, 255, .75);
    font-size: 12px;
    margin: 4px;
}

.circleA {
    width: 320px;
    height: 320px;
    top: -100px;
    right: -100px;
    opacity: .5;
}

.circleB {
    width: 380px;
    height: 380px;
    bottom: -130px;
    left: -80px;
    opacity: .4;
}

.circleC {
    width: 96px;
    height: 96px;
    top: 33%;
    right: 40px;
    background: rgba(200, 152, 30, .2);
}

.sectionA {
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

.sectionA-logo {
    width: 336px;
    height: 126px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .2);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imgALogo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sectionA-title {
    font-family: Sora, sans-serif;
    font-size: 2.4rem;
}

.sectionA-subtitle {
    opacity: .6;
    font-size: .9rem;
}

.sectionA-subtitleB {
    color: rgba(200, 152, 30, .85);
    font-size: .7rem;
    letter-spacing: .15em;
}

.sectionA-MaxWidth360px {
    max-width: 360px;
}

.sectionA-MaxWidth300px {
    max-width: 300px;
}

.sectionA-button {
    font-size: .95rem;
}

.sectionA-subtitleC {
    color: rgba(255, 255, 255, .25);
    font-size: .7rem;
}

.sectionA-keStrip {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

.sectionA-btnOutline {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
}

.sectionA-btnOutline:hover {
    background: rgba(255, 255, 255, .2);
    color: #fff;
}

html {
    scroll-behavior: smooth;
}

.guest-section {
    scroll-margin-top: 1.5rem;
    position: relative;
    z-index: 2;
}

.guest-float-nav {
    position: fixed;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    z-index: 1050;
    animation: guestNavFadeIn .35s ease;
}

.guest-float-nav .nav-pills {
    background: rgba(255, 255, 255, .97);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
    padding: .35rem;
    min-width: 7.5rem;
}

.guest-float-nav .nav-link {
    color: #074D2C;
    font-size: .8125rem;
    font-weight: 600;
    border-radius: 10px;
    padding: .5rem .75rem;
    text-align: left;
    transition: background .15s ease, color .15s ease;
}

.guest-float-nav .nav-link:hover {
    background: rgba(10, 110, 63, .08);
    color: #0A6E3F;
}

.guest-float-nav .nav-link:focus-visible {
    outline: 2px solid #C8981E;
    outline-offset: 2px;
    box-shadow: none;
}

.guest-float-nav .nav-link.active {
    background: #0A6E3F;
    color: #fff;
}

.guest-float-nav-toggle {
    position: fixed;
    bottom: 5.5rem;
    right: 1rem;
    z-index: 1050;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .22);
    animation: guestNavFadeIn .35s ease;
}

.guest-float-nav-toggle:focus-visible {
    outline: 2px solid #C8981E;
    outline-offset: 2px;
}

@keyframes guestNavFadeIn {
    from {
        opacity: 0;
        transform: translateY(-46%);
    }
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

@media (max-width: 991.98px) {
    .guest-float-nav {
        display: none;
    }
}

@media (min-width: 992px) {
    .guest-float-nav-toggle {
        display: none;
    }
}

#guestNavOffcanvas .nav-link {
    border-radius: 10px;
    font-weight: 600;
}

#guestNavOffcanvas .nav-link:hover,
#guestNavOffcanvas .nav-link:focus-visible {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

#guestNavOffcanvas .nav-link.active {
    background: #C8981E;
    color: #074D2C;
}

#guestNavOffcanvas .nav-link:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}