*, *::before, *::after { padding: 0; margin: 0; box-sizing: border-box; }

:root {
    --primary: #FFD700;
    --primary-rgb: 255,215,0;
    --primary-contrast: #0d0d14;
    --sidebar: 130px;
    --font-heading: 'Montserrat', sans-serif;
    --font-hero:    'Montserrat', sans-serif;
    --font-body:    'Roboto', sans-serif;
    --font-accent:  'Roboto', sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    background: #000;
    width: 100%;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
*::-webkit-scrollbar { width: 0; height: 0; }

body {
    font-family: var(--font-body);
    background-color: #000;
    color: #fff;
    min-height: 100svh;
    max-width: 100vw;
}

h1,h2,h3,h4,h5,h6,
.page-hero-content h1,
.sv-hero-title,
.sv-section-title,
.sv-cta-inner h2,
.content-box h1 { font-family: var(--font-heading); }

.content-box h1 {
    font-size: clamp(36px, 5.2vw, 72px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    background: linear-gradient(150deg, #fff 0%, #fff8d6 40%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.06;
}
.content-box h1.hero-headline {
    font-size: clamp(46px, 6.2vw, 92px);
    letter-spacing: 1px;
    line-height: 1.03;
    background: linear-gradient(150deg, #fff 0%, #ffe566 35%, #FFD700 70%, #e6a800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.content-box .text {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.4vw, 18px);
    font-weight: 400;
    color: rgba(255,255,255,.72);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 480px;
    letter-spacing: .2px;
    text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.page-hero::before       { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(8,8,18,.88),rgba(20,20,40,.78)); z-index: 1; }
.page-hero-content p     { color: rgba(255,255,255,.82); text-shadow: 0 1px 6px rgba(0,0,0,.45); font-size: 20px; line-height: 1.6; }
.card-body p             { color: rgba(255,255,255,.78); }

/* Hide custom cursor on touch/coarse-pointer devices (phones, tablets) */
@media (pointer: coarse) {
    .cursor, .cursor::after { display: none !important; }
}
.cursor {
    position: fixed;
    left: 0; top: 0;
    width: 140px; height: 140px;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 50%;
    transition-duration: .2s;
    transition-timing-function: ease-out;
    animation: cursorAnim 1s ease infinite alternate;
    pointer-events: none;
    z-index: 2000000;
    transform: translate(-50%,-50%);
}
.cursor::after {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    width: 22px; height: 22px;
    margin: -11px 0 0 -11px;
    background: var(--primary);
    border-radius: 50%;
    animation: cursorAnim2 1.5s ease infinite alternate;
}
@keyframes cursorAnim {
    0%   { transform: translate(-50%,-50%) scale(1); }
    100% { transform: translate(-50%,-50%) scale(.7); }
}
@keyframes cursorAnim2 {
    0%   { transform: scale(1); }
    100% { transform: scale(.4); }
}

.menu-backdrop {
    position: fixed;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,.2);
    pointer-events: none;
    z-index: 0;
}
.main-header-bar {
    position: fixed;
    left: 0; top: 0;
    z-index: 10005;
    width: var(--sidebar);
    height: 100vh;
    height: 100dvh;
    background: rgba(0,0,0,.30);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-right: 1px solid rgba(255,255,255,.14);
    overflow: visible;
    display: flex;
    align-items: stretch;
}
.main-header-bar .header-bar-inner {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 18px;
}
.main-header-bar .nav-bg-box {
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: transparent;
    opacity: 0; visibility: hidden;
    transition: all .3s ease;
}
.main-header-bar.menu-open .nav-bg-box { opacity: 1; visibility: visible; }

.main-header-bar .alt-logo-box {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 6px;
    transform: translateX(6px);
}
.main-header-bar .alt-logo-box img.text-logo {
    height: auto;
    max-height: clamp(36px,6vw,80px);
    width: auto;
    display: block;
    transition: transform .28s ease, filter .28s ease;
}
.main-header-bar .alt-logo-box a:hover img.text-logo { transform: scale(1.06); filter: brightness(1.08); }

.main-header-bar .toggler-btn {
    position: relative;
    width: 44px; height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px;
    gap: 6px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.main-header-bar .toggler-btn .bar {
    display: block;
    width: 26px; height: 3px;
    border-radius: 3px;
    background: rgba(255,255,255,.78);
    transition: all .28s ease;
}
.main-header-bar.menu-open .toggler-btn .bar             { background: rgba(255,255,255,.95); }
.main-header-bar.menu-open .toggler-btn .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.main-header-bar.menu-open .toggler-btn .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.main-header-bar.menu-open .toggler-btn .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.main-header-bar .line-one,
.main-header-bar .line-two { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

.main-header-bar .social-links ul {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.main-header-bar .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(30px,3.5vw,44px);
    height: clamp(30px,3.5vw,44px);
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    font-size: clamp(13px,1.1vw,17px);
    transition: all .32s cubic-bezier(.4,0,.2,1);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.18);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.main-header-bar .social-links li:nth-child(1) a { background: radial-gradient(circle at 30% 30%, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.main-header-bar .social-links li:nth-child(2) a { background: #000; }
.main-header-bar .social-links li:nth-child(3) a { background: #1877F2; }
.main-header-bar .social-links a span { color: #fff; font-size: inherit; filter: drop-shadow(0 2px 4px rgba(0,0,0,.35)); }
.main-header-bar .social-links a .sv-x-wrapper { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.main-header-bar .social-links a:hover { transform: translateY(-5px) scale(1.12); box-shadow: 0 10px 28px rgba(0,0,0,.5),0 0 0 3px rgba(255,255,255,.18); border-color: rgba(255,255,255,.35); }
@keyframes socialShine {
    0%   { left: -120%; opacity: 0; }
    40%  { opacity: 1; }
    100% { left: 130%; opacity: 0; }
}
.main-header-bar .social-links a::before {
    content: '';
    position: absolute;
    top: -10%; left: -120%;
    width: 55%; height: 120%;
    background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,.7) 50%, transparent 80%);
    transform: skewX(-20deg);
    pointer-events: none;
    animation: socialShine 3.2s ease-in-out infinite;
}
.main-header-bar .social-links li:nth-child(1) a::before { animation-delay: 0s; }
.main-header-bar .social-links li:nth-child(2) a::before { animation-delay: 1.1s; }
.main-header-bar .social-links li:nth-child(3) a::before { animation-delay: 2.2s; }

.main-header-bar .copyright {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    transform: rotate(180deg);
    padding: 0 6px;
    display: block;
}
.main-header-bar .copyright .copy-inner {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    writing-mode: vertical-rl;
}

.sidebar-overlay {
    position: fixed;
    left: 0; top: 0;
    width: var(--sidebar);
    height: 100vh;
    background: transparent;
    z-index: 10000;
    pointer-events: none;
}

.main-nav-outer {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,.88);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity .25s cubic-bezier(.4,0,.2,1), visibility .25s cubic-bezier(.4,0,.2,1);
}
.main-header-bar.menu-open ~ .main-nav-outer { opacity: 1; visibility: visible; }

.top-bg    { height: 3px; background: linear-gradient(90deg, transparent 5%, var(--primary) 50%, transparent 95%); opacity: .7; }
.bottom-bg { height: 2px; background: linear-gradient(90deg, transparent 5%, rgba(var(--primary-rgb),.35) 50%, transparent 95%); }

.outer-nav-box {
    position: relative;
    width: 72vw;
    max-width: 960px;
    max-height: 78vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.02));
    background-color: rgba(255,255,255,.02);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 20px;
    overflow: hidden;
    pointer-events: auto;
    box-shadow: 0 18px 40px rgba(0,0,0,.5),0 0 30px rgba(var(--primary-rgb),.04) inset;
    transform: scale(.992) translateY(6px);
    transition: transform .32s cubic-bezier(.2,0,.2,1),box-shadow .25s ease;
    margin-left: calc(var(--sidebar) + 8px);
    padding: 12px;
}
.main-header-bar.menu-open ~ .main-nav-outer .outer-nav-box { transform: scale(1) translateY(0); }

.mnav-group         { border-bottom: 1px solid rgba(255,255,255,.03); }
.mnav-group-header  { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; color: rgba(255,255,255,.95); font-weight: 600; }
.mnav-group-header .mnav-label { flex: 1; }
.mnav-group-header .mnav-chevron { transition: transform .22s ease; }
.mnav-submenu { display: block; padding: 6px 6px 14px 18px; background: transparent; overflow: hidden; max-height: 0; transition: max-height .28s ease; }
.mnav-submenu a { display: block; padding: 10px 6px; border-radius: 4px; color: rgba(255,255,255,.72); text-decoration: none; }
.mnav-group.open .mnav-submenu { max-height: 1200px; }
.mnav-group.open .mnav-chevron { transform: rotate(90deg); }

@media (min-width: 601px) {
    .main-nav-outer {
        align-items: center; justify-content: center;
        background: rgba(0,0,0,.22);
        -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    }
    .main-nav-outer .top-bg,
    .main-nav-outer .bottom-bg { display: none; }

    .main-nav-outer .outer-nav-box.desktop-like-mobile {
        position: fixed; inset: auto;
        left: calc(var(--sidebar) + 12px); top: 8vh;
        transform: none;
        width: min(480px,94vw); max-width: 480px;
        height: auto; max-height: min(86vh,900px);
        margin-left: 0;
        padding: 16px 18px 18px;
        border: none; border-radius: 8px;
        background:
            radial-gradient(circle at 50% 45%, rgba(255,255,255,.05), rgba(255,255,255,0) 34%),
            radial-gradient(circle at 20% 80%, rgba(255,255,255,.03), rgba(255,255,255,0) 28%),
            linear-gradient(180deg, rgba(12,12,12,.94), rgba(8,8,8,.96));
        box-shadow: none;
        overflow-y: auto; -webkit-overflow-scrolling: touch;
        z-index: 20021;
    }
    .main-nav-outer .outer-nav-box.desktop-like-mobile .nav-closer {
        display: flex; position: absolute; top: -50px; right: -50px; overflow: visible !important;
        width: 120px; height: 120px; padding: 0; border: 0; border-radius: 16px;
        background: rgba(0,0,0,0.06); box-shadow: 0 14px 36px rgba(0,0,0,.45), 0 0 18px rgba(var(--primary-rgb),.06) inset;
        align-items: center; justify-content: center; cursor: pointer; z-index: 10060; overflow: visible;
    }
    
    .main-nav-outer .outer-nav-box.desktop-like-mobile { overflow: visible; }
    .main-nav-outer .outer-nav-box.desktop-like-mobile .mnav-wrapper { max-height: min(86vh,900px); overflow-y: auto; -webkit-overflow-scrolling: touch; }
    
    .main-nav-outer .outer-nav-box.desktop-like-mobile .nav-closer svg        { width: 160px; height: 160px; overflow: visible; }
    .main-nav-outer .outer-nav-box.desktop-like-mobile .nav-closer svg circle  { display: none; }
    .main-nav-outer .outer-nav-box.desktop-like-mobile .nav-closer svg line    { stroke: #f1d318; stroke-width: 18; }
    .main-nav-outer .outer-nav-box.desktop-like-mobile .mnav-wrapper { display: flex; flex-direction: column; min-height: 100%; padding-top: 8px; }
    .main-nav-outer .outer-nav-box.desktop-like-mobile .mnav-logo    { display: flex; justify-content: center; align-items: center; margin: 8px 0 26px; padding: 0; }
    .main-nav-outer .outer-nav-box.desktop-like-mobile .mnav-logo img { display: block; width: auto; max-width: 290px; max-height: 96px; }
    .main-nav-outer .outer-nav-box.desktop-like-mobile .mnav-divider { display: flex; align-items: center; gap: 14px; margin: 0 0 18px; padding: 0; color: rgba(255,255,255,.82); }
    .main-nav-outer .outer-nav-box.desktop-like-mobile .mnav-divider::before,
    .main-nav-outer .outer-nav-box.desktop-like-mobile .mnav-divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.28); display: block; }
    .main-nav-outer .outer-nav-box.desktop-like-mobile .mnav-divider span { font-family: var(--font-heading); font-size: 12px; font-weight: 700; letter-spacing: 1.8px; color: rgba(255,255,255,.86); }
    .main-nav-outer .outer-nav-box.desktop-like-mobile .mnav-menu-list { display: flex; flex-direction: column; gap: 6px; padding: 0; margin: 0; }
    .main-nav-outer .outer-nav-box.desktop-like-mobile .mnav-group { margin: 0; border: 0; }
    .main-nav-outer .outer-nav-box.desktop-like-mobile .mnav-item,
    .main-nav-outer .outer-nav-box.desktop-like-mobile .mnav-group-header { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 8px 0; border: 0; background: transparent; box-shadow: none; text-decoration: none; color: #f4f4f4; font-family: var(--font-heading); font-size: 22px; font-weight: 600; letter-spacing: -.02em; line-height: 1.25; text-align: left; border-radius: 0; }
    .main-nav-outer .outer-nav-box.desktop-like-mobile .mnav-group-header { cursor: pointer; }
    .main-nav-outer .outer-nav-box.desktop-like-mobile .mnav-item i,
    .main-nav-outer .outer-nav-box.desktop-like-mobile .mnav-group-header .mnav-chevron i { display: inline-flex; align-items: center; justify-content: center; width: 16px; min-width: 16px; font-size: 14px; color: rgba(255,255,255,.9); }
    .main-nav-outer .outer-nav-box.desktop-like-mobile .mnav-group-single .mnav-item i { display: none; }
    .main-nav-outer .outer-nav-box.desktop-like-mobile .mnav-group-header .mnav-chevron { margin-left: 14px; }
    .main-nav-outer .outer-nav-box.desktop-like-mobile .mnav-group-header .mnav-chevron i { transform: rotate(90deg); transition: transform .24s ease; }
    .main-nav-outer .outer-nav-box.desktop-like-mobile .mnav-group.open .mnav-chevron i  { transform: rotate(270deg); }
    .main-nav-outer .outer-nav-box.desktop-like-mobile .mnav-submenu { padding: 2px 0 6px 0; overflow: hidden; max-height: 0; transition: max-height .28s ease; background: transparent; }
    .main-nav-outer .outer-nav-box.desktop-like-mobile .mnav-submenu a,
    .main-nav-outer .outer-nav-box.desktop-like-mobile .mnav-sub-item { display: block; padding: 5px 0 5px 22px; border: 0; background: transparent; color: rgba(255,255,255,.72); text-decoration: none; font-family: var(--font-body); font-size: 14px; font-weight: 400; line-height: 1.35; box-shadow: none; border-radius: 0; }
    .main-nav-outer .outer-nav-box.desktop-like-mobile .mnav-group.open .mnav-submenu { max-height: 420px; }
    .main-nav-outer .outer-nav-box.desktop-like-mobile .mnav-contact { margin-top: auto; padding: 18px 0 4px; border-top: 1px solid rgba(255,255,255,.24); }
    .main-nav-outer .outer-nav-box.desktop-like-mobile .mnav-contact > div { display: flex; align-items: center; gap: 14px; padding: 7px 0; color: rgba(255,255,255,.93); font-family: var(--font-body); font-size: 15px; font-weight: 400; line-height: 1.35; }
    .main-nav-outer .outer-nav-box.desktop-like-mobile .mnav-contact i { width: 24px; min-width: 24px; font-size: 18px; text-align: center; color: #fff; }
    .main-nav-outer .outer-nav-box.desktop-like-mobile .mnav-contact a,
    .main-nav-outer .outer-nav-box.desktop-like-mobile .mnav-contact span { color: rgba(255,255,255,.94); text-decoration: none; }

}

@media (max-width: 600px) {
    .main-nav-outer {
        align-items: flex-start; justify-content: flex-start; padding: 0;
        background: transparent;
        -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
        z-index: 20020;
    }
    .outer-nav-box {
        position: fixed; inset: 0;
        width: 100vw; height: 100vh; height: 100dvh; max-height: none;
        margin-left: 0; padding: 24px 20px 40px;
        border-radius: 0; border: 0; box-shadow: none;
        background: #0b0b0b;
        -webkit-backdrop-filter: none; backdrop-filter: none;
        overflow-y: auto; -webkit-overflow-scrolling: touch;
        z-index: 20021;
        transform: translateY(24px) scale(.98);
        transform-origin: top center;
        transition: transform .32s cubic-bezier(.22,1,.36,1), opacity .28s ease;
    }

    
    .main-nav-outer .outer-nav-box.desktop-like-mobile,
    .outer-nav-box.desktop-like-mobile {
        position: fixed !important; inset: 0 !important;
        width: 100vw !important; height: 100vh !important; max-height: none !important;
        margin-left: 0 !important; padding: 24px 20px 40px !important;
        border-radius: 0 !important; border: 0 !important; box-shadow: none !important;
        background: #0b0b0b !important; -webkit-backdrop-filter: none !important; backdrop-filter: none !important;
        overflow-y: auto !important; -webkit-overflow-scrolling: touch !important;
        z-index: 20021 !important; transform: translateY(0) scale(1) !important;
    }
    .outer-nav-box::-webkit-scrollbar       { width: 6px; }
    .outer-nav-box::-webkit-scrollbar-thumb { background: rgba(255,255,255,.06); border-radius: 3px; }
    .main-header-bar.menu-open ~ .main-nav-outer .outer-nav-box { transform: translateY(0) scale(1); }

    
    .top-bg, .bottom-bg { display: none; }
    .mnav-wrapper  { display: block; }

    
    .main-nav-outer .nav-closer {
        display: flex; position: fixed !important; top: 1px !important; right: 1px !important;
        width: 96px; height: 96px; border-radius: 18px;
        background: linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.02));
        border: 1px solid rgba(255,255,255,.12);
        align-items: center; justify-content: center; cursor: pointer; z-index: 20040 !important; overflow: visible !important;
    }
    
    .main-nav-outer .nav-closer svg        { width: 120px; height: 120px; overflow: visible !important; }
    .main-nav-outer .nav-closer svg circle { fill: rgba(255,255,255,.14); }
    .main-nav-outer .nav-closer svg line   { stroke: #ffd700; stroke-width: 18; }

    
    .mnav-logo { text-align: center; padding-top: 14px; margin-bottom: 6px; }
    .mnav-logo img { height: 90px; width: auto; display: inline-block; }

    
    .mnav-divider { display: flex; align-items: center; margin: 22px 0 14px; gap: 0; }
    .mnav-divider::before, .mnav-divider::after { content: ''; flex: 1; height: 1px; background: #333; }
    .mnav-divider span { padding: 0 12px; color: #aaa; font-size: 13px; font-weight: 700; letter-spacing: 3px; white-space: nowrap; }

    
    .mnav-menu-list { display: flex; flex-direction: column; gap: 6px; padding: 0; margin: 0; list-style: none; }
    .mnav-group     { margin: 0; border: 0; }
    .mnav-item,
    .mnav-group-header { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 8px 0; border: 0; background: transparent; box-shadow: none; text-decoration: none; color: #f4f4f4; font-family: var(--font-heading); font-size: 22px; font-weight: 600; letter-spacing: -.02em; line-height: 1.25; text-align: left; border-radius: 0; }
    .mnav-group-header { cursor: pointer; }
    .mnav-item i,
    .mnav-group-header .mnav-chevron i { display: inline-flex; align-items: center; justify-content: center; width: 16px; min-width: 16px; font-size: 14px; color: rgba(255,255,255,.9); }
    .mnav-group-single .mnav-item i { display: none; }
    .mnav-group-header .mnav-chevron { margin-left: 14px; }
    .mnav-group-header .mnav-chevron i { transform: rotate(90deg); transition: transform .24s ease; }
    .mnav-group.open .mnav-chevron i  { transform: rotate(270deg); }

    .mnav-submenu { padding: 2px 0 6px 0; overflow: hidden; max-height: 0; transition: max-height .28s ease; background: transparent; }
    .mnav-submenu a,
    .mnav-sub-item { display: block; padding: 5px 0 5px 22px; border: 0; background: transparent; color: rgba(255,255,255,.72); text-decoration: none; font-family: var(--font-body); font-size: 14px; font-weight: 400; line-height: 1.35; box-shadow: none; border-radius: 0; }
    .mnav-group.open .mnav-submenu { max-height: 420px; }

    .mnav-shop-list { display: flex; flex-direction: column; margin: 0; padding: 0; }
    .mnav-shop-item {
        display: flex; align-items: center; gap: 14px;
        padding: 13px 4px; font-size: 19px; font-weight: 400; color: #ddd;
        text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.04); transition: color .18s;
    }
    .mnav-shop-item:last-child { border-bottom: 0; }
    .mnav-shop-item:hover { color: #fff; }
    .mnav-shop-item i { font-size: 22px; color: #fff; flex-shrink: 0; }
    .mnav-badge { background: #ffd700; color: #000; font-size: 12px; font-weight: 800; border-radius: 50%; min-width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; padding: 0 4px; line-height: 1; }
    .mnav-badge:empty { display: none; }

    .mnav-contact { margin-top: 24px; padding-top: 20px; border-top: 1px solid #333; display: flex; flex-direction: column; gap: 14px; }
    .mnav-contact > div { display: flex; align-items: center; gap: 14px; font-size: 15px; color: #bbb; }
    .mnav-contact i { font-size: 18px; color: #fff; flex-shrink: 0; }
    .mnav-contact a { color: #bbb; text-decoration: none; }
    .mnav-contact a:hover { color: #fff; }
}

.main-content-container { position: relative; width: 100vw; max-width: 100vw; left: 0; min-height: 100svh; background: rgba(6,6,11,.94); padding-left: 0; padding-right: 0; box-sizing: border-box; overflow-x: hidden; }

/* Ensure inner content stays readable while allowing full-bleed backgrounds
   Use existing per-section max-width rules (e.g. .page-cards) to center content */
@media (min-width: 980px) {
    .main-content-container .container-inner { max-width: 1200px; margin: 0 auto; }
}

.page-hero {
    position: relative; width: 100%; min-height: 60vh;
    display: flex; align-items: center; justify-content: center; text-align: center;
    padding: 80px 40px 60px; padding-left: calc(var(--sidebar) + 40px); overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img, .page-hero-bg svg { width: 100%; height: 100%; object-fit: cover; object-position: center left; opacity: .22; filter: brightness(.86); }
.page-hero-content { position: relative; z-index: 2; max-width: 800px; }
.page-hero-content h1 {
    font-size: clamp(32px,4.5vw,52px); font-weight: 800; text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 16px; line-height: 1.02;
    background: linear-gradient(135deg,#fff 0%,var(--primary) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    word-break: break-word;
}

.page-cards  { padding: 60px 40px 80px; max-width: 1200px; margin: 0 auto; }
.cards-grid  { display: grid; grid-template-columns: repeat(auto-fill,minmax(320px,1fr)); gap: 30px; }
.card-item   { background: linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; overflow: hidden; transition: all .4s cubic-bezier(.25,.8,.25,1); position: relative; }
.card-item:hover { transform: translateY(-6px); border-color: rgba(var(--primary-rgb),.4); box-shadow: 0 20px 50px rgba(0,0,0,.4),0 0 30px rgba(var(--primary-rgb),.08); }
.card-thumb  { width: 100%; height: 200px; overflow: hidden; background: #0d0d14; display: flex; align-items: center; justify-content: center; }
.card-thumb img, .card-thumb svg { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; filter: brightness(.94); }
.card-item:hover .card-thumb img, .card-item:hover .card-thumb svg { transform: scale(1.06); }
.card-body   { padding: 28px 24px; }
.card-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: #fff; text-transform: uppercase; letter-spacing: 1px; }

.back-home { display: inline-flex; align-items: center; gap: 8px; margin: 30px 40px 0; padding: 10px 20px; border: 1px solid rgba(255,255,255,.15); border-radius: 8px; color: rgba(255,255,255,.7); text-decoration: none; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: all .3s ease; }
.back-home:hover { color: var(--primary); border-color: var(--primary); background: rgba(var(--primary-rgb),.08); }

.page-footer { padding: 8px 12px; text-align: center; border-top: 1px solid rgba(255,255,255,.04); color: #fff; font-family: var(--font-heading); font-size: 12px; font-weight: 400; letter-spacing: 1px; margin-top: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sv-legal-footer    { background: #08080e; border-top: 1px solid rgba(var(--primary-rgb),.06); padding: 8px 12px; text-align: center; }
.sv-legal-inner     { max-width: 900px; margin: 0 auto; }
.sv-legal-notice    { font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 14px; line-height: 1.6; }
.sv-legal-notice i  { color: var(--primary); margin-right: 6px; }
.sv-legal-notice a  { color: var(--primary); text-decoration: none; margin-left: 6px; font-weight: 600; }
.sv-legal-notice a:hover { text-decoration: underline; }
.sv-legal-links     { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.sv-legal-links a   { color: rgba(255,255,255,.45); font-size: 12px; text-decoration: none; font-weight: 500; letter-spacing: 1px; transition: color .3s ease; }
.sv-legal-links a:hover { color: var(--primary); }
.sv-legal-links .sep { color: rgba(255,255,255,.15); font-size: 12px; }

.theme-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; background: linear-gradient(135deg,var(--primary),#e6c200); color: #0d0d14; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; text-decoration: none; border-radius: 50px; transition: all .4s ease; border: 2px solid transparent; box-shadow: 0 8px 30px rgba(var(--primary-rgb),.3); }
.theme-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(var(--primary-rgb),.5); background: transparent; color: var(--primary); border-color: var(--primary); }

/* Force main content sections to use full available width while keeping inner padding */
.main-content-container .content-box,
.main-content-container .page-hero-content,
.main-content-container .page-cards,
.main-content-container .sv-legal-inner,
.main-content-container .vision-stage,
.main-content-container .page-hero,
.main-content-container .cards-grid {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: clamp(12px, 3vw, 48px) !important;
    padding-right: clamp(12px, 3vw, 48px) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box;
}

/* Prevent hero headline overflow on very small screens */
@media (max-width: 420px) {
    .content-box h1.hero-headline { font-size: clamp(20px, 6vw, 30px) !important; line-height: 1.05 !important; }
    .page-hero { padding-left: 12px; padding-right: 12px; }
}
.theme-btn i, .sv-hero-cta i, .space-hero-cta i { font-size: 16px; transition: transform .3s ease; display: inline-block; min-width: 1em; }
.theme-btn:hover i { transform: translateX(4px); }

.full-banner-image { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; background-size: cover; background-position: center; background-repeat: no-repeat; transition: background-image .8s ease; filter: brightness(.6); }
.full-banner-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg,rgba(8,8,18,.62),rgba(14,14,30,.42) 55%,rgba(8,8,18,.38)); z-index: 1; }
.transition-black { position: fixed; top: 0; left: 0; right: 0; width: 100%; height: 100vh; background: #1a1a23; z-index: 9999; pointer-events: none; opacity: 0; transition: opacity .6s ease; }
.transition-black.active { opacity: 1; }
.banner-section { position: relative; width: 100%; height: 100svh; overflow: hidden; }
.banner-slider  { position: relative; width: 100%; height: 100%; overflow: hidden; }
.slide-item { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: flex-start; padding: 0 80px; padding-left: calc(var(--sidebar) + 80px); opacity: 0; visibility: hidden; transition: opacity .8s ease,visibility .8s ease; z-index: 1; }
.slide-item.is-active { opacity: 1; visibility: visible; z-index: 2; }
.slide-count { position: absolute; right: 60px; top: 40px; font-family: var(--font-heading); font-size: clamp(32px,12vw,160px); font-weight: 900; color: rgba(255,255,255,.08); letter-spacing: clamp(2px,1.2vw,12px); z-index: 0; pointer-events: none; user-select: none; text-shadow: 0 0 60px rgba(var(--primary-rgb),.06); }
.content-box { position: relative; z-index: 2; max-width: 650px; text-align: left; }
.process-line      { position: absolute; bottom: 0; left: var(--sidebar); width: calc(100% - var(--sidebar)); height: 4px; background: rgba(255,255,255,.1); z-index: 5; }
.process-line-fill { display: block; width: 0%; height: 100%; background: linear-gradient(90deg,var(--primary),#e6c200); transition: width var(--slide-duration,10000ms) linear; }
.slide-item.is-active .process-line-fill { width: 100%; }
.slide-nav { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 10; }
.slide-nav .dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,.25); border: 2px solid rgba(255,255,255,.3); cursor: pointer; transition: all .3s ease; }
.slide-nav .dot.active { background: var(--primary); border-color: var(--primary); box-shadow: 0 0 12px rgba(var(--primary-rgb),.6); transform: scale(1.3); }

.sv-social-overlay { position: fixed; inset: 0; z-index: 1000000; background: rgba(5,5,15,.85); opacity: 0; visibility: hidden; transition: opacity .35s ease,visibility .35s ease; }
.sv-social-overlay.is-open { opacity: 1; visibility: visible; }
.sv-social-popup { position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.88); z-index: 1000001; width: min(94vw,460px); max-height: 90vh; overflow-y: auto; overflow-x: hidden; background: linear-gradient(145deg,rgba(16,16,28,.97),rgba(10,10,20,.99)); border: 1px solid rgba(255,255,255,.1); border-radius: 28px; box-shadow: 0 40px 100px rgba(0,0,0,.8),0 0 80px rgba(var(--primary-rgb),.07),inset 0 1px 0 rgba(255,255,255,.08); opacity: 0; visibility: hidden; transition: opacity .35s cubic-bezier(.4,0,.2,1),visibility .35s cubic-bezier(.4,0,.2,1),transform .35s cubic-bezier(.4,0,.2,1); }
.sv-social-popup.is-open { opacity: 1; visibility: visible; transform: translate(-50%,-50%) scale(1); }
.sv-social-popup::-webkit-scrollbar       { width: 4px; }
.sv-social-popup::-webkit-scrollbar-track { background: transparent; }
.sv-social-popup::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 2px; }

.sv-x-icon    { width: 16px; height: 16px; fill: currentColor; }
.sv-x-wrapper { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.sv-x-wrapper .sv-x-icon { fill: #fff; }
.main-header-bar .social-links a .sv-x-wrapper .sv-x-icon { width: 15px; height: 15px; }
.sv-social-card-icon .sv-x-icon { width: 22px; height: 22px; fill: #fff; }
.sv-popup-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px 0; }
.sv-popup-close-btn { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.7); font-size: 16px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .25s ease; flex-shrink: 0; }
.sv-popup-close-btn:hover { background: rgba(255,50,50,.15); border-color: rgba(255,80,80,.4); color: #ff6b6b; transform: rotate(90deg) scale(1.1); }
.sv-popup-platform-badge { display: flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-size: 13px; font-weight: 700; letter-spacing: .5px; }
.sv-popup-platform-badge i, .sv-popup-platform-badge svg { font-size: 18px; }

.sv-ig-popup    { --ig-grad: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.sv-ig-cover    { height: 110px; background: var(--ig-grad); position: relative; overflow: hidden; }
.sv-ig-avatar   { position: absolute; bottom: -36px; left: 24px; width: 72px; height: 72px; border-radius: 50%; border: 3px solid rgba(16,16,28,.97); background: var(--ig-grad); display: flex; align-items: center; justify-content: center; font-size: 28px; color: #fff; box-shadow: 0 4px 20px rgba(0,0,0,.5); }
.sv-ig-body     { padding: 44px 24px 20px; }
.sv-ig-name     { font-family: var(--font-heading); font-size: 17px; font-weight: 900; color: #fff; letter-spacing: .3px; }
.sv-ig-handle   { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 10px; }
.sv-ig-bio      { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.5; margin-bottom: 16px; }
.sv-ig-stats    { display: flex; margin-bottom: 18px; border: 1px solid rgba(255,255,255,.08); border-radius: 14px; overflow: hidden; }
.sv-ig-stat     { flex: 1; text-align: center; padding: 12px 8px; border-right: 1px solid rgba(255,255,255,.07); }
.sv-ig-stat:last-child { border-right: none; }
.sv-ig-stat strong { display: block; font-family: var(--font-heading); font-size: 16px; font-weight: 900; color: #fff; }
.sv-ig-stat span   { font-size: 10px; text-transform: uppercase; letter-spacing: .8px; color: rgba(255,255,255,.38); }
.sv-ig-follow-btn  { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 12px; border-radius: 12px; background: var(--ig-grad); color: #fff; font-family: var(--font-heading); font-size: 14px; font-weight: 800; letter-spacing: 1px; text-decoration: none; transition: all .3s ease; border: none; cursor: pointer; text-transform: uppercase; margin-bottom: 16px; box-shadow: 0 6px 24px rgba(220,39,67,.35); }
.sv-ig-follow-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(220,39,67,.5); }
.sv-ig-posts    { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; margin-bottom: 16px; border-radius: 10px; overflow: hidden; }
.sv-ig-post     { aspect-ratio: 1; background: linear-gradient(135deg,rgba(255,255,255,.06),rgba(255,255,255,.02)); display: flex; align-items: center; justify-content: center; font-size: 22px; transition: all .3s ease; cursor: pointer; }
.sv-ig-post:hover { background: rgba(var(--primary-rgb),.1); transform: scale(.97); }

.sv-x-popup .sv-ig-cover       { background: linear-gradient(135deg,#1a1a2e,#16213e,#0f3460); }
.sv-x-popup .sv-ig-avatar      { background: #000; border-color: rgba(16,16,28,.97); }
.sv-x-popup .sv-ig-follow-btn  { background: #000; border: 1px solid rgba(255,255,255,.2); box-shadow: 0 6px 24px rgba(0,0,0,.5); }
.sv-x-popup .sv-ig-follow-btn:hover { background: #1a1a1a; box-shadow: 0 10px 32px rgba(0,0,0,.7); }
.sv-x-posts     { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.sv-x-post      { padding: 14px 16px; border: 1px solid rgba(255,255,255,.07); border-radius: 14px; background: rgba(255,255,255,.03); transition: background .25s ease; cursor: pointer; }
.sv-x-post:hover      { background: rgba(255,255,255,.06); }
.sv-x-post-text       { font-size: 13px; color: rgba(255,255,255,.8); line-height: 1.55; margin-bottom: 8px; }
.sv-x-post-meta       { display: flex; gap: 18px; font-size: 11px; color: rgba(255,255,255,.3); }
.sv-x-post-meta span  { display: flex; align-items: center; gap: 4px; }

.sv-fb-popup .sv-ig-cover       { background: linear-gradient(135deg,#1877F2,#0a5cd8,#1565c0); }
.sv-fb-popup .sv-ig-avatar      { background: #1877F2; border-color: rgba(16,16,28,.97); }
.sv-fb-popup .sv-ig-follow-btn  { background: linear-gradient(135deg,#1877F2,#1565c0); box-shadow: 0 6px 24px rgba(24,119,242,.4); }
.sv-fb-popup .sv-ig-follow-btn:hover { box-shadow: 0 10px 32px rgba(24,119,242,.6); }
.sv-fb-updates  { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.sv-fb-update   { padding: 14px 16px; border: 1px solid rgba(255,255,255,.07); border-radius: 14px; background: rgba(255,255,255,.03); cursor: pointer; transition: background .25s ease; }
.sv-fb-update:hover    { background: rgba(255,255,255,.06); }
.sv-fb-update-title    { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.85); margin-bottom: 4px; }
.sv-fb-update-text     { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.5; }
.sv-fb-like-row        { display: flex; align-items: center; gap: 16px; margin-top: 8px; font-size: 11px; color: rgba(255,255,255,.3); }
.sv-social-popup-footer { padding: 12px 20px 18px; text-align: center; font-size: 11px; color: rgba(255,255,255,.22); letter-spacing: .8px; border-top: 1px solid rgba(255,255,255,.05); margin-top: 4px; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.nav-closer svg { display: block; transform-origin: 50% 50%; will-change: transform; pointer-events: auto; transition: transform 0.3s ease; overflow: visible; }
.nav-closer { background: transparent !important; box-shadow: none !important; border: 0 !important; cursor: pointer; transition: transform 0.3s ease; }

.main-nav-outer .outer-nav-box.desktop-like-mobile .nav-closer:hover svg,
.main-nav-outer .nav-closer:hover svg {
    transform: scale(1.1) rotate(90deg);
}
.page-hero-content h1   { animation: fadeInUp .8s ease; }
.page-hero-content p    { animation: fadeInUp .8s ease .15s backwards; }
.card-item              { animation: fadeInUp .6s ease backwards; }
.card-item:nth-child(1) { animation-delay: .1s; }
.card-item:nth-child(2) { animation-delay: .2s; }
.card-item:nth-child(3) { animation-delay: .3s; }

@media (max-width: 980px) {
    :root { --sidebar: 84px; }
    .sidebar-overlay   { display: none; }
    .outer-nav-box     { margin-left: 0; width: 88vw; max-height: calc(100svh - 24px); overflow-y: auto; -webkit-overflow-scrolling: touch; }
    .process-line      { left: 0; width: 100%; }
    .slide-item        { padding-left: calc(var(--sidebar) + 40px); padding-right: 40px; }
    .content-box       { max-width: calc(100% - var(--sidebar) - 48px); }
    .main-header-bar .header-bar-inner     { padding: 16px 0; gap: 14px; }
    .main-header-bar .alt-logo-box         { transform: none; padding: 6px 4px; }
    .main-header-bar .alt-logo-box img.text-logo { max-height: 52px; }
    .main-header-bar .toggler-btn          { width: 40px; height: 40px; padding: 6px; gap: 5px; }
    .main-header-bar .line-one,
    .main-header-bar .line-two             { height: 28px; }
    .main-header-bar .social-links a       { width: 30px; height: 30px; font-size: 11px; }
    .main-header-bar .social-links ul      { gap: 12px; }
    .main-header-bar .copyright            { font-size: 10px; padding: 0 4px; }
    .cards-grid        { grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 20px; }
    .page-hero, .page-cards, .page-footer,
    .sv-legal-footer   { padding-left: calc(var(--sidebar) + 24px); }
    .back-home         { margin-left: calc(var(--sidebar) + 16px); }
}

@media (max-width: 980px) and (min-width: 601px) {
    
    .main-nav-outer .nav-closer { display: block; position: fixed !important; top: 12px !important; right: 12px !important; z-index: 20005 !important; pointer-events: auto !important; cursor: pointer; transition: transform 0.3s ease; overflow: visible !important; }
    .main-nav-outer .nav-closer { width: 110px; height: 110px; border-radius: 16px; }
    .main-nav-outer .nav-closer svg { width: 140px; height: 140px; overflow: visible !important; }
    .main-nav-outer .nav-closer svg line { stroke-width: 18; }
}

@media (min-width: 981px) {
    .main-header-bar .toggler-btn      { width: 60px; height: 60px; padding: 10px; gap: 8px; }
    .main-header-bar .toggler-btn .bar { width: 34px; height: 4px; border-radius: 4px; }
    .main-header-bar.menu-open .toggler-btn .bar:nth-child(1) { transform: rotate(45deg) translate(9px,9px); }
    .main-header-bar.menu-open .toggler-btn .bar:nth-child(3) { transform: rotate(-45deg) translate(9px,-9px); }
    .content-box { max-width: 900px; }
    .outer-nav-box { position: absolute; top: 72px; right: calc(var(--sidebar) + 18px); margin-left: 0; transform-origin: top right; }
}

@media (max-width: 600px) {
    :root { --sidebar: 52px; }
    .main-header-bar                         { width: var(--sidebar); }
    .main-header-bar .header-bar-inner       { justify-content: space-around; align-items: center; gap: 14px; padding: 14px 0 10px; }
    .main-header-bar .alt-logo-box           { transform: translateX(6px); padding: 6px 4px 2px; overflow: visible; padding-left: 20px; }
    /* Increase mobile logo 1.3x (38px * 1.3 ≈ 49px) without widening header */
    .main-header-bar .alt-logo-box img.text-logo { max-height: 100px; height: auto; width: auto; }
    .main-header-bar .toggler-btn            { width: 44px; height: 44px; padding: 8px; gap: 6px; }
    .main-header-bar .toggler-btn .bar       { width: 26px; height: 3px; }
    .main-header-bar .line-one,
    .main-header-bar .line-two               { height: 56px; }
    .main-header-bar .social-links ul        { gap: 20px; }
    .main-header-bar .social-links a         { width: clamp(30px,3.5vw,44px); height: clamp(30px,3.5vw,44px); font-size: clamp(13px,1.1vw,17px); }
    .main-header-bar .copyright              { writing-mode: vertical-rl; transform: rotate(180deg); color: rgba(255,255,255,.9); font-size: 12px; display: block; padding: 0 4px; text-align: center; }
    /* remove large left gutter on mobile; keep small internal padding */
    .content-box                             { padding-left: 12px; padding-right: 12px; box-sizing: border-box; max-width: 100%; }
    .content-box h1.hero-headline            { font-size: clamp(34px,9.5vw,56px); line-height: 1.02; word-break: break-word; }
    .slide-item                              { padding-left: calc(var(--sidebar) + 12px); padding-right: 16px; }
    .page-hero                               { padding: 60px 16px 40px calc(var(--sidebar) + 12px); }
    .page-cards                              { padding: 40px 16px 50px calc(var(--sidebar) + 12px); }
    .page-footer, .sv-legal-footer           { padding-left: calc(var(--sidebar) + 12px); }
    .back-home                               { margin: 20px 16px 0 calc(var(--sidebar) + 12px); }
    .cards-grid                              { grid-template-columns: 1fr; gap: 16px; }
    .card-body                               { padding: 20px 16px; }
    .card-thumb                              { height: 160px; }
    .slide-count                             { font-size: clamp(84px,24vw,210px); right: 16px; top: 16px; }
    .slide-nav                               { bottom: 16px; }
    .process-line                            { left: 0; width: 100%; }
    .banner-section                          { height: 100svh; touch-action: auto; overflow: hidden; }
    .full-banner-image                       { left: 0; right: 0; transform: none; }
    .cursor                                  { width: 64px; height: 64px; border-color: rgba(var(--primary-rgb),.9); }
    .cursor::after                           { width: 12px; height: 12px; margin: -6px 0 0 -6px; }
    .page-hero-content h1                    { font-size: clamp(22px,6vw,36px); letter-spacing: 1px; }
    /* Disable shine animation on mobile — saves compositing layers */
    .main-header-bar .social-links a::before { animation: none; }
    /* Disable entry animations — reduces TBT & layout shifts on mobile */
    .page-hero-content h1,
    .page-hero-content p,
    .card-item,
    .card-item:nth-child(1),
    .card-item:nth-child(2),
    .card-item:nth-child(3)                 { animation: none; }
}

@media (max-width: 380px) {
    :root { --sidebar: 56px; }
    .main-header-bar .alt-logo-box img.text-logo { max-height: 64px; }
    .main-header-bar .toggler-btn                { width: 34px; height: 34px; }
    .main-header-bar .toggler-btn .bar           { width: 16px; }
    .slide-count                                 { font-size: clamp(66px,30vw,144px); }
    .cursor                                      { width: 48px; height: 48px; }
    .cursor::after                               { width: 10px; height: 10px; margin: -5px 0 0 -5px; }
}

/* ── Reduced-motion: disable all cosmetic animations ─── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ── Content-visibility: skip paint for off-screen sections ─ */
.page-cards, .sv-legal-footer {
    content-visibility: auto;
    contain-intrinsic-size: 0 600px;
}





