/* Base Settings */
:root {
    --mouse-x: 50%;
    --mouse-y: 50%;
    --nav-expanded-max-width: 1024px;
    --nav-capsule-max-width: 768px;
}

.site-font {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
}

::-webkit-scrollbar-thumb {
    background: #e5e5e5;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d4d4d4;
}

/* Text Reveal Animation - Hero */
.char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.char.revealed {
    opacity: 1;
    transform: translateY(0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* Fixed Text Reveal */
.reveal-char {
    display: inline-block;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Default state: Pure Neutral-200 (#e5e5e5) - Starts Gray */
    background-image: linear-gradient(90deg, #e5e5e5 0%, #e5e5e5 100%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    /* Will be updated by JS */
}

/* General Scroll Animations */
.animate-on-scroll {
    opacity: 0.01;
    filter: blur(10px);
    transform: translateY(20px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.in-view {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* Scanning Animation */
@keyframes scan {
    0% {
        top: 0%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

.animate-scan {
    animation: scan 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* Flashlight Effect */
.flashlight-card {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #f3f4f6;
    overflow: hidden;
    transition: border-color 0.3s;
}

.flashlight-card::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: inherit;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y),
            rgba(0, 0, 0, 0.02),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}

.flashlight-border {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y),
            rgba(0, 0, 0, 0.3),
            transparent 40%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 2;
}

.flashlight-card:hover::before,
.flashlight-card:hover .flashlight-border {
    opacity: 1;
}

/* Smart Transition Base Styles */
.nav-base {
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px) saturate(100%);
    -webkit-backdrop-filter: blur(0px) saturate(100%);
    border: 0.5px solid rgba(255, 255, 255, 0);
    box-shadow: none;
}

#nav-inner {
    --nav-shell-width: min(1024px, calc(100vw - 3rem));
}

@media (min-width: 768px) {
    #nav-inner {
        width: var(--nav-shell-width) !important;
        max-width: none !important;
        transition-property: width, background-color, border-color, box-shadow, backdrop-filter, -webkit-backdrop-filter, transform, opacity !important;
        will-change: width, background-color, border-color, box-shadow, backdrop-filter, transform, opacity;
    }
}

html:not(.nav-transitions-ready) #main-nav,
html:not(.nav-transitions-ready) #nav-inner,
html:not(.nav-transitions-ready) #free-trial-btn,
html:not(.nav-transitions-ready) #mobile-menu-btn,
html:not(.nav-transitions-ready) #free-trial-btn svg {
    transition: none !important;
}

html.intro-booting #floating-tab-bar,
html.intro-booting .container-scroll-wrapper,
html.intro-booting #phone-mockup-container {
    visibility: hidden !important;
}

.btn-base {
    background: rgba(255, 255, 255, 0);
    border: 0.5px solid rgba(255, 255, 255, 0);
    box-shadow: none;
}

#free-trial-popover {
    pointer-events: none;
}

#free-trial-popover.touch-open {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) scale(1) !important;
    pointer-events: auto !important;
}

#mobile-menu-btn {
    --mobile-menu-nav-scale: 1;
    transform: scale(var(--mobile-menu-nav-scale));
    transform-origin: center;
    will-change: transform, background, border-color, box-shadow;
}

#mobile-menu-btn.liquid-glass-btn {
    --mobile-menu-nav-scale: 1.25;
}

/* Liquid Glass Styles (Transition Target) */
.liquid-glass-nav {
    --nav-shell-width: min(768px, calc(100vw - 3rem));
    background: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(40px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(40px) saturate(150%) !important;
    border: 0.5px solid rgba(255, 255, 255, 0.6) !important;
    border-radius: 32px !important;
    box-shadow:
        /* Outer shadows */
        0 2px 4px rgba(0, 0, 0, 0.02),
        0 4px 8px rgba(0, 0, 0, 0.03),
        0 8px 16px rgba(0, 0, 0, 0.04),
        0 16px 32px rgba(0, 0, 0, 0.05),

        /* Inner highlights */
        inset 0 1px 1px rgba(255, 255, 255, 0.9),
        inset 0 -1px 1px rgba(255, 255, 255, 0.3),

        /* Inner depth shadows */
        inset 3px 0 3px -1px rgba(0, 0, 0, 0.08),
        inset -3px 0 3px -1px rgba(0, 0, 0, 0.08),
        inset 0 3px 6px -3px rgba(255, 255, 255, 0.8),
        inset 0 -2px 4px -2px rgba(0, 0, 0, 0.1) !important;
}

/* Removed pseudo-elements for flat glass look */
.liquid-glass-nav::before,
.liquid-glass-nav::after,
.liquid-glass-nav.liquid-glass-nav::before,
.liquid-glass-nav.liquid-glass-nav::after {
    display: none !important;
    content: none !important;
}

.liquid-glass-btn {
    background: rgba(255, 255, 255, 0.6) !important;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.06),
        0 2px 4px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 1px 1px 2px rgba(255, 255, 255, 0.8),
        inset -1px -1px 2px rgba(255, 255, 255, 0.6),
        inset 2px 0 2px -1px rgba(0, 0, 0, 0.1),
        inset -2px 0 2px -1px rgba(0, 0, 0, 0.1),
        inset 0 2px 3px -1px rgba(255, 255, 255, 0.9),
        inset 0 -1px 2px -1px rgba(0, 0, 0, 0.15) !important;
    border: 0.5px solid rgba(255, 255, 255, 0.8) !important;
}

/* Removed pseudo-elements for flat button look */
.liquid-glass-btn::before,
.liquid-glass-btn::after,
.liquid-glass-btn.liquid-glass-btn::before,
.liquid-glass-btn.liquid-glass-btn::after {
    display: none !important;
    content: none !important;
}

/* 3D Scroll Animation Styles */
.container-scroll-wrapper {
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Height matches React component demo approximation */
    padding: 2rem 0;
}

.scrolling-card-wrapper {
    width: 100%;
    position: relative;
    transform-style: preserve-3d;
}

/* --- Mobile Menu Styles (Dual State) --- */

#mobile-selection-bar {
    isolation: isolate;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: height, opacity, transform;
    overflow: hidden;
    border-radius: 0 0 32px 32px;
    -webkit-clip-path: inset(0 round 0 0 32px 32px);
    clip-path: inset(0 round 0 0 32px 32px);
    contain: paint;
}

/* 1. EXPANDED Dropdown (Standard White Box - flows within, but styled differently) */
.expanded-dropdown-inner {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    border-radius: inherit;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    contain: paint;
    /* Uses height animation, not absolute positioning */
}

/* 2. CAPSULE Dropdown (Merged Transparent) */
.capsule-dropdown-inner {
    background: transparent;
    border: none;
    border-radius: 0 0 32px 32px;
    overflow: hidden;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    contain: paint;
    /* Clip content for height animation */
}

#mobile-expanded-divider {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100vw;
    height: 1px;
    background: rgba(229, 229, 229, 0.92);
    opacity: 0;
    transform: translateX(-50%) scaleX(0.94);
    transform-origin: center;
    transition: opacity 0.25s ease-out, transform 0.25s ease-out;
    pointer-events: none;
    will-change: opacity, transform;
}

#mobile-expanded-divider.show {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
    transition-delay: 160ms;
}

#mobile-expanded-divider:not(.show) {
    transition-delay: 0ms;
}

.liquid-glass-nav #mobile-expanded-divider {
    opacity: 0 !important;
    transform: translateX(-50%) scaleX(0.94) !important;
    transition-delay: 0ms !important;
}

/* Staggered Menu Animation */
.menu-row {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

.menu-row.show {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for opening (row 1 first, row 2 second, line last) */
.menu-row-1.show {
    transition-delay: 0ms;
}

.menu-row-2.show {
    transition-delay: 80ms;
}

/* Stagger delays for closing (line first, row 2 second, row 1 last) */
.menu-row-1:not(.show) {
    transition-delay: 160ms;
}

.menu-row-2:not(.show) {
    transition-delay: 80ms;
}

/* Hero渐变收缩 - 滚轮直接控制进度（无过渡延迟） */
#hero-center-group {
    will-change: opacity, transform;
}

.hero-mobile-edge-band {
    margin-left: auto;
    margin-right: auto;
}

#hero-description.hero-mobile-edge-band,
#hero-actions.hero-mobile-edge-band {
    width: min(100%, calc(100vw - 96px));
    max-width: calc(100vw - 96px);
}

@media (min-width: 768px) {
    .hero-mobile-edge-band {
        width: 100%;
        max-width: none;
    }

    #hero-actions.hero-mobile-edge-band {
        width: auto;
        max-width: none;
    }
}

/* Hero隐藏状态 - 收缩终点更近更大 */
.hero-hidden {
    opacity: 0;
    transform: translateY(-4.5vh) scale(0.92);
    pointer-events: none;
}

/* 浏览器窗口初始隐藏状态 - 从视口下方开始，翻转20度 */
.browser-initial-hidden {
    opacity: 0;
    transform: translateY(100%) rotateX(20deg) scale(1.05);
    pointer-events: none;
}

/* 浏览器窗口翻转进行中 - JS控制具体值 */
.browser-flipping {
    will-change: opacity, transform;
    pointer-events: none;
}

/* 浏览器窗口显示状态 */
.browser-visible {
    opacity: 1;
    transform: rotateX(0deg) scale(1);
}

/* 浏览器窗口消失动画 - 反向翻转 */
.browser-disappearing {
    animation: browserDisappear 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes browserDisappear {
    0% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(100%) rotateX(20deg) scale(1.05);
    }
}

/* 浏览器窗口居中显示模式 - 动态计算top值 */
.container-scroll-wrapper.centered-mode {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 25;
    width: 90%;
    max-width: 64rem;
    margin: 0 !important;
    /* top值由JS动态计算设置 */
}

/* 浏览器窗口容器透视 */
.container-scroll-wrapper {
    perspective: 1200px;
}

.scrolling-card-wrapper {
    transform-style: preserve-3d;
}

/* 模拟鼠标光标 - 现在在浏览器卡片内部 */
#simulated-cursor {
    position: absolute;
    width: 36px;
    height: 36px;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    will-change: opacity, left, top, transform;
}

/* 光标移动动画 */
.cursor-moving {
    transition: left 1.2s cubic-bezier(0.25, 1, 0.5, 1),
        top 1.2s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.3s ease-out;
}

/* 光标点击效果 */
.cursor-clicking {
    animation: cursorClick 0.4s ease-out;
}

@keyframes cursorClick {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.8);
    }

    100% {
        transform: scale(1);
    }
}

/* 点击涟漪效果 */
.click-ripple {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.3);
    pointer-events: none;
    z-index: 99;
    animation: rippleExpand 0.6s ease-out forwards;
}

@keyframes rippleExpand {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

/* 浮动Tab栏样式 */
#floating-tab-bar {
    position: fixed;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    z-index: 80;
    opacity: 0;
    transition: bottom 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease-out;
    pointer-events: none;
}

#floating-tab-bar.visible {
    bottom: 88px;
    opacity: 1;
    pointer-events: auto;
}

.tab-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 5px;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 10px 20px rgba(0, 0, 0, 0.08),
        0 20px 40px rgba(0, 0, 0, 0.1);
}

.tab-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
    color: #525252;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.tab-option.active {
    color: #ffffff;
}

.tab-option svg {
    width: 15px;
    height: 15px;
    transition: all 0.3s ease;
}

.tab-slider {
    position: absolute;
    top: 5px;
    height: calc(100% - 10px);
    background: #171717;
    border-radius: 32px;
    transition: left 0.45s cubic-bezier(0.22, 1, 0.36, 1), width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
}

/* 浏览器与手机切换动画样式 */
.device-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 浏览器滑出动画 - 向左 */
.browser-slide-out {
    animation: browserSlideOut 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes browserSlideOut {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-120%);
        opacity: 0;
    }
}

/* 浏览器滑入动画 - 从左 */
.browser-slide-in {
    animation: browserSlideIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes browserSlideIn {
    0% {
        transform: translateX(-120%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* 手机滑入动画 - 从右 */
.phone-slide-in {
    animation: phoneSlideIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes phoneSlideIn {
    0% {
        transform: translateX(120%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* 手机滑出动画 - 向右 */
.phone-slide-out {
    animation: phoneSlideOut 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes phoneSlideOut {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(120%);
        opacity: 0;
    }
}

/* 手机模拟器容器 */
#phone-mockup-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transform: translateX(120%);
}

#phone-mockup-container.visible {
    pointer-events: auto;
    opacity: 1;
    transform: translateX(0);
}

/* iPhone 模拟器样式 */
.iphone-frame {
    position: relative;
    transform-origin: center center;
}

.iphone-outer-glass {
    padding: 4px;
    border-radius: 60px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 40%, rgba(200, 200, 200, 0.1) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.8),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2),
        0 12px 40px rgba(0, 0, 0, 0.2),
        0 30px 80px rgba(0, 0, 0, 0.25);
}

.iphone-titanium-body {
    position: relative;
    overflow: hidden;
    border-radius: 56px;
    padding: 10px;
    background: linear-gradient(135deg, #a69a8a 0%, #837a72 40%, #6b6156 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03),
        inset 0 10px 20px rgba(0, 0, 0, 0.1);
}

.iphone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 56px;
    background: #e5e5e5;
}

.iphone-wallpaper {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-image: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=1200&auto=format&fit=crop');
}

.iphone-dynamic-island {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 90px;
    height: 28px;
    background: #000;
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

.iphone-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    pointer-events: none;
    width: 100px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.35));
    opacity: 0.9;
}

/* Scroll-reveal effect for layers 3, 4, 5 */
/* Container sets up stacking context */
#layers-container {
    position: relative;
}

/* Extra scroll space placeholder - height set by JS on load */
#layers-scroll-spacer {
    display: block;
    width: 100%;
    pointer-events: none;
    position: relative;
    z-index: 25;
}

/* Layer 1: native sticky pin shell for the intro scroll span */
#layer-1-pin-shell {
    --layer-1-intro-scroll-space: 0px;
    position: relative;
    z-index: 30;
    margin-bottom: 160vh;
}

#layer-1 {
    position: sticky;
    top: 0;
    margin-bottom: 0;
    min-height: 100vh;
}

#layer-1-scene {
    height: 100vh;
    overflow: hidden;
}

#layer-1-scene > .container-scroll-wrapper {
    position: absolute;
    left: 50%;
    top: 0;
    width: min(100%, 64rem);
    margin: 0;
    transform: translateX(-50%);
}

#layer-3 {
    position: relative;
    z-index: 30;
    background-color: white;
}

/* Layer 4: Fixed, position set by JS, initially hidden */
#layer-4 {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 20;
    visibility: hidden;
    --layer-4-horizontal-gutter: 48px;
}

.layer-4-shared-gutter {
    padding-left: var(--layer-4-horizontal-gutter);
    padding-right: var(--layer-4-horizontal-gutter);
    box-sizing: border-box;
}

/* Ensure layer-2 is behind layers 3, 4, 5 */
#layer-2-fixed {
    z-index: 5 !important;
}

/* ===== Final Footer Text Animation ("职阶" -> "职如流 履成阶") ===== */
.mask-reveal-section {
    position: relative;
    width: 100%;
    overflow: visible;
    cursor: none;
    --mask-text-size: clamp(3.5rem, 9vw, 9rem);
    --mask-horizontal-gutter: 48px;
    --mask-text-top-gap: 112px;
    --mask-circle-diameter: 0px;
}

.mask-base-layer,
.mask-top-layer {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: var(--mask-text-top-gap) var(--mask-horizontal-gutter) 0;
    box-sizing: border-box;
    overflow: hidden;
}

.mask-divider {
    padding: 0 var(--mask-horizontal-gutter);
    box-sizing: border-box;
}

.mask-trigger-zone {
    pointer-events: auto;
    cursor: none;
}

#layer-4-contact,
#layer-4-contact * {
    cursor: default;
}

#layer-4-contact a,
#layer-4-contact a * {
    cursor: pointer;
}

.mask-base-layer {
    background: #ffffff;
    z-index: 1;
    pointer-events: none;
}

.mask-base-text {
    font-size: var(--mask-text-size);
    font-weight: 700;
    line-height: 1.05;
    color: #171717;
    white-space: nowrap;
    letter-spacing: 0;
    user-select: none;
    font-family: 'Geist', 'Inter', sans-serif;
}

.mask-top-layer {
    background: #171717;
    z-index: 2;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(circle calc(var(--mask-current-diameter, 0px) / 2) at var(--mask-x, 50%) var(--mask-y, 50%), transparent 99%, black 100%);
    mask-image: radial-gradient(circle calc(var(--mask-current-diameter, 0px) / 2) at var(--mask-x, 50%) var(--mask-y, 50%), transparent 99%, black 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.mask-top-text {
    font-size: var(--mask-text-size);
    font-weight: 700;
    line-height: 1.05;
    color: #ffffff;
    white-space: nowrap;
    letter-spacing: 0;
    user-select: none;
    font-family: 'Geist', 'Inter', sans-serif;
}

.mask-hover-target {
    display: inline-block;
    pointer-events: auto;
    cursor: none;
}
