*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--sans);
}

:root {
    --bg: #F5F1E9;
    --white: #fff;
    --surface: #141414;
    --surface2: #1c1c1c;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.18);
    --text: #000;
    --text-muted: #666;
    --text-dim: #444;
    --accent: #00553C;
    --accent-pale: rgba(216, 90, 48, 0.12);
    --heat-hot: #E24B4A;
    --heat-mid: #EF9F27;
    --heat-cool: #378ADD;
    --sans: 'Public Sans';
}

html,
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    /* min-height: 100vh; */
    overflow-x: hidden;
}


rect[data-room] {
    pointer-events: none;
}

#glow-layer circle {
    filter: blur(18px);
    mix-blend-mode: screen;
}

/* top bar css */
.topbar_main {
    background: var(--white);
}

.topbar {
    border-bottom: 1px solid var(--border);
    padding: 16px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

.topbar-logo {
    font-size: 12px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-logo img {
    width: 140px;
}

.topbar-logo span {
    font-size: 25px;
    line-height: 100%;
    margin-left: 6px;
    font-weight: 500;
    color: #02563d;
    border-top: 3px solid #fff;
    text-transform: none;
}

.topbar-logo b {
    color: var(--accent);
}

.topbar-mode {
    font-size: 12px;
    color: #00553C;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 20px;
}

.topbar-count b {
    color: var(--text);
}

.hrone_logo_overlooked {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 70px;
}

.hrone_logo_overlooked span {
    font-size: 38px;
    color: #02563d;
    line-height: 100%;
    font-weight: 500;
    border-top: 3px solid var(--bg);
    margin-left: 6px;
}

/* --------------------------------------------------------- Hero ── */
.hero {
    padding-top: 60px;
}

.hero-eyebrow {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 60px;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 16px;
}

.hero h1 em {
    font-style: normal;
    color: var(--accent);
}

.hero-sub {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 480px;
}

/* ── Instructions ── */
.instructions {
    margin: 32px 0px;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.step {
    display: flex;
    opacity: 1;
    align-items: center;
    gap: 10px;
    padding: 10px 14px 10px 10px;
    border: 1px solid rgba(23, 51, 42, .09);
    border-radius: 999px;
    background: rgba(255, 255, 255, .7);
    transition: opacity .3s, background .2s, border-color .2s;
}

.step.done {
    opacity: 0.3;
}

.step-num {
    width: 28px;
    height: 28px;
    margin-top: 0;
    border: 0;
    border-radius: 50%;
    background: #02563D;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-text {
    font-size: 13px;
    color: var(--text-muted);
}


/* ── floor ── */
#floor {
    height: auto;
    display: block;
    cursor: crosshair;
    border: 1px solid var(--border);
}

#floor.revealed {
    cursor: default;
}

/* ── Tooltip ── */
.tooltip {
    position: fixed;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.12s;
    background: var(--accent);
    border: 1px solid var(--border-strong);
    color: var(--white);
    font-size: 12px;
    line-height: 1.5;
    padding: 8px;
    max-width: 280px;
    z-index: 999;
}

.tooltip.visible {
    opacity: 1;
}


#dots-layer circle {
    transition: transform 0.15s ease, filter 0.15s ease, opacity 0.15s ease;
    transform-origin: center;
    pointer-events: all;
}

#dots-layer circle:hover {
    filter: drop-shadow(0 0 6px rgba(239, 159, 39, 0.6));
}

#dots-layer {
    pointer-events: none;
}

#own-pin-layer circle {
    filter: drop-shadow(0 0 10px rgba(216, 90, 48, 0.8));
}

/* ── Dropdown form ── */
.form-card {
    margin-top: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 24px;
    max-width: 640px;
    animation: fadeUp 0.2s ease;
    border-radius: 20px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-room {
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.form-label {
    font-size: 13px;
    color: var(--text-muted);
    min-width: 140px;
    flex-shrink: 0;
}

.form-row select {
    flex: 1;
    min-width: 200px;
    color: var(--text);
    border: 1px solid #B9B0A3;
    padding: 10px 42px 10px 15px;
    background-color: #FBFAF8;
    color: var(--text);
    font-size: 15px;
    line-height: 1.35;
    transition: border-color .18s, box-shadow .18s, background .18s;
    appearance: none;
    cursor: pointer;
    outline: none;
    border-radius: 10px;
}

.form-row select:focus {
    border-color: var(--accent);
}

.form-preview {
    margin: 16px 0;
    padding: 12px 16px;
    background: var(--bg);
    border-left: 2px solid var(--accent);
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    min-height: 42px;
    transition: color 0.2s;
    border-radius: 0px 10px 10px 0px;
}

.form-preview.ready {
    color: var(--text);
    font-style: normal;
}

.form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 16px;
}

.btn {
    font-family: var(--sans);
    font-size: 13px;
    padding: 9px 20px;
    border: 1px solid var(--border-strong);
    background: var(--bg);
    color: var(--text-muted);
    cursor: pointer;
    letter-spacing: 0.02em;
    border-radius: 99px;
    transition: background 0.15s, color 0.15s;
}

.btn:hover {
    background: var(--accent);
    color: var(--white);
}

.btn-submit {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    opacity: 0.35;
    pointer-events: none;
    transition: opacity 0.2s, background 0.15s;
    position: relative;
}

.btn-submit.loading {

    pointer-events: none;

    opacity: .8;

    cursor: wait;

}

.btn-submit .btn-loader {

    display: none;

}

.btn-submit.loading .btn-text {

    display: none;

}

.btn-submit.loading .btn-loader {

    display: inline-flex;

    align-items: center;

    gap: 10px;

}

.btn-submit.loading .btn-loader::before {

    content: "";

    width: 15px;

    height: 15px;

    border-radius: 50%;

    border: 2px solid rgba(255, 255, 255, .4);

    border-top-color: #fff;

    animation: spin .8s linear infinite;

}

@keyframes spin {

    to {
        transform: rotate(360deg);
    }

}

.btn-submit.active {
    opacity: 1;
    pointer-events: auto;
}

.btn-submit.active:hover {
    background: #013e2c;
}

/* ── Reveal summary ── */
.reveal-panel {
    margin-top: 24px;
    max-width: 70%;
    animation: fadeUp 0.3s ease;
}

.reveal-headline {
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.reveal-stats {
    display: flex;
    gap: 25px;
    margin-bottom: 24px;
}

.rstat {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 16px 20px;
    flex: 1;
}

.rstat-val {
    font-size: 24px;
    font-weight: 500;
    color: #00553C;
    display: block;
    margin-bottom: 2px;
}

.rstat-label {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.reveal-note {
    font-size: 12px;
    color: var(--text-dim);
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

/* ── Legend ── */
.legend {
    padding: 20px 0px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    color: var(--text-muted);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.reveal-stats .rstat:last-child {
    display: none !important;
}

#employee-message {
    margin-top: 32px;
    padding: 16px 24px;
    border: 1px solid rgba(23, 51, 42, .11);
    border-radius: 20px;
    box-shadow: 0 1px 2px rgba(23, 51, 42, .08), 0 10px 30px rgba(23, 51, 42, .08);
    background: #fff;
    width: 70%;
    background: #00553C;
}

#employee-message span {
    font-size: 14px;
    line-height: 1.2;
    word-spacing: 3px;
    font-weight: 500;
    margin-bottom: 18px;
    display: block;
    color: #fff;
}


#employee-message-text,
#employee-message .emp-static {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 500;
    color: #fff;
}

#employee-message-text {
    font-size: 36px;
    margin-bottom: 13px;
    font-weight: 700;
    color: #F8B19F;
}

#employee-message span {
    font-size: 14px;
    line-height: 1.2;
    word-spacing: 3px;
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
}

#employee-message-text {
    color: #00553C;
    margin-bottom: 6px;
}

#employee-message-text,
#employee-message .emp-static {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
}


@media (prefers-reduced-motion: reduce) {

    .form-card,
    .reveal-panel {
        animation: none;
    }

    .tooltip {
        transition: none;
    }
}

.office-map {
    position: relative;
    max-width: 100%;
    margin: auto;
}

.office-image {
    width: 100%;
    display: block;
    border-radius: 20px;
}

#heatmap-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

#dots-layer,
#own-pin-layer {
    position: absolute;
    inset: 0;
    z-index: 5;
}

.room-zone {
    position: absolute;
    cursor: pointer;
    background: transparent;
}

/* hide after testing */
.room-zone.debug {
    background: red;
    opacity: .2;
}

.room-zone.ceo {
    left: 3%;
    top: 5%;
    width: 16%;
    height: 31%
}

.room-zone.manager {
    left: 19.5%;
    top: 4.5%;
    width: 15.5%;
    height: 31%;
}

.room-zone.hr {
    left: 35.5%;
    top: 5%;
    width: 15%;
    height: 31%;
}

.room-zone.conference {
    left: 51%;
    top: 4.5%;
    width: 22%;
    height: 45%;
}

.room-zone.corridor {
    left: 3%;
    top: 36%;
    width: 28%;
    height: 23%;
}

.room-zone.reception {
    left: 3%;
    top: 60%;
    width: 29%;
    height: 33%;
}

.room-zone.coffee {
    left: 31.5%;
    top: 45%;
    width: 15%;
    height: 26%;
}

.room-zone.sitting {
    left: 47%;
    top: 64%;
    width: 26%;
    height: 28%;
}

.room-zone.wfh {
    left: 79%;
    top: 4%;
    width: 16%;
    height: 30%;
}

.room-zone.cafeteria {
    left: 78%;
    top: 39%;
    width: 19%;
    height: 31%;
}

.room-zone.smoking {
    left: 78%;
    top: 73%;
    width: 19%;
    height: 23%;
}

#heatmap-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

#dots-layer {
    position: absolute;
    inset: 0;
    z-index: 3;
}

#own-pin-layer {
    position: absolute;
    inset: 0;
    z-index: 4;
}

#dots-layer,
#own-pin-layer,
#heatmap-canvas {
    pointer-events: none;
}


.pin {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #EF9F27;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    cursor: pointer;
}

.own-pin {
    width: 12px;
    height: 12px;
    background: #D85A30;
    animation: pinAttention 1.5s ease-in-out infinite;
    border: 2px solid #D85A30;
}

@keyframes pinAttention {

    0%,
    100% {
        width: 12px;
        height: 12px;
        opacity: 1;
    }

    50% {
        width: 16px;
        height: 16px;
        opacity: 0.7;
    }
}

.share-panel {
    margin-top: 40px;
    padding: 24px 0px;
    width: 50%;
}

.share-content h3 {
    margin: 0 0 10px;
}

.share-content p {
    margin: 0 0 20px;
    color: #666;
}

.share-btn {
    border: none;
    background: #00553C;
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

/* ── REVEAL PANEL ── */
.reveal-panel {
    margin-top: 24px;
    max-width: 70%;
    animation: up 0.25s ease
}

.reveal-hl {
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-bottom: 14px
}

.reveal-stats {
    display: flex;
    gap: 25px;
    margin-bottom: 0
}

.rstat {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 16px 20px;
    flex: 1;
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(23, 51, 42, .08), 0 10px 30px rgba(23, 51, 42, .08);
}

.rstat-v {
    font-size: 27px;
    font-weight: 500;
    color: #00553C;
    display: block;
    margin-bottom: 2px
}

.rstat-l {
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.04em
}


.share-preview {
    margin: 20px 0;
}

.share-preview img {
    width: 100%;
    max-width: 900px;
    display: block;
    border: 1px solid #ddd;
}

.share-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.share-stats div {
    flex: 1;
    border: 1px solid #eee;
    padding: 15px;
}

.share-stats strong {
    display: block;
    font-size: 24px;
    line-height: 1.2;
}

#share-copy {
    width: 100%;
    min-height: 120px;
    padding: 15px;
    margin-bottom: 15px;
}

.share-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}


#share-preview img {
    width: 100%;
    display: block;
    margin-top: 20px;
}

.share-panel h3 {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
}

.room-zone {
    position: absolute;
}

.room-info {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    width: max-content;
    max-width: 180px;
    pointer-events: none;
    opacity: 0;
    transition: .3s;
    z-index: 20;
}

.room-zone.reception .room-info {
    left: 77%;
    top: 50%;
}

.room-zone.corridor .room-info {
    top: 44%;
}

.room-zone.conference .room-info {
    top: 80%;
}

.room-zone.cafeteria .room-info,
.room-zone.smoking .room-info {
    top: 50%;
}

.room-zone.sitting .room-info {
    top: 30%;
}

.room-zone.coffee .room-info {
    top: 60%;
}

.room-info h5 {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 2px;
    font-weight: 700;
    color: #D85A30;
}

.room-info p {
    font-size: 11px;
    margin: 0;
    line-height: 1.2;
}


.screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #F7F4F0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}


.gate-eye {
    color: #00553C;
    text-transform: uppercase;
    letter-spacing: .15em;
    margin-bottom: 20px;
    font-weight: 600;
}

.gate-h1 {
    font-size: 64px;
    line-height: 100%;
    margin-bottom: 30px;
    /* text-transform: capitalize; */
    color: #02563d;
}

.gate-h3 {
    font-size: 25px;
    color: #666;
    margin-bottom: 40px;
}

.gate-pick {
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 20px;
}

.gate-choices {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.gate-btn {
    min-width: 300px;
    padding: 16px 28px;
    border: none;
    background: #fff;
    cursor: pointer;
    border: 1px solid #D9D2C6;
    transition: .25s;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    border-radius: 99px;
    line-height: 1.2;
}

.gate-btn span {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.gate-btn:hover {
    border-color: #00553C;
    transform: translateY(-2px);
    color: #00553C;
    background: #E5F0EC;
}

.gate-btn:hover span {
    color: #00553C;
}

/* Background layer */
.bg-circles {
    position: absolute;
    inset: 0;
    z-index: 9;
    pointer-events: none;
}

#gate>*:not(.bg-circles) {
    position: relative;
    z-index: 99;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgb(188 42 42 / 60%);
    /* filter: blur(1px); */
    transform-origin: center;
    opacity: .03;
    transform: scale(.7);
    animation: pulse 30s ease-in-out infinite;
    animation-fill-mode: both;
}

@keyframes pulse {

    0% {
        opacity: .04;
        transform: scale(0);
    }

    50% {
        opacity: .25;
        transform: scale(1.25);
    }

    100% {
        opacity: .05;
        transform: scale(0);
    }

}

.c1 {
    width: 180px;
    height: 180px;
    top: 8%;
    left: 5%;
    animation-delay: 5s;
    animation-duration: 16s;
    background: rgba(55, 138, 221, 0.18);
}

.c2 {
    width: 30px;
    height: 30px;
    top: 18%;
    right: 10%;
    animation-duration: 12s;
    animation-delay: 3s;
}

.c3 {
    width: 90px;
    height: 90px;
    bottom: 6%;
    left: 7%;
    animation-duration: 15s;
    animation-delay: 5s;
    background: rgba(239, 159, 39, 0.55);
}

.c4 {
    width: 90px;
    height: 90px;
    bottom: 28%;
    right: 18%;
    animation-duration: 8s;
    background: rgba(55, 138, 221, 0.30);
}

.c5 {
    width: 100px;
    height: 100px;
    top: 29%;
    left: 33%;
    animation-duration: 12s;
    animation-delay: 8s;
    background: rgba(55, 138, 221, 0.30);
}

.c6 {
    width: 70px;
    height: 70px;
    top: 49%;
    left: 15%;
    animation-duration: 19s;
    background: rgba(226, 75, 74, 0.65);
}

.c7 {
    width: 150px;
    height: 150px;
    top: 70%;
    left: 25%;
    animation-duration: 10s;
    background: #02563d;
}

.c8 {
    width: 100px;
    height: 100px;
    top: 5%;
    left: 45%;
    animation-duration: 15s;
    background: rgba(239, 159, 39, 0.55);
}

.c9 {
    width: 200px;
    height: 200px;
    bottom: -60px;
    right: -5px;
    animation-duration: 10s;
    background: rgba(55, 138, 221, 0.45);
}

.c10 {
    width: 170px;
    height: 170px;
    top: 37px;
    right: 28%;
    animation-duration: 17s;
}

.c11 {
    width: 130px;
    height: 130px;
    bottom: 8%;
    left: 55%;
    animation-duration: 18s;
    animation-delay: 18s;
}

.c12 {
    width: 80px;
    height: 80px;
    top: 45%;
    left: 84%;
    animation-duration: 12s;
    animation-delay: 16s;
    background: #02563d;
}

@media(max-width:1199px) {
    .gate-h1 {
        font-size: 40px;
        line-height: 1.1;
    }
}


.heatmap-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}

.switch {
    position: relative;
    width: 50px;
    height: 26px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    inset: 0;
    background: #ccc;
    border-radius: 30px;
    cursor: pointer;
    transition: .3s;
}

.slider:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: .3s;
}

.switch input:checked+.slider {
    background: #00553C;
}

.switch input:checked+.slider:before {
    transform: translateX(24px);
}

/* ===================================
   SHARE SECTION
=================================== */

#share-card {
    display: none;
    width: 70%;
    margin: 60px 0px;
    padding: 24px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 1px 2px rgba(23, 51, 42, .08), 0 10px 30px rgba(23, 51, 42, .08);
}

.li-label {
    font-size: 24px;
    font-weight: 700;
    color: #1A1816;
    margin-bottom: 18px;
}

.li-card-wrap {
    display: flex;
    overflow: hidden;
    border-radius: 14px;
}

.li-left {
    width: 40%;
    background: #F7F4F0;
    padding: 35px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.li-brand {
    color: #C86B3C;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 16px;
}

.li-title {
    color: #000;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    margin: 0;
    display: none !important;

}

.li-title strong {
    color: #000;
    font-weight: 400;
}

#my-pin-card {
    margin-top: 24px;
    padding: 16px 24px;
    border: 1px solid rgba(23, 51, 42, .11);
    border-radius: 20px;
    box-shadow: 0 1px 2px rgba(23, 51, 42, .08), 0 10px 30px rgba(23, 51, 42, .08);
    font-size: clamp(23px, 3vw, 42px);
    line-height: 1.25;
    background: #fff;
    width: 70%;
}

#my-pin-card p {
    font-size: 20px;
    line-height: 1.5;
}

#li-response {
    color: #000;
    font-size: 10px;
    font-weight: 500;
    margin: 0 0 16px;

}

#li-response strong,
#li-room strong {
    display: block;
    font-size: 15px;
    line-height: 1.2;
    text-transform: capitalize;
    margin-top: 5px;
    font-weight: 600;
    color: #00553C;
}

#li-room {
    color: #000;
    font-size: 8px;
    line-height: 1.2;
    margin: 0 0 12px;

}

#li-tagline {
    color: #8D8884;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.did {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    padding-bottom: 14px;
    border-bottom: 0.2px solid #88747422;
    text-transform: capitalize;
}

.context h5 {
    color: #EF9F27;
    font-size: 10px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.context p {
    font-size: 12px;
    line-height: 1.5;
}

.li-right {
    flex: 1;
    background: #F7F4F0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;

}

.li-map-image {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.btn-download {
    margin-top: 24px;
    background: #00553C;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: .25s;
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: 99px;

}

.btn-download:hover {
    background: #013e2c;
}

.btn-download {
    position: relative;
}

.btn-download.loading {
    opacity: .8;
    cursor: wait;
    pointer-events: none;
}

.btn-loading {
    display: none;
}

.btn-download.loading .btn-text,
.btn-download.loading svg {
    display: none;
}

.btn-download.loading .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-download.loading .btn-loading:before {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, .4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .7s linear infinite;
}

@keyframes spin {

    to {
        transform: rotate(360deg);
    }

}

.li-caption-block {
    margin-top: 28px;
    padding: 16px;
    background: #ECE7DE;
    border-radius: 14px;
}

.li-caption-label {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.li-caption-text {
    white-space: pre-wrap;
    line-height: 1.7;
    color: #555;
    font-size: 15px;
}

.li-msg {
    display: none;
    margin-top: 18px;
    color: #0B8A42;
    font-weight: 600;
}

.li-msg.on {
    display: block;
}

.li-label {
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hrone_logo {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hrone_logo span {
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
    color: var(--accent);
}

.hrone_logo img {
    width: 60px;
    margin-right: 6px;
}

.share-preview-wrap {
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#share-preview {
    width: 100%;
    display: block;
}

.share-loader {
    position: absolute;
    inset: 0;
    background: #F7F4F0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
}

.spinner {
    width: 46px;
    height: 46px;
    border: 4px solid rgba(0, 0, 0, .15);
    border-top-color: #E24B4A;
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.share-loader.hide {
    display: none;
}

.li-caption-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.copy-caption-btn {
    padding: 0px;
    border: none;
    color: #fff;
    color: #E24B4A;
    font-size: 16px;
    cursor: pointer;
    transition: .25s;
}

.copy-caption-btn.copied {
    color: #2E9E52;
}

.copy_flex svg {
    width: 18px;
}

.copy_flex svg path {
    stroke: #E24B4A;
}

.copy-caption-btn.copied svg path {
    stroke: #2E9E52;
}

.copy_flex,
.copy-caption-btn {
    display: flex;
    align-items: center;
    gap: 4px;
}

.foot-wrap {
    background: #fff;
}

.foot {
    margin-top: 80px;
    padding: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px
}

.foot-c a {
    font-size: 14px;
    color: #353030;
    line-height: 1.2;
}


@media(max-width:768px) {

    .gate-h1 {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .gate-h3 {
        font-size: 16px;
    }

    .gate-eye {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .gate-btn {
        width: 100%;
    }

    .hero h1 {
        font-size: 32px;
    }

    .screen {
        padding: 40px 16px;
    }

    .gate-pick {
        font-size: 14px;
    }

    #hr-count {
        font-size: 12px;
        line-height: 1.2;
        display: none;
    }

    .legend {
        gap: 10px;
    }

    .legend-item {
        gap: 4px;
        font-size: 10px;
        line-height: 1.2;
    }

    .room-info h5 {
        font-size: 6px;
        width: 100%;
        text-align: center;
        margin: 0px;
    }

    .li-title {
        font-size: 8px;
        line-height: 1.2;
        font-weight: 400;
        margin: 0;
        margin-bottom: 6px;
    }

    .reveal-stats .li-title {
        font-size: 12px;
        line-height: 1.2;
    }

    #li-room {
        margin: 0 0 10px;
        font-size: 8px;
    }

    .hrone_logo img {
        width: 40px;
    }

    .hrone_logo span {
        font-size: 7px;
        line-height: 0;
    }

    .li-left {
        padding: 8px;
        padding-bottom: 8px;
        padding-right: 0px;
    }

    #li-response {
        font-size: 6px;
        margin-bottom: 10px;
    }

    .slider:before {
        width: 16px;
        height: 16px;
        left: 3px;
        top: 2px;
    }

    .switch {
        width: 46px;
        height: 21px;
    }

    .heatmap-toggle {
        margin-top: 14px;
        gap: 8px;
    }

    .heatmap-toggle span {
        font-size: 14px;
    }

    .rstat {
        background: var(--white);
        border: 1px solid var(--border);
        padding: 12px 16px;
    }

    .rstat-v {
        font-size: 16px;
        margin-bottom: 0px;
        line-height: 1.2;
    }

    .share-panel {
        width: 100%;
    }

    .share-panel h3 {
        font-size: 18px;
    }

    #share-card {
        width: 100%;
        margin: 30px 0px;
        padding: 12px;
    }

    .li-left {
        width: 55%;
    }

    .li-right {
        flex: unset;
        width: 50%;
        padding-left: 5px;
    }

    .pin {
        position: absolute;
        width: 4px;
        height: 4px;
    }

    .hero-eyebrow {
        font-size: 12px;
        margin-bottom: 14px;
        font-weight: 500;
    }

    .room-info {
        padding: 0px;
        width: auto;
        opacity: 1 !important;
    }

    .c1 {
        width: 60px;
        height: 60px;
        top: 5%;
        left: -20px;
    }

    .c2 {
        width: 70px;
        height: 70px;
        top: 12%;
        right: -10px;
    }

    .c3 {
        width: 100px;
        height: 100px;
        bottom: 8%;
        left: -30px;
    }

    .c4 {
        width: 60px;
        height: 60px;
        right: 5%;
        bottom: 30%;
    }

    .c5 {
        width: 80px;
        height: 80px;
        top: 28%;
        left: 38%;
    }

    .c6 {
        width: 50px;
        height: 50px;
        top: 48%;
        left: 8%;
    }

    .c7 {
        width: 90px;
        height: 90px;
        top: 85%;
        left: 18%;
    }

    .c8 {
        width: 40px;
        height: 40px;
        top: 4%;
        left: 30%;
    }

    .c9 {
        width: 80px;
        height: 80px;
        right: -40px;
        bottom: -40px;
    }

    .c10 {
        width: 70px;
        height: 70px;
        top: 10%;
        right: 25%;
    }

    .c11 {
        width: 70px;
        height: 70px;
        bottom: 10%;
        left: 60%;
    }

    .c12 {
        width: 50px;
        height: 50px;
        top: 45%;
        left: 82%;
    }

    .copy_flex svg {
        width: 15px;
    }

    #copy-text {
        font-size: 14px;
    }

    .btn-download {
        padding: 10px 20px;
        font-size: 12px;
    }

    .topbar-logo {
        gap: 6px;
    }

    .topbar-logo img {
        width: 80px;
    }

    .topbar-logo span {
        font-size: 16px;
        line-height: 100%;
        margin-left: 0px;
        /* border: 0px; */
    }

    .hrone_logo_overlooked img {
        width: 100px;
    }

    .hrone_logo_overlooked span {
        font-size: 20px;
        line-height: 100%;
    }

    .hrone_logo_overlooked {
        gap: 6px;
        margin-bottom: 40px;
    }

    .tooltip {
        font-size: 10px;
        line-height: 1.4;
        padding: 4px 6px;
        width: calc(100vw - 20px);
        max-width: 340px;
        left: 10px !important;
        right: 10px;
    }

    .topbar-mode {
        font-size: 10px;
        font-weight: 500;
    }

    .gate-h1 br {
        display: none;
    }

    .foot {
        margin-top: 40px;
        padding: 16px 32px !important;
    }

    .foot-c {
        font-size: 12px;
    }

    .reveal-panel {
        max-width: 100%;
    }

    .did {
        font-size: 10px;
        padding-bottom: 6px;
        border: 0px;
    }

    #li-response strong,
    #li-room strong {
        margin-top: 3px;
        font-size: 8px;
    }

    .context h5 {
        font-size: 6px;
    }

    .context p {
        font-size: 8px;
        line-height: 1.3;
    }

    .hrone_logo {
        margin-top: 5px;
    }

    .step-num {
        width: 20px;
        height: 20px;
    }

    .step-text {
        font-size: 12px;
        color: var(--text-muted);
        line-height: 1.2;
    }

    .step {
        gap: 7px;
        padding: 8px 9px;
    }

    .li-caption-text {
        line-height: 1.4;
        font-size: 14px;
    }

    #my-pin-card {
        margin-top: 24px;
        padding: 16px;
        width: 100%;
    }

    #my-pin-card p {
        font-size: 16px;
        line-height: 1.5;
    }

    #employee-message {
        margin-top: 20px;
        padding: 16px;
        border-radius: 16px;
        width: 100%;
    }

    #employee-message span {
        font-size: 11px;
    }

    #employee-message-text,
    #employee-message .emp-static {
        font-size: 15px;
        line-height: 1.2;
        font-weight: 500;
    }
}

@media (max-width: 600px) {
    .hero {
        padding-top: 40px;
    }

    .instructions {
        gap: 10px;
        margin: 18px 0px;
    }

    .form-label {
        min-width: 100%;
    }

    .reveal-stats {
        flex-direction: column;
        gap: 16px;
    }
}