:root {
    --shell-gray-soft: #5f5f5f;
    --shell-gray-mid: #9c9c9c;
    --shell-bg: #0a0a0a;
    --shell-line: rgba(255, 255, 255, 0.12);
    --shell-max-width: 1200px;
    --shell-gutter: 24px;
    --shell-header-pad-x: 15px;
}

html {
    background: #000000;
}

body {
    opacity: 0;
    pointer-events: none;
}

body.wsos-page-ready {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 360ms linear;
}

@media (prefers-reduced-motion: reduce) {
    body.wsos-page-ready {
        transition: none;
    }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    min-height: 68px;
    padding: 0.7rem clamp(16px, 2.3vw, 30px) 0.58rem;
    overflow: visible;
    isolation: isolate;
    z-index: 1200;
    --shell-header-fg: rgba(255, 255, 255, 0.94);
    --shell-header-muted: rgba(255, 255, 255, 0.64);
    --shell-header-shadow: rgba(255, 255, 255, 0.16);
    --shell-header-grad-top: rgba(6, 6, 9, 0.76);
    --shell-header-grad-mid: rgba(6, 6, 9, 0.48);
    --shell-header-grad-bottom: rgba(6, 6, 9, 0.08);
    --shell-header-line: rgba(255, 255, 255, 0.1);
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0 0 -44px 0;
    pointer-events: none;
    z-index: -2;
    background: linear-gradient(
        180deg,
        var(--shell-header-grad-top) 0%,
        color-mix(in srgb, var(--shell-header-grad-mid) 88%, transparent) 38%,
        color-mix(in srgb, var(--shell-header-grad-bottom) 48%, transparent) 72%,
        transparent 100%
    );
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.9) 28%, rgba(0, 0, 0, 0.52) 62%, rgba(0, 0, 0, 0.16) 84%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.9) 28%, rgba(0, 0, 0, 0.52) 62%, rgba(0, 0, 0, 0.16) 84%, rgba(0, 0, 0, 0) 100%);
}

.site-header::after {
    content: "";
    position: absolute;
    left: clamp(16px, 2.3vw, 30px);
    right: clamp(16px, 2.3vw, 30px);
    top: 0;
    height: 1px;
    pointer-events: none;
    z-index: -1;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        var(--shell-header-line) 18%,
        var(--shell-header-line) 82%,
        rgba(255, 255, 255, 0) 100%
    );
}

.site-header.site-header--theme-light {
    --shell-header-fg: rgba(5, 5, 7, 0.92);
    --shell-header-muted: rgba(5, 5, 7, 0.62);
    --shell-header-shadow: rgba(5, 5, 7, 0.08);
    --shell-header-grad-top: rgba(255, 255, 255, 0.9);
    --shell-header-grad-mid: rgba(255, 255, 255, 0.62);
    --shell-header-grad-bottom: rgba(255, 255, 255, 0.12);
    --shell-header-line: rgba(5, 5, 7, 0.08);
}

.page {
    width: min(var(--shell-max-width), calc(100% - var(--shell-gutter)));
    margin: 0 auto;
}

.header-left {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.header-right {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    position: relative;
    z-index: 1;
}

.header-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
}

.header-brand-icon {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.wsos-wordmark {
    font-family: 'Geist', 'Inter Tight', 'Space Grotesk', 'Manrope', 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: none;
    text-wrap: nowrap;
    color: var(--shell-header-fg);
    text-shadow: 0 0 14px var(--shell-header-shadow);
    transition: color 0.18s ease, text-shadow 0.18s ease;
}

.site-nav {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.site-nav a {
    position: relative;
    color: var(--shell-header-muted);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

/* Underline that draws from center outward */
.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 1px;
    background: var(--shell-header-fg);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.site-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    color: var(--shell-header-fg);
    text-shadow: 0 0 12px var(--shell-header-shadow);
}

/* ── Piano-white glassomorphic CTA ─────────────
   Figma source: Piano Black Buttons (Community) node 5:35
   White variant: stone base #E7E5E4, stronger radial overlays,
   brighter inner glow, subtle outer shadow                       */
.header-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    background:
        radial-gradient(75% 75% at 50% 0%, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.12) 99%, rgba(255,255,255,0) 100%),
        radial-gradient(43.75% 43.75% at 50% 28.75%, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0) 100%),
        radial-gradient(50% 50% at 50% 50%, rgba(255,255,255,0) 74.66%, rgba(255,255,255,0.50) 100%),
        #e7e5e4;
    border: none;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.01em;
    padding: 0.35rem 0.7rem;
    text-shadow: 0 1px 2px rgba(68,64,60,0.5);
    outline: 1px solid transparent;
    outline-offset: 2px;
    box-shadow:
        inset 0 0 4px 0 rgba(255,255,255,0.30),
        inset 0 0 0 0.5px rgba(255,255,255,0.50),
        0 8px 16px 0 rgba(0,0,0,0.04),
        0 12px 24px 0 rgba(0,0,0,0.03),
        0 16px 32px 0 rgba(0,0,0,0.02);
    transition: outline-color 600ms ease, box-shadow 0.2s ease;
}

.header-cta::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 0.7rem;
    right: 0.7rem;
    height: 6px;
    background: linear-gradient(180deg, rgba(255,255,255,1.0) 0%, rgba(255,255,255,0.10) 100%);
    border-radius: 4px 4px 2px 2px;
    filter: blur(4px);
    pointer-events: none;
}

.header-cta:hover {
    outline-color: rgba(255,255,255,1);
    box-shadow:
        inset 0 0 6px 0 rgba(255,255,255,0.35),
        inset 0 0 0 0.5px rgba(255,255,255,0.60),
        0 10px 20px 0 rgba(0,0,0,0.04),
        0 14px 28px 0 rgba(0,0,0,0.05),
        0 20px 40px 0 rgba(0,0,0,0.06);
}

.header-cta:active {
    outline-color: rgba(255,255,255,0.60);
    box-shadow:
        inset 0 0 4px 0 rgba(255,255,255,0.20),
        inset 0 0 0 0.5px rgba(255,255,255,0.40),
        0 4px 8px 0 rgba(0,0,0,0.02),
        0 8px 16px 0 rgba(0,0,0,0.03);
}

/* ── Piano-black glassomorphic secondary CTA ───
   Figma source: Piano Black Buttons (Community) node 12:27
   Dark variant: stone-950 base #0C0A09, exact Figma gradients,
   signature 0.6 inner glow, 3-layer deep shadow                    */
.header-dev-camera {
    cursor: pointer;
    color: rgba(255, 255, 255, 0.80);
    background:
        radial-gradient(75% 75% at 50% 0%, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.04) 99%, rgba(255,255,255,0) 100%),
        radial-gradient(43.75% 43.75% at 50% 28.75%, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0) 100%),
        #0c0a09;
    text-shadow: 0 1px 3px rgba(0,0,0,0.15);
    box-shadow:
        0 0 8px 0 rgba(255,255,255,0.60) inset,
        0 0 0 0.5px rgba(255,255,255,0.20) inset,
        0 0 4px 0 rgba(255,255,255,0.10) inset,
        0 4px 4px 0 rgba(0,0,0,0.25),
        0 8px 16px 0 rgba(0,0,0,0.10),
        0 12px 24px 0 rgba(0,0,0,0.10),
        0 16px 32px 0 rgba(0,0,0,0.10);
}

.header-dev-camera::before {
    background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.06) 100%);
}

.header-dev-camera:hover {
    color: rgba(255, 255, 255, 0.92);
    outline-color: rgba(255,255,255,1);
    box-shadow:
        0 0 10px 0 rgba(255,255,255,0.70) inset,
        0 0 0 0.5px rgba(255,255,255,0.25) inset,
        0 0 6px 0 rgba(255,255,255,0.12) inset,
        0 4px 4px 0 rgba(0,0,0,0.25),
        0 10px 20px 0 rgba(0,0,0,0.10),
        0 14px 28px 0 rgba(0,0,0,0.10),
        0 20px 40px 0 rgba(0,0,0,0.12);
}

/* ── Dissolved CTA state ──────────────────────────
   When scrolled past the hero into a named section,
   the button background dissolves away and the text
   adopts the nav-link active style (white + underline). */

.header-cta.is-dissolved {
    background: transparent;
    color: var(--shell-header-fg);
    box-shadow: none;
    text-shadow: 0 0 12px var(--shell-header-shadow);
    outline-color: transparent;
    transition:
        background 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.4s ease,
        box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        text-shadow 0.3s ease,
        outline-color 0.3s ease;
}

.header-cta.is-dissolved::before {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Underline on dissolved CTA — draws from center like nav links */
.header-cta.is-dissolved::after {
    content: "";
    position: absolute;
    left: 0.7rem;
    right: 0.7rem;
    bottom: 4px;
    height: 1px;
    background: var(--shell-header-fg);
    transform: scaleX(0);
    transform-origin: center;
    animation: cta-underline-draw 0.4s 0.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes cta-underline-draw {
    to { transform: scaleX(1); }
}

/* Hide underline when not dissolved */
.header-cta:not(.is-dissolved)::after {
    content: none;
}

/* Restore solid button when scrolled back to hero (no active section) */
.header-cta:not(.is-dissolved) {
    transition:
        background 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.3s ease,
        box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        text-shadow 0.3s ease,
        outline-color 0.6s ease;
}

.header-dev-camera[aria-pressed="true"] {
    color: rgba(255, 255, 255, 1);
    box-shadow:
        0 0 12px 0 rgba(255,255,255,0.80) inset,
        0 0 0 0.5px rgba(255,255,255,0.30) inset,
        0 0 4px 0 rgba(255,255,255,0.15) inset,
        0 4px 4px 0 rgba(0,0,0,0.25),
        0 8px 16px 0 rgba(0,0,0,0.10),
        0 12px 24px 0 rgba(0,0,0,0.10),
        0 16px 32px 0 rgba(0,0,0,0.10);
}

/* ── Piano-black circular icon button ──────────
   Figma source: buttonDark.svg (node 2003:66)
   3 drops (ddd), 2 inners (ii) — no main glow
   Edge ring at 50% center, fainter top specular  */
.btn-icon-dark {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background:
        radial-gradient(75% 75% at 50% 0%, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.033) 99%, rgba(255,255,255,0) 100%),
        radial-gradient(43.75% 43.75% at 50% 28.75%, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%),
        radial-gradient(50% 50% at 50% 50%, rgba(255,255,255,0) 74.66%, rgba(255,255,255,0.30) 100%),
        #0c0a09;
    color: rgba(255, 255, 255, 0.75);
    text-shadow: 0 1px 3px rgba(0,0,0,0.15);
    outline: 1px solid transparent;
    outline-offset: 2px;
    transition: outline-color 600ms ease, box-shadow 0.2s ease;
    box-shadow:
        inset 0 0 4px 0 rgba(255,255,255,0.10),
        inset 0 0 0 0.5px rgba(255,255,255,0.20),
        0 8px 16px 0 rgba(0,0,0,0.10),
        0 12px 24px 0 rgba(0,0,0,0.10),
        0 16px 32px 0 rgba(0,0,0,0.10);
}

.btn-icon-dark::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 20%;
    right: 20%;
    height: 8px;
    background: linear-gradient(180deg, rgba(255,255,255,0.60) 0%, rgba(255,255,255,0.06) 100%);
    border-radius: 50%;
    filter: blur(4px);
    pointer-events: none;
}

.btn-icon-dark:hover {
    outline-color: rgba(255,255,255,1);
    box-shadow:
        inset 0 0 6px 0 rgba(255,255,255,0.15),
        inset 0 0 0 0.5px rgba(255,255,255,0.25),
        0 10px 20px 0 rgba(0,0,0,0.12),
        0 14px 28px 0 rgba(0,0,0,0.10),
        0 20px 40px 0 rgba(0,0,0,0.10);
}

/* ── Piano-white circular icon button ──────────
   Figma source: buttonLight.svg (node 2003:70)
   3 drops at lighter opacity (ddd), 2 brighter inners (ii)
   Same gradient structure as pillLight             */
.btn-icon-light {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background:
        radial-gradient(75% 75% at 50% 0%, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.12) 99%, rgba(255,255,255,0) 100%),
        radial-gradient(43.75% 43.75% at 50% 28.75%, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0) 100%),
        radial-gradient(50% 50% at 50% 50%, rgba(255,255,255,0) 74.66%, rgba(255,255,255,0.50) 100%),
        #e7e5e4;
    color: rgba(41, 37, 36, 0.75);
    text-shadow: 0 1px 2px rgba(68,64,60,0.5);
    outline: 1px solid transparent;
    outline-offset: 2px;
    transition: outline-color 600ms ease, box-shadow 0.2s ease;
    box-shadow:
        inset 0 0 4px 0 rgba(255,255,255,0.30),
        inset 0 0 0 0.5px rgba(255,255,255,0.50),
        0 8px 16px 0 rgba(0,0,0,0.04),
        0 12px 24px 0 rgba(0,0,0,0.03),
        0 16px 32px 0 rgba(0,0,0,0.02);
}

.btn-icon-light::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 20%;
    right: 20%;
    height: 8px;
    background: linear-gradient(180deg, rgba(255,255,255,1.0) 0%, rgba(255,255,255,0.10) 100%);
    border-radius: 50%;
    filter: blur(4px);
    pointer-events: none;
}

.btn-icon-light:hover {
    outline-color: rgba(255,255,255,1);
    box-shadow:
        inset 0 0 6px 0 rgba(255,255,255,0.35),
        inset 0 0 0 0.5px rgba(255,255,255,0.60),
        0 10px 20px 0 rgba(0,0,0,0.05),
        0 14px 28px 0 rgba(0,0,0,0.04),
        0 20px 40px 0 rgba(0,0,0,0.03);
}

/* ── Glassy semi-transparent pill button ───────
   Figma source: glassyButton.svg (node 2003:46)
   20% opaque dark base — background shows through
   Same inner shadow stack as pillDark (4d + 3i)
   Edge ring at 0.12 (brighter than pillDark's 0.04) */
.btn-glass {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    background:
        radial-gradient(75% 75% at 50% 0%, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.12) 99%, rgba(255,255,255,0) 100%),
        radial-gradient(43.75% 43.75% at 50% 28.75%, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0) 100%),
        rgba(12, 10, 9, 0.20);
    color: rgba(255, 255, 255, 0.80);
    text-shadow: 0 1px 3px rgba(0,0,0,0.15);
    outline: 1px solid transparent;
    outline-offset: 2px;
    transition: outline-color 600ms ease, box-shadow 0.2s ease;
    box-shadow:
        inset 0 0 8px 0 rgba(255,255,255,0.60),
        inset 0 0 0 0.5px rgba(255,255,255,0.20),
        inset 0 0 4px 0 rgba(255,255,255,0.10),
        0 4px 4px 0 rgba(0,0,0,0.25),
        0 8px 16px 0 rgba(0,0,0,0.10),
        0 12px 24px 0 rgba(0,0,0,0.10),
        0 16px 32px 0 rgba(0,0,0,0.10);
}

.btn-glass::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 12px;
    right: 12px;
    height: 6px;
    background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.055) 100%);
    border-radius: 4px 4px 2px 2px;
    filter: blur(4px);
    pointer-events: none;
}

.btn-glass:hover {
    outline-color: rgba(255,255,255,1);
    box-shadow:
        inset 0 0 10px 0 rgba(255,255,255,0.70),
        inset 0 0 0 0.5px rgba(255,255,255,0.25),
        inset 0 0 6px 0 rgba(255,255,255,0.12),
        0 4px 4px 0 rgba(0,0,0,0.25),
        0 10px 20px 0 rgba(0,0,0,0.10),
        0 14px 28px 0 rgba(0,0,0,0.10),
        0 20px 40px 0 rgba(0,0,0,0.12);
}

.header-cta.wsos-bubble-popping,
.waitlist-submit.wsos-bubble-popping,
.btn-icon-dark.wsos-bubble-popping,
.btn-icon-light.wsos-bubble-popping,
.btn-glass.wsos-bubble-popping {
    opacity: 0;
    background: transparent !important;
    box-shadow: none !important;
    outline-color: transparent !important;
    text-shadow: none !important;
}

.header-cta.wsos-bubble-popping::before,
.waitlist-submit.wsos-bubble-popping::before,
.btn-icon-dark.wsos-bubble-popping::before,
.btn-icon-light.wsos-bubble-popping::before,
.btn-glass.wsos-bubble-popping::before {
    opacity: 0;
}

.wsos-button-pop-burst {
    position: fixed;
    left: 0;
    top: 0;
    width: 1px;
    height: 1px;
    border-radius: 999px;
    overflow: hidden;
    isolation: isolate;
    pointer-events: none;
    opacity: 0;
    z-index: 2147483646;
    transform: translate3d(0, 0, 0) scale(0.82);
    transform-origin: center center;
    will-change: transform, opacity, filter;
}

.wsos-button-pop-burst__highlight,
.wsos-button-pop-burst__texture {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
}

.wsos-button-pop-burst__texture {
    background-image:
        radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.56) 0%, rgba(255, 255, 255, 0.22) 22%, rgba(255, 255, 255, 0.06) 44%, rgba(255, 255, 255, 0) 72%),
        url("data:image/jpeg;base64,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");
    background-size: 100% 100%, cover;
    background-position: center;
    mix-blend-mode: soft-light;
    opacity: 0.22;
    filter: grayscale(0.28) sepia(0.08) saturate(0.35) hue-rotate(-28deg) brightness(1.04) contrast(1.04);
    z-index: 0;
}

.wsos-button-pop-burst.active {
    animation: wsos-button-bubble-pop 600ms cubic-bezier(0.2, 0.82, 0.32, 1) forwards;
}

@keyframes wsos-button-bubble-pop {
    0% {
        opacity: 0.94;
        transform: translate3d(0, 0, 0) scale(0.82);
        filter: brightness(1) contrast(1.02);
    }
    38% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1.02);
        filter: brightness(1.08) contrast(1.08);
    }
    100% {
        opacity: 0;
        transform: translate3d(0, 0, 0) scale(1.34);
        filter: brightness(1.12) contrast(1.1) blur(8px);
    }
}

#site-footer {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
}

#site-footer .triglavis-brand {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: var(--shell-gray-soft);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

#site-footer .triglavis-brand:hover {
    color: var(--shell-gray-mid);
    opacity: 0.85;
}

#site-footer .triglavis-brand svg {
    opacity: 0.6;
    width: 12px;
    height: 12px;
}

body.has-site-shell .page {
    padding-top: 4.95rem;
}

@media (max-width: 768px) {
    :root {
        --shell-gutter: 16px;
        --shell-header-pad-x: 9px;
    }

    .site-header {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        min-height: 60px;
        padding: 0.52rem 16px 0.42rem;
    }

    .header-left {
        flex: 1;
        min-width: 0;
        gap: 0.55rem;
    }

    .site-nav {
        display: inline-flex;
        gap: 0.55rem;
    }

    .site-nav a {
        font-size: 0.7rem;
    }

    .header-brand-icon {
        width: 22px;
        height: 22px;
    }

    .wsos-wordmark {
        font-size: 0.8rem;
        letter-spacing: 0.03em;
    }

    .header-cta {
        font-size: 0.68rem;
        padding: 0.36rem 0.68rem;
    }

    .header-right {
        gap: 0.34rem;
    }

    #dev-camera-toggle {
        display: none;
    }

    #site-footer {
        right: 16px;
        bottom: 16px;
    }
}

/* WorkspaceOS Menu Bar Mark */
.wsos-menubar-mark {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.wsos-menubar-mark .wsos-pulse,
.wsos-menubar-mark .wsos-core {
    transform-box: fill-box;
    transform-origin: center;
}

.wsos-menubar-mark[data-mode="monitoring"] .wsos-pulse {
    animation: wsos-monitor-pulse 1.35s ease-out infinite;
}

.wsos-menubar-mark[data-mode="monitoring"] .wsos-core {
    animation: wsos-monitor-core 1.35s ease-in-out infinite;
}

@keyframes wsos-monitor-pulse {
    0% { opacity: 0; transform: scale(0.78); }
    12% { opacity: 0.55; transform: scale(1.02); }
    28% { opacity: 0; transform: scale(1.16); }
    38% { opacity: 0.42; transform: scale(0.96); }
    54% { opacity: 0; transform: scale(1.22); }
    100% { opacity: 0; transform: scale(1.22); }
}

@keyframes wsos-monitor-core {
    0%, 100% { opacity: 1; transform: scale(1); }
    12% { opacity: 1; transform: scale(1.12); }
    28% { opacity: 1; transform: scale(1); }
    38% { opacity: 1; transform: scale(1.08); }
    54% { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .wsos-menubar-mark[data-mode="monitoring"] .wsos-pulse,
    .wsos-menubar-mark[data-mode="monitoring"] .wsos-core {
        animation: none;
    }
}

/* Get In Touch Modal (Shared) */
.waitlist-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 10020;
}

.waitlist-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.waitlist-modal-content {
    width: min(860px, 100%);
    max-height: min(90vh, 760px);
    overflow-y: auto;
    background: #f4f4f4;
    color: #141414;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.45),
        0 4px 16px rgba(0, 0, 0, 0.15);
    padding: 26px 30px 24px;
    position: relative;
}

.waitlist-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 36px;
    height: 36px;
    padding: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.2rem;
    line-height: 1;
}

.waitlist-title {
    margin: 0;
    font-size: clamp(2rem, 3.2vw, 2.65rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #141414;
}

.waitlist-subtitle {
    margin: 8px 0 18px;
    font-size: 0.98rem;
    color: #3a3a3a;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.waitlist-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
}

.waitlist-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.waitlist-field span {
    font-size: 0.78rem;
    font-weight: 500;
    color: #222;
    letter-spacing: 0.01em;
}

.waitlist-field input,
.waitlist-field select,
.waitlist-field textarea {
    width: 100%;
    min-height: 46px;
    height: 46px;
    border-radius: 6px;
    border: 1px solid #bcbcbc;
    background: #ffffff;
    color: #151515;
    font-size: 0.94rem;
    padding: 0.68rem 0.7rem;
    font-family: inherit;
}

.waitlist-field textarea {
    height: auto;
    min-height: 96px;
    line-height: 1.45;
    resize: vertical;
}

.waitlist-field select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 2.2rem;
    background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 0.7rem center / 12px 8px;
    cursor: pointer;
}

.waitlist-field input:focus,
.waitlist-field select:focus,
.waitlist-field textarea:focus {
    outline: none;
    border-color: #626262;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.waitlist-field-full {
    grid-column: 1 / -1;
}

.waitlist-submit {
    position: relative;
    width: fit-content;
    min-height: 45px;
    border: none;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    gap: 3px;
    padding: 3px 15px;
    font-size: 0.9rem;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.82);
    background:
        radial-gradient(75% 75% at 50% 0%, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.04) 99%, rgba(255,255,255,0) 100%),
        radial-gradient(43.75% 43.75% at 50% 28.75%, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0) 100%),
        #0c0a09;
    text-shadow: 0 1px 3px rgba(0,0,0,0.15);
    outline: 1px solid transparent;
    outline-offset: 2px;
    box-shadow:
        0 0 8px 0 rgba(255,255,255,0.60) inset,
        0 0 0 0.5px rgba(255,255,255,0.20) inset,
        0 0 4px 0 rgba(255,255,255,0.10) inset,
        0 4px 4px 0 rgba(0,0,0,0.25),
        0 8px 16px 0 rgba(0,0,0,0.10),
        0 12px 24px 0 rgba(0,0,0,0.10),
        0 16px 32px 0 rgba(0,0,0,0.10);
    cursor: pointer;
    transition: transform 0.18s ease, outline-color 600ms ease, box-shadow 0.2s ease, color 0.2s ease;
}

.waitlist-submit::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 12px;
    right: 12px;
    height: 6px;
    background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.06) 100%);
    border-radius: 4px 4px 2px 2px;
    filter: blur(4px);
    pointer-events: none;
}

.waitlist-submit:hover:not(:disabled) {
    color: rgba(255, 255, 255, 0.92);
    outline-color: rgba(255,255,255,1);
    box-shadow:
        0 0 10px 0 rgba(255,255,255,0.70) inset,
        0 0 0 0.5px rgba(255,255,255,0.25) inset,
        0 0 6px 0 rgba(255,255,255,0.12) inset,
        0 4px 4px 0 rgba(0,0,0,0.25),
        0 10px 20px 0 rgba(0,0,0,0.10),
        0 14px 28px 0 rgba(0,0,0,0.10),
        0 20px 40px 0 rgba(0,0,0,0.12);
    transform: translateY(-1px);
}

.waitlist-submit:disabled {
    cursor: not-allowed;
}

.waitlist-submit:disabled span,
.waitlist-submit:disabled svg {
    opacity: 0.35;
}

.waitlist-submit span {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-left: 6px;
}

.waitlist-submit svg {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
}

.waitlist-inline-panel {
    width: min(860px, 100%);
}

.waitlist-inline-panel .waitlist-form {
    gap: 9px;
}

.waitlist-inline-panel .waitlist-grid {
    margin-bottom: 15px;
}

.waitlist-inline-panel .waitlist-inline-cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
    margin-top: 24px;
}

.waitlist-inline-panel .waitlist-inline-benefits-copy {
    display: grid;
    gap: 3px;
    max-width: 600px;
    flex: 1 1 420px;
}

.waitlist-inline-panel .waitlist-inline-benefits-kicker {
    margin: 0;
    font-size: 12px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.75);
}

.waitlist-inline-panel .waitlist-inline-benefits-title {
    margin: 0;
    font-size: clamp(1.2rem, 2.2vw, 1.8rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.98);
    text-wrap: balance;
}

.waitlist-inline-panel .waitlist-inline-cta-row .waitlist-submit {
    margin-left: auto;
    align-self: center;
    flex: 0 0 auto;
    white-space: nowrap;
}

.waitlist-inline-panel .waitlist-inline-cta-row .waitlist-legal {
    margin: 0;
    max-width: 600px;
    flex: 1 1 auto;
    min-width: 0;
}

.waitlist-inline-panel .waitlist-subtitle {
    margin: 0 0 18px;
    font-size: 13px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.74);
}

.waitlist-inline-panel .waitlist-field {
    text-align: left;
}

.waitlist-inline-panel .waitlist-field span {
    color: rgba(255, 255, 255, 0.6);
}

.waitlist-inline-panel .waitlist-field input,
.waitlist-inline-panel .waitlist-field select,
.waitlist-inline-panel .waitlist-field textarea {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
}

.waitlist-inline-panel .waitlist-field input:focus,
.waitlist-inline-panel .waitlist-field select:focus,
.waitlist-inline-panel .waitlist-field textarea:focus {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}

.waitlist-inline-panel .waitlist-field select {
    background: rgba(255, 255, 255, 0.06) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 0.7rem center / 12px 8px;
}

.waitlist-inline-panel .waitlist-field select option {
    background: #1a1a1e;
    color: #e0e0e0;
}

.waitlist-inline-panel .waitlist-legal {
    margin-top: 9px;
    font-size: 0.68rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.38);
    font-style: normal;
}

.waitlist-inline-panel .waitlist-legal a {
    color: rgba(255, 255, 255, 0.52);
}

.waitlist-legal {
    margin: 2px 0 0;
    font-size: 0.78rem;
    color: #3e3e3e;
    font-style: italic;
    line-height: 1.5;
}

.waitlist-legal a {
    color: #2a2a2a;
}

.waitlist-legal .privacy-link:hover {
    color: #000000;
}

@media (max-width: 768px) {
    .waitlist-modal {
        padding: 12px;
    }

    .waitlist-modal-content {
        width: 100%;
        max-height: 92vh;
        padding: 20px 16px 16px;
        border-radius: 10px;
    }

    .waitlist-title {
        font-size: clamp(1.6rem, 6.2vw, 2rem);
    }

    .waitlist-subtitle {
        font-size: 0.88rem;
        margin-bottom: 14px;
    }

    .waitlist-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .waitlist-submit {
        min-height: 45px;
        font-size: 0.88rem;
    }

    .waitlist-inline-panel .waitlist-inline-cta-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .waitlist-inline-panel .waitlist-inline-cta-row .waitlist-submit {
        margin-left: 0;
    }

    .waitlist-legal {
        font-size: 0.72rem;
    }
}
