
/* ===================================================================== */
/*  PRICING PAGE (Solutions/Culture styling match)                        */
/*  Theme: #7D85D0 + ghostwhite glass wrap                                */
/* ===================================================================== */


/* **************************************** */
/*                  Body                    */
/* **************************************** */

:root {
    --max: 1120px;
    --pad: 28px;
    --gap: 18px;
    --radius: 22px;
    --radiusSm: 14px;
    --panelBg: rgba(248, 248, 255, 0.9); /* match nav glass */
    --panelBorder: rgba(70,70,90,0.18);
    --shadow: 0 22px 55px rgba(0,0,0,0.18);
}

body {
    min-height: 100vh;
    height: auto;
    overscroll-behavior: none;
    margin-top: 0px;
    font-family: 'Times New Roman';
    font-size: 15px;
    background: url("../../Images/registerBackground2.png");
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    overscroll-behavior: none;
}

.PageBody {
    min-height: 100vh;
}

.pricingPage {
    padding: 170px 16px 60px; /* gap under fixed nav */
}

.pricingWrap {
    max-width: var(--max);
    margin: 0 auto;
    border-radius: var(--radius);
    background: var(--panelBg);
    border: 1px solid var(--panelBorder);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

    .pricingWrap::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        opacity: .55;
        background: radial-gradient(1200px 420px at 18% -10%, rgba(125,133,208,0.28), transparent 60%), radial-gradient(800px 360px at 92% 0%, rgba(255, 231, 168, 0.20), transparent 60%), radial-gradient(900px 520px at 50% 110%, rgba(125,133,208,0.14), transparent 60%);
    }

    .pricingWrap > * {
        position: relative;
        z-index: 1;
    }

/* **************************************** */
/*              Fade-up Animation           */
/* **************************************** */

.textFadeUp {
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 650ms ease forwards;
}

.textDelay1 {
    animation-delay: 60ms;
}

.textDelay2 {
    animation-delay: 130ms;
}

.textDelay3 {
    animation-delay: 200ms;
}

.textDelay4 {
    animation-delay: 270ms;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* **************************************** */
/*                    HERO                  */
/* **************************************** */

.pricingHero {
    padding: var(--pad);
    display: grid;
    gap: 22px;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
}

@media (max-width: 980px) {
    .pricingHero {
        grid-template-columns: 1fr;
    }
}

.pricingHero__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .35em;
    text-transform: uppercase;
    padding: 9px 12px;
    border-radius: 999px;
    border: 1px solid rgba(125,133,208,0.35);
    background: rgba(125,133,208,0.14);
    color: rgba(0,0,0,0.78);
    font-weight: 700;
    margin-bottom: 14px;
}

.pricingHero__title {
    font-size: clamp(2.2rem, 3.6vw, 3.2rem);
    margin: 0 0 12px;
    background: linear-gradient(90deg, #7D85D0 0%, #777B7E 70%, #7D85D0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 6px rgba(125,133,208,0.25);
    font-family: 'New Machiato';
}

.pricingHero__subtitle {
    margin: 0;
    line-height: 1.65;
    font-size: 1.08rem;
    opacity: 0.95;
}

.pricingHero__media img {
    width: 100%;
    height: auto;
    border-radius: var(--radiusSm);
    border: 1px solid rgba(0,0,0,0.10);
    cursor: zoom-in;
}

/* ========================================================= */
/* PRICING HEADER: glass wrap + animated title + note pill    */
/* ========================================================= */

.pricingPanel__header--glass {
    position: relative;
    padding: clamp(16px, 2.2vw, 26px);
    margin: 0 auto 18px;
    max-width: min(920px, 96%);
    border-radius: 22px;
    /* Frosted glass */
    background: linear-gradient( 135deg, rgba(255,255,255,0.72), rgba(248,248,255,0.52) );
    border: 1px solid rgba(125,133,208,0.28);
    box-shadow: 0 18px 50px rgba(0,0,0,0.12), 0 2px 0 rgba(255,255,255,0.55) inset;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
}

    /* Decorative soft glows inside the glass panel */
    .pricingPanel__header--glass::before {
        content: "";
        position: absolute;
        inset: -2px;
        pointer-events: none;
        opacity: 0.85;
        background: radial-gradient(420px 180px at 20% 0%, rgba(125,133,208,0.28), transparent 60%), radial-gradient(380px 200px at 85% 10%, rgba(255,231,168,0.22), transparent 60%), radial-gradient(520px 220px at 50% 120%, rgba(125,133,208,0.14), transparent 65%);
    }

    /* Animated shimmer sweep */
    .pricingPanel__header--glass::after {
        content: "";
        position: absolute;
        top: -40%;
        left: -60%;
        width: 55%;
        height: 180%;
        pointer-events: none;
        background: linear-gradient( 90deg, transparent, rgba(255,255,255,0.45), transparent );
        transform: rotate(14deg);
        filter: blur(1px);
        opacity: 0.55;
        animation: headerShimmer 3.8s ease-in-out infinite;
    }

@keyframes headerShimmer {
    0% {
        transform: translateX(0) rotate(14deg);
        opacity: 0.10;
    }

    30% {
        opacity: 0.60;
    }

    60% {
        opacity: 0.25;
    }

    100% {
        transform: translateX(260%) rotate(14deg);
        opacity: 0.10;
    }
}

/* Slight float for the whole header (subtle) */
.pricingPanel__header--glass {
    animation: headerFloat 6.5s ease-in-out infinite;
}

@keyframes headerFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

/* Title: bolder, gradient, animated */
.pricingTitle {
    margin: 0 0 10px;
    text-align: center;
    font-family: 'Valeria Grunge', 'New Machiato', 'Times New Roman', serif;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: clamp(1.9rem, 2.6vw, 2.55rem);
    background: linear-gradient( 90deg, #7D85D0 0%, #ECEEF9 20%, #7D85D0 45%, #FFE7A8 65%, #7D85D0 100% );
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    /* Makes it “pop” without looking outlined */
    text-shadow: 0 10px 24px rgba(0,0,0,0.10), 0 2px 8px rgba(125,133,208,0.20);
    animation: titleGradient 5.2s ease-in-out infinite;
}

@keyframes titleGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Lead description: slightly darker + cleaner readability */
.pricingPanel__desc--lead {
    color: rgba(22, 22, 28, 0.85);
    opacity: 1;
    margin-bottom: 12px;
    font-size: 1.03rem;
}

/* Replace the inline orange with a nicer “note pill” */
.pricingPanel__note {
    width: fit-content;
    margin: 10px auto 0;
    text-align: center;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 750;
    letter-spacing: 0.01em;
    color: rgba(30, 24, 10, 0.88);
    background: rgba(255, 231, 168, 0.55);
    border: 1px solid rgba(255, 175, 64, 0.40);
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

/* Make your existing desc style play nicely inside glass */
.pricingPanel__header--glass .pricingPanel__desc {
    max-width: 72ch;
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .pricingPanel__header--glass,
    .pricingPanel__header--glass::after,
    .pricingTitle {
        animation: none !important;
    }
}



/* **************************************** */
/*                    CHIPS                 */
/* **************************************** */

.heroCTA {
    display: flex;
    justify-content: center;
    padding: 14px 12px 22px 12px;
}
/* Your button stays the same (kept) */
.button-30 {
    align-items: center;
    appearance: none;
    background-color: #FCFCFD;
    border-radius: 4px;
    border-width: 0;
    box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px,rgba(45, 35, 66, 0.3) 0 7px 13px -3px,#D6D6E7 0 -3px 0 inset;
    box-sizing: border-box;
    color: #36395A;
    cursor: pointer;
    display: inline-flex;
    font-family: "JetBrains Mono", monospace;
    height: 48px;
    justify-content: center;
    line-height: 1;
    overflow: hidden;
    padding-left: 16px;
    padding-right: 16px;
    transition: box-shadow .15s,transform .15s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    will-change: box-shadow,transform;
    font-size: 18px;
    
}

    .button-30:focus {
        box-shadow: #D6D6E7 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
    }

    .button-30:hover {
        box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
        transform: translateY(-2px);
                color: #7D85D0;
        font-weight: bold;
    }

    .button-30:active {
        box-shadow: #D6D6E7 0 3px 7px inset;
        transform: translateY(2px);
    }

.pricingChips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.12);
    background: rgba(125,133,208,0.14);
    color: rgba(0,0,0,0.82);
    text-decoration: none;
    font-weight: 600;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
    cursor: default; /* non-working chips */
    user-select: none;
}

/* **************************************** */
/*                   PANELS                 */
/* **************************************** */

.pricingPanel {
    padding: var(--pad);
    border-top: 1px solid rgba(0,0,0,0.10);
}

.pricingPanel__header h2 {
    margin: 0 0 8px;
    font-size: clamp(1.7rem, 2.4vw, 2.3rem);
    color: #7D85D0;
    text-align: center;
    font-family: 'Valeria Grunge';
}

.pricingPanel__desc {
    margin: 0 auto 18px;
    max-width: 80ch;
    text-align: center;
    opacity: 0.9;
    line-height: 1.6;
}

/* **************************************** */
/*                   TIERS                  */
/* **************************************** */

.tiersGrid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 980px) {
    .tiersGrid {
        grid-template-columns: 1fr;
    }
}

.tierCard {
    position: relative;
    border-radius: 18px;
    padding: 18px;
    background-color: rgba(248, 248, 255, 0.55);
    border: 1px solid rgba(0,0,0,0.10);
    box-shadow: 0 10px 25px rgba(0,0,0,0.10);
    display: grid;
    gap: 10px;
}

.tierCardFlatRate {
    position: relative;
    border-radius: 18px;
    padding: 18px;
    background-color: rgba(125, 133, 208, 0.55);
    border: 1px solid rgba(0,0,0,0.10);
    box-shadow: 0 10px 25px rgba(0,0,0,0.10);
    display: grid;
    gap: 10px;
}

.tierCard--featured {
    outline: 2px solid rgba(125,133,208,0.35);
}

.tierCard__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.85rem;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(125,133,208,0.16);
    border: 1px solid rgba(125,133,208,0.25);
}

.tierCard__name {
    margin: 0;
    font-size: 1.35rem;
}

.tierCard__price {
    margin: 0;
    font-size: 2.1rem;
    font-weight: 700;
}

.tierCard__small {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.75;
}

.tierCard__sub {
    margin: -6px 0 0;
    opacity: 0.75;
}

.tierCard__list {
    margin: 6px 0 0;
    padding-left: 18px;
    line-height: 1.55;
}

.tierCard__media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    cursor: zoom-in;
}

/* **************************************** */
/*     TIERS (Starter OR Growth PLUS Host)  */
/* **************************************** */

.tiersGrid--choiceFlow {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
}

/* Connectors: "or" / "plus" */
.tierConnector {
    display: grid;
    place-items: center;
}

.tierConnector__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.72);
    border: 1px solid rgba(125,133,208,0.30);
    background: rgba(125,133,208,0.12);
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

/* Mobile stack: card, connector, card, connector, card */
@media (max-width: 980px) {
    .tiersGrid--choiceFlow {
        grid-template-columns: 1fr;
    }

    .tierConnector {
        padding: 2px 0;
    }

    .tierConnector__pill {
        width: fit-content;
        font-size: 0.95rem;
    }
}


/* **************************************** */
/*                 INCLUDED                 */
/* **************************************** */

.includedGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

@media (max-width: 980px) {
    .includedGrid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .includedGrid {
        grid-template-columns: 1fr;
    }
}

.includedItem {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(0,0,0,0.08);
}

    .includedItem h4 {
        margin: 0 0 6px;
        font-size: 1.05rem;
    }

    .includedItem p {
        margin: 0;
        opacity: 0.85;
        line-height: 1.5;
    }

.includedMediaRow {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (max-width: 980px) {
    .includedMediaRow {
        grid-template-columns: 1fr;
    }
}

.includedMediaRow img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
    cursor: zoom-in;
    box-shadow: 0 10px 25px rgba(0,0,0,0.10);
}

/* **************************************** */
/*                 GALLERY                  */
/* **************************************** */

.pricingGallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px;
}

.pricingGallery__item {
    grid-column: span 4;
    border: 0;
    padding: 0;
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.10);
}

@media (max-width: 980px) {
    .pricingGallery__item {
        grid-column: span 6;
    }
}

@media (max-width: 560px) {
    .pricingGallery__item {
        grid-column: span 12;
    }
}

.pricingGallery__item img {
    width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 240ms ease;
}

.pricingGallery__item:hover img {
    transform: scale(1.04);
}

/* **************************************** */
/*                  Footer                  */
/* **************************************** */

.BeamyCoFooter {
    font-family: 'Times New Roman';
    color: #7D85D0;
}


/* ===================================================================== */
/*  PRICING PAGE (Solutions/Culture styling match)                        */
/*  Theme: #7D85D0 + ghostwhite glass wrap                                */
/* ===================================================================== */

/* **************************************** */
/*                  Body                    */
/* **************************************** */

:root {
    --max: 1120px;
    --pad: 28px;
    --gap: 18px;
    --radius: 22px;
    --radiusSm: 14px;
    --panelBg: rgba(248, 248, 255, 0.9);
    --panelBorder: rgba(70,70,90,0.18);
    --shadow: 0 22px 55px rgba(0,0,0,0.18);
}

body {
    min-height: 100vh;
    margin-top: 0;
    font-family: 'Times New Roman';
    font-size: 15px;
    background: url("../../Images/registerBackground2.png");
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
    height: 100%;
}

.PageBody {
    min-height: 100vh;
}

.pricingPage {
    padding: 170px 16px 60px;
}

/* **************************************** */
/*                WRAPPER                   */
/* **************************************** */

.pricingWrap {
    max-width: var(--max);
    margin: 0 auto;
    border-radius: var(--radius);
    background: var(--panelBg);
    border: 1px solid var(--panelBorder);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

    .pricingWrap::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        opacity: .55;
        background: radial-gradient(1200px 420px at 18% -10%, rgba(125,133,208,0.28), transparent 60%), radial-gradient(800px 360px at 92% 0%, rgba(255,231,168,0.20), transparent 60%), radial-gradient(900px 520px at 50% 110%, rgba(125,133,208,0.14), transparent 60%);
    }

    .pricingWrap > * {
        position: relative;
        z-index: 1;
    }

/* **************************************** */
/*            HEADER GLASS                  */
/* **************************************** */

.pricingPanel {
    padding: var(--pad);
    border-top: 1px solid rgba(0,0,0,0.10);
}

.pricingPanel__header--glass {
    margin: 0 auto 22px;
    max-width: 920px;
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255,255,255,0.72), rgba(248,248,255,0.52));
    border: 1px solid rgba(125,133,208,0.28);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.12);
}

.pricingTitle {
    margin: 0 0 10px;
    text-align: center;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: clamp(1.9rem, 2.6vw, 2.55rem);
    background: linear-gradient(90deg, #7D85D0, #ECEEF9, #7D85D0);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.pricingPanel__desc {
    text-align: center;
    margin: 0 auto 14px;
    max-width: 72ch;
}

.pricingPanel__note {
    margin: 0 auto;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,231,168,0.55);
    border: 1px solid rgba(255,175,64,0.40);
    font-weight: 700;
    width: fit-content;
}

/* **************************************** */
/*                TIERS GRID                */
/* **************************************** */

.tiersGrid--choiceFlow {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
}

@media (max-width: 980px) {
    .tiersGrid--choiceFlow {
        grid-template-columns: 1fr;
    }
}

/* **************************************** */
/*           TIER CARD STRUCTURE             */
/* **************************************** */

.tierCard,
.tierCardFlatRate {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 620px;
    padding: 18px;
    gap: 12px;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.10);
    box-shadow: 0 10px 25px rgba(0,0,0,0.10);
}

.tierCard {
    background-color: rgba(248,248,255,0.55);
}

.tierCardFlatRate {
    background-color: rgba(125,133,208,0.55);
}

/* Badge */
.tierCard__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.85rem;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(125,133,208,0.16);
    border: 1px solid rgba(125,133,208,0.25);
}

/* Headings */
.tierCard__name,
.tierCard__price,
.tierCard__sub,
.tierCard__list {
    margin: 0;
}

/* Price Row */
.tierCard__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.05;
}

.tierCard__small {
    font-size: .95rem;
    opacity: .75;
}

/* Media */
.tierCard__media {
    margin-top: 6px;
}

    .tierCard__media img {
        display: block;
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 14px;
    }

/* List */
.tierCard__list {
    padding-left: 18px;
    line-height: 1.55;
    margin-top: 6px;
}

/* CTA LOCK */
.heroCTA {
    margin-top: auto;
    display: flex;
    justify-content: center;
    padding-top: 18px;
}

/* **************************************** */
/*              CONNECTORS                  */
/* **************************************** */

.tierConnector {
    display: grid;
    place-items: center;
}

.tierConnector__pill {
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: .08em;
    background: rgba(125,133,208,0.12);
    border: 1px solid rgba(125,133,208,0.30);
}

/* **************************************** */
/*               BUTTON                     */
/* **************************************** */

.button-30 {
    background-color: #FCFCFD;
    border-radius: 4px;
    border: 0;
    padding: 0 16px;
    height: 48px;
    font-family: "JetBrains Mono", monospace;
    font-size: 18px;
    cursor: pointer;
    box-shadow: rgba(45,35,66,.4) 0 2px 4px, rgba(45,35,66,.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
    transition: transform .15s, box-shadow .15s;
}

    .button-30:hover {
        transform: translateY(-2px);
        color: #7D85D0;
        font-weight: bold;
    }

/* **************************************** */
/*                FOOTER                    */
/* **************************************** */

.BeamyCoFooter {
    font-family: 'Times New Roman';
    color: #7D85D0;
}


/* =========================================================
   SHARED MODAL (Beamy Blue overlay + centered panel)
   Uses #beamyModal + beamy-modal.js
   ========================================================= */
.beamyModal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
}

    .beamyModal.is-open {
        display: block;
    }

/* Beamy Blue @ 0.85 */
.beamyModal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(125,133,208,0.85);
    backdrop-filter: blur(10px);
}

.beamyModal__panel {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(1100px, 92vw);
    max-height: 88vh;
    border-radius: 22px;
    padding: 14px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.22);
    box-shadow: 0 28px 90px rgba(0,0,0,0.55);
    overflow: hidden;
}

.beamyModal__img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    display: block;
    border-radius: 16px;
    background: rgba(0,0,0,0.14);
}

.beamyModal__caption {
    margin-top: 10px;
    text-align: center;
    color: rgba(255,255,255,0.88);
    font-size: 0.95rem;
    font-family: 'New Machiato';
}

.beamyModal__close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.92);
    cursor: pointer;
    font-size: 18px;
}

    .beamyModal__close:hover {
        background: rgba(255,255,255,0.18);
    }

/* Optional: ensure click-cursor on all lightbox imgs */
img[data-lightbox] {
    cursor: pointer;
}
