@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500&display=swap');



html,
body {
    margin: 0;
    padding: 0;
    background-color: #050a14;
    background-image:
        radial-gradient(ellipse 90% 60% at 50% -10%, rgba(56, 189, 248, 0.10) 0%, transparent 65%),
        radial-gradient(ellipse 70% 50% at -10% 35%, rgba(77, 155, 255, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 70% 50% at 110% 70%, rgba(125, 211, 252, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 80% 40% at 50% 110%, rgba(56, 189, 248, 0.05) 0%, transparent 70%);
    background-attachment: fixed;
    color: #ffffff;
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-size: 19px;
}

* {
    box-sizing: border-box;
}

/* Custom cursor and selection */
::selection {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* Scrollbar minimalist */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #050505;
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.18);
}

@layer base {
    :root {
        --background: 0 0% 2%;
        --foreground: 0 0% 100%;
        --card: 0 0% 4%;
        --card-foreground: 0 0% 100%;
        --popover: 0 0% 4%;
        --popover-foreground: 0 0% 100%;
        --primary: 0 0% 100%;
        --primary-foreground: 0 0% 4%;
        --secondary: 0 0% 10%;
        --secondary-foreground: 0 0% 100%;
        --muted: 0 0% 10%;
        --muted-foreground: 0 0% 64%;
        --accent: 0 0% 10%;
        --accent-foreground: 0 0% 100%;
        --destructive: 0 84% 60%;
        --destructive-foreground: 0 0% 100%;
        --border: 0 0% 15%;
        --input: 0 0% 15%;
        --ring: 0 0% 100%;
        --radius: 0.75rem;
    }
}



/* Brand color: Zelta turquoise + secondary blue */
:root {
    --zelta-turquoise: #4dd0e1;
    --zelta-turquoise-dim: rgba(77, 208, 225, 0.6);
    --zelta-turquoise-soft: rgba(77, 208, 225, 0.18);
    --zelta-blue: #4d9bff;
    --zelta-blue-dim: rgba(77, 155, 255, 0.6);
    --zelta-blue-soft: rgba(77, 155, 255, 0.18);
}

/* === LOADING SCREEN === */
.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: flex;
    flex-direction: column;
    background: transparent;
    overflow: hidden;
}

.ls-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
    z-index: 4;
}

.ls-header {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 40px;
}

.ls-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}
.ls-logo:hover {
    opacity: 1;
}
.ls-logo img {
    height: 54px;
    width: auto;
}

.ls-status {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-weight: 400;
}
.ls-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--zelta-turquoise);
    box-shadow:
        0 0 12px rgba(77, 208, 225, 0.7),
        0 0 22px rgba(77, 208, 225, 0.35);
}

.ls-main {
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 40px 0 50%;
}

@media (max-width: 1100px) {
    .ls-main {
        padding: 0 24px;
        justify-content: center;
        text-align: center;
    }
}

.ls-content {
    width: 100%;
    max-width: 620px;
}

.ls-eyebrow {
    margin-bottom: 26px;
    color: var(--zelta-turquoise);
    opacity: 0.8;
}

.ls-title {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.04;
    color: #fff;
    margin: 0 0 28px;
}
.ls-title-accent {
    font-style: italic;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.65);
}

.ls-sub {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    line-height: 1.75;
    font-weight: 400;
    max-width: 520px;
    margin: 0 0 56px;
}
@media (max-width: 1100px) {
    .ls-sub {
        margin: 0 auto 56px;
    }
}

.ls-loader {
    width: 100%;
    max-width: 460px;
    margin-bottom: 48px;
}
@media (max-width: 1100px) {
    .ls-loader {
        margin-left: auto;
        margin-right: auto;
    }
}

.ls-loader-meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 14px;
}

.ls-loader-label {
    color: rgba(255, 255, 255, 0.42);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 400;
}

.ls-loader-num {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.16em;
    font-variant-numeric: tabular-nums;
}

.ls-loader-track {
    position: relative;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.ls-loader-fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.85) 0%,
        var(--zelta-turquoise) 100%
    );
    transform-origin: left center;
    transform: scaleX(0);
    will-change: transform;
    box-shadow: 0 0 16px rgba(77, 208, 225, 0.45);
}

.ls-cta-wrap {
    min-height: 64px;
}

.ls-enter-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 50px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.4em;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:
        0 0 60px rgba(77, 208, 225, 0.08),
        0 4px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ls-enter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--zelta-turquoise-dim);
    padding: 18px 64px;
    box-shadow:
        0 0 100px rgba(77, 208, 225, 0.2),
        0 4px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.ls-enter-btn:disabled {
    cursor: not-allowed;
}

.ls-arrow {
    transition: transform 0.5s ease;
}
.ls-enter-btn:hover .ls-arrow {
    transform: translateX(8px);
}

.ls-footer {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 40px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 400;
}

/* === Shared orb (loading → hero transition) === */
.shared-orb {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 65vmin;
    height: 65vmin;
    margin-top: -32.5vmin;
    margin-left: -32.5vmin;
    z-index: 92;
    pointer-events: none;
    will-change: transform, opacity, filter;
    perspective: 1200px;
    filter:
        drop-shadow(0 0 60px rgba(77, 155, 255, 0.32))
        drop-shadow(0 0 120px rgba(77, 155, 255, 0.14))
        drop-shadow(0 0 40px rgba(77, 208, 225, 0.18));
    transition: filter 1.4s cubic-bezier(0.16, 1, 0.3, 1),
                z-index 0s linear 1.4s;
}
.shared-orb.is-loaded {
    z-index: 1;
    filter:
        drop-shadow(0 0 90px rgba(77, 155, 255, 0.45))
        drop-shadow(0 0 200px rgba(77, 155, 255, 0.20))
        drop-shadow(0 0 60px rgba(77, 208, 225, 0.25));
}

/* === Shared 3D Zelta logo container === */
.zelta-logo-3d {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.zelta-logo-3d canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

/* Hero orb (3D version) — fills viewport background */
.hero-orb-3d {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 75vmin;
    height: 75vmin;
    margin-top: -37.5vmin;
    margin-left: -37.5vmin;
    pointer-events: none;
    z-index: 1;
    opacity: 0.95;
    filter: drop-shadow(0 0 80px rgba(77, 208, 225, 0.1));
    will-change: transform;
}


/* === ELEVATOR INTRO (V3 — realistic doors only) === */
.elevator-intro {
    position: fixed;
    inset: 0;
    z-index: 100;
    background:
        radial-gradient(
            ellipse at center,
            #0a0a0c 0%,
            #050505 60%,
            #000 100%
        );
    overflow: hidden;
    perspective: 1600px;
}

.intro-ambient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at 50% 100%,
            rgba(212, 178, 87, 0.04) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 50% 0%,
            rgba(255, 255, 255, 0.02) 0%,
            transparent 60%
        );
    pointer-events: none;
}

.elev-scene {
    position: absolute;
    inset: 0;
    will-change: transform, opacity;
    transform-origin: 50% 50%;
}

/* The door frame (lintel + jambs + threshold) */
.elev-frame {
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.frame-lintel {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(70vw, 1000px);
    height: 12vh;
    max-height: 130px;
    background:
        linear-gradient(180deg, #1d1d20 0%, #141416 80%, #050507 100%),
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 40px,
            rgba(255, 255, 255, 0.018) 40px,
            rgba(255, 255, 255, 0.018) 41px
        );
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.7),
        inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

.frame-jamb {
    position: absolute;
    top: 12vh;
    bottom: 8vh;
    width: clamp(40px, 6vw, 90px);
    z-index: 6;
}
.frame-jamb.left {
    left: calc(50% - min(35vw, 500px));
    background: linear-gradient(90deg, #141416 0%, #1d1d20 50%, #0d0d0e 100%);
    box-shadow:
        inset -1px 0 0 rgba(255, 255, 255, 0.08),
        inset 1px 0 0 rgba(0, 0, 0, 0.5);
}
.frame-jamb.right {
    right: calc(50% - min(35vw, 500px));
    background: linear-gradient(270deg, #141416 0%, #1d1d20 50%, #0d0d0e 100%);
    box-shadow:
        inset 1px 0 0 rgba(255, 255, 255, 0.08),
        inset -1px 0 0 rgba(0, 0, 0, 0.5);
}

.frame-threshold {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(70vw, 1000px);
    height: 8vh;
    max-height: 90px;
    background: linear-gradient(180deg, #0d0d0e 0%, #1a1a1c 40%, #1d1d20 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 -10px 30px rgba(0, 0, 0, 0.5);
}

/* Floor display above doors */
.floor-display {
    position: absolute;
    top: 3.4vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 22px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 4px 20px rgba(0, 0, 0, 0.6);
}

.ding-dot {
    width: 8px;
    height: 8px;
    background: #d4b257;
    border-radius: 50%;
    opacity: 0.25;
    box-shadow:
        0 0 12px rgba(212, 178, 87, 0.6),
        0 0 22px rgba(212, 178, 87, 0.3);
}

.floor-num {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    color: #d4b257;
    font-size: 14px;
    letter-spacing: 0.18em;
    text-shadow:
        0 0 16px rgba(212, 178, 87, 0.5),
        0 0 4px rgba(212, 178, 87, 0.8);
    min-width: 18px;
    text-align: center;
}

.floor-arrow {
    color: rgba(212, 178, 87, 0.4);
    font-size: 8px;
}

.elev-brand {
    position: absolute;
    bottom: 3.4vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(255, 255, 255, 0.35);
    font-size: 10px;
    letter-spacing: 0.5em;
    font-weight: 300;
    text-transform: uppercase;
}

/* Real doors */
.real-door {
    position: absolute;
    top: 12vh;
    bottom: 8vh;
    width: 50%;
    z-index: 5;
    background:
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.013) 0,
            rgba(255, 255, 255, 0.013) 1px,
            transparent 1px,
            transparent 3px
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 40px,
            rgba(0, 0, 0, 0.06) 40px,
            rgba(0, 0, 0, 0.06) 41px
        ),
        linear-gradient(
            180deg,
            #28282c 0%,
            #2e2e32 25%,
            #38383d 48%,
            #2d2d32 72%,
            #18181b 100%
        );
    will-change: transform, opacity;
    overflow: hidden;
}

.real-door.left {
    left: 0;
    box-shadow:
        inset 0 0 200px rgba(0, 0, 0, 0.55),
        inset 0 -80px 120px rgba(0, 0, 0, 0.4),
        inset 0 80px 80px rgba(255, 255, 255, 0.02),
        inset -2px 0 0 rgba(0, 0, 0, 0.6),
        inset -3px 0 0 rgba(255, 255, 255, 0.04);
}
.real-door.right {
    right: 0;
    box-shadow:
        inset 0 0 200px rgba(0, 0, 0, 0.55),
        inset 0 -80px 120px rgba(0, 0, 0, 0.4),
        inset 0 80px 80px rgba(255, 255, 255, 0.02),
        inset 2px 0 0 rgba(0, 0, 0, 0.6),
        inset 3px 0 0 rgba(255, 255, 255, 0.04);
}

.door-brush {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        180deg,
        transparent 0,
        transparent 1px,
        rgba(255, 255, 255, 0.008) 1px,
        rgba(255, 255, 255, 0.008) 2px
    );
    pointer-events: none;
}

.door-spec {
    position: absolute;
    top: -10%;
    height: 120%;
    width: 30%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.06) 35%,
        rgba(255, 255, 255, 0.14) 50%,
        rgba(255, 255, 255, 0.06) 65%,
        transparent 100%
    );
    filter: blur(8px);
    pointer-events: none;
}
.real-door.left .door-spec {
    right: 10%;
    transform: skewX(-10deg);
}
.real-door.right .door-spec {
    left: 10%;
    transform: skewX(10deg);
}

.door-panel-seam {
    position: absolute;
    left: 0;
    right: 0;
    top: 62%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 0, 0, 0.5) 10%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.5) 90%,
        transparent 100%
    );
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.door-handle {
    position: absolute;
    top: 50%;
    width: 5px;
    height: 130px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    border-radius: 6px;
    transform: translateY(-50%);
    box-shadow:
        0 0 12px rgba(255, 255, 255, 0.18),
        inset 0 0 3px rgba(255, 255, 255, 0.5);
}
.door-handle.left {
    right: 22px;
}
.door-handle.right {
    left: 22px;
}

.real-seam {
    position: absolute;
    top: 12vh;
    bottom: 8vh;
    left: 50%;
    width: 2px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 240, 220, 0.5) 30%,
        rgba(255, 220, 180, 0.7) 50%,
        rgba(255, 240, 220, 0.5) 70%,
        transparent 100%
    );
    box-shadow:
        0 0 20px rgba(255, 220, 180, 0.45),
        0 0 50px rgba(255, 220, 180, 0.22);
    transform: translateX(-50%);
    z-index: 6;
    pointer-events: none;
}

.elev-interior {
    position: absolute;
    top: 12vh;
    bottom: 8vh;
    left: clamp(40px, 6vw, 90px);
    right: clamp(40px, 6vw, 90px);
    z-index: 2;
    overflow: hidden;
    background:
        radial-gradient(
            ellipse at 50% 30%,
            rgba(38, 36, 32, 1) 0%,
            rgba(18, 17, 16, 1) 50%,
            #050505 100%
        );
}

.interior-rear-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 50%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 220, 180, 0.15) 0%,
        rgba(255, 200, 150, 0.05) 40%,
        transparent 70%
    );
    pointer-events: none;
}

.interior-ceiling-light {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 18%;
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(255, 220, 180, 0.18) 0%,
        rgba(255, 220, 180, 0.04) 50%,
        transparent 100%
    );
    pointer-events: none;
}

.interior-floor-grid {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background:
        linear-gradient(
            180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.5) 40%,
            rgba(20, 18, 16, 0.85) 100%
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 80px,
            rgba(255, 255, 255, 0.025) 80px,
            rgba(255, 255, 255, 0.025) 82px
        );
    pointer-events: none;
}

.intro-enter-btn {
    position: absolute;
    top: 56%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 999px;
    padding: 20px 56px;
    font-size: 11px;
    letter-spacing: 0.45em;
    font-weight: 300;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:
        0 0 80px rgba(255, 255, 255, 0.08),
        0 4px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.intro-enter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.45);
    padding: 20px 76px;
    box-shadow:
        0 0 120px rgba(255, 255, 255, 0.2),
        0 4px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.intro-arrow {
    display: inline-block;
    transition: transform 0.5s ease;
    margin-left: 12px;
}
.intro-enter-btn:hover .intro-arrow {
    transform: translateX(8px);
}

.intro-skip {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 20;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
}
.intro-skip:hover {
    color: rgba(255, 255, 255, 0.9);
}

.intro-fade-out {
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.2s ease;
}

/* --- Phase 1: Corridor dolly-in --- */
.corridor-stage {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.corridor-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform-origin: 50% 52%;
    will-change: transform, filter;
}

.corridor-blur {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(0px);
    background: radial-gradient(
        ellipse at 50% 52%,
        transparent 0%,
        transparent 25%,
        rgba(0, 0, 0, 0.25) 55%,
        rgba(0, 0, 0, 0.85) 100%
    );
    pointer-events: none;
}

.corridor-vignette {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at 50% 52%,
            transparent 25%,
            rgba(0, 0, 0, 0.5) 75%,
            rgba(0, 0, 0, 0.95) 100%
        );
    pointer-events: none;
}

/* --- Phase 2+: Doors close-up scene --- */
.doors-scene {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0;
    will-change: opacity, transform;
}

.elevator-floor-ind {
    position: absolute;
    top: 38px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 8;
    display: flex;
    gap: 16px;
    align-items: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    letter-spacing: 0.45em;
    font-weight: 300;
    text-transform: uppercase;
}

.floor-label {
    color: rgba(255, 255, 255, 0.6);
}

.floor-dot {
    width: 7px;
    height: 7px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
}
.floor-dot.on {
    background: #d4b257;
    box-shadow:
        0 0 14px rgba(212, 178, 87, 0.8),
        0 0 28px rgba(212, 178, 87, 0.4);
}

/* Side walls for visual depth */
.side-wall {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 14%;
    z-index: 4;
    pointer-events: none;
}
.side-wall.left {
    left: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(20, 20, 22, 0.6) 60%,
            rgba(35, 35, 38, 0.2) 100%
        ),
        repeating-linear-gradient(
            180deg,
            transparent 0,
            transparent 60px,
            rgba(255, 255, 255, 0.02) 60px,
            rgba(255, 255, 255, 0.02) 62px
        );
}
.side-wall.right {
    right: 0;
    background:
        linear-gradient(
            270deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(20, 20, 22, 0.6) 60%,
            rgba(35, 35, 38, 0.2) 100%
        ),
        repeating-linear-gradient(
            180deg,
            transparent 0,
            transparent 60px,
            rgba(255, 255, 255, 0.02) 60px,
            rgba(255, 255, 255, 0.02) 62px
        );
}

.ceiling-light {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 80px;
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(255, 220, 180, 0.18) 0%,
        rgba(255, 220, 180, 0.05) 40%,
        transparent 80%
    );
    pointer-events: none;
    z-index: 7;
}

.floor-reflection {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 22%;
    background:
        linear-gradient(
            180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.4) 30%,
            rgba(0, 0, 0, 0.95) 100%
        );
    pointer-events: none;
    z-index: 6;
}

/* Door panels — brushed steel, cinematic */
.cinema-door {
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    z-index: 5;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.04) 0%,
            transparent 6%,
            transparent 94%,
            rgba(0, 0, 0, 0.6) 100%
        ),
        linear-gradient(
            90deg,
            #1c1c1f 0%,
            #2a2a2e 22%,
            #36363c 50%,
            #2a2a2e 78%,
            #1c1c1f 100%
        );
    box-shadow:
        inset 0 0 120px rgba(0, 0, 0, 0.6),
        inset 0 -60px 100px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(0, 0, 0, 0.95);
    will-change: transform, opacity;
    overflow: hidden;
}

.cinema-door::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent 0,
        transparent 18px,
        rgba(255, 255, 255, 0.018) 18px,
        rgba(255, 255, 255, 0.018) 19px
    );
    pointer-events: none;
}

.cinema-door.left {
    left: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
}
.cinema-door.right {
    right: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.04);
}

/* Specular highlight that travels with the surface */
.door-panel-light {
    position: absolute;
    top: -10%;
    height: 120%;
    width: 22%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.07) 40%,
        rgba(255, 255, 255, 0.16) 50%,
        rgba(255, 255, 255, 0.07) 60%,
        transparent 100%
    );
    filter: blur(6px);
    pointer-events: none;
}
.cinema-door.left .door-panel-light {
    right: 8%;
    transform: skewX(-8deg);
}
.cinema-door.right .door-panel-light {
    left: 8%;
    transform: skewX(8deg);
}

/* subtle bevel along edges */
.door-bevel {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 0%,
            transparent 6%,
            transparent 94%,
            rgba(255, 255, 255, 0.05) 100%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.04) 0%,
            transparent 4%,
            transparent 96%,
            rgba(0, 0, 0, 0.4) 100%
        );
    pointer-events: none;
}

/* Polished handle line */
.door-handle {
    position: absolute;
    top: 50%;
    width: 6px;
    height: 120px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    border-radius: 6px;
    transform: translateY(-50%);
    box-shadow:
        0 0 14px rgba(255, 255, 255, 0.18),
        inset 0 0 4px rgba(255, 255, 255, 0.4);
}
.door-handle.left {
    right: 22px;
}
.door-handle.right {
    left: 22px;
}

/* Glowing seam between doors */
.cinema-seam {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 240, 220, 0.55) 35%,
        rgba(255, 220, 180, 0.75) 50%,
        rgba(255, 240, 220, 0.55) 65%,
        transparent 100%
    );
    box-shadow:
        0 0 18px rgba(255, 220, 180, 0.45),
        0 0 40px rgba(255, 220, 180, 0.25);
    transform: translateX(-50%);
    z-index: 6;
    pointer-events: none;
}

/* Interior revealed beyond the doors */
.elevator-interior {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(
            ellipse at 50% 45%,
            rgba(40, 38, 35, 1) 0%,
            rgba(18, 17, 16, 1) 35%,
            rgba(5, 5, 5, 1) 70%,
            #000 100%
        );
    overflow: hidden;
}

.interior-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 60%;
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(255, 220, 180, 0.22) 0%,
        rgba(255, 200, 150, 0.08) 35%,
        transparent 70%
    );
    pointer-events: none;
}

.interior-floor {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background:
        linear-gradient(
            180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.4) 40%,
            rgba(20, 18, 16, 0.85) 100%
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 80px,
            rgba(255, 255, 255, 0.02) 80px,
            rgba(255, 255, 255, 0.02) 82px
        );
    pointer-events: none;
}

.interior-logo {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(140px, 22vw, 320px);
    height: auto;
    opacity: 0.85;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.15));
    pointer-events: none;
}

.intro-enter-btn {
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 999px;
    padding: 20px 56px;
    font-size: 11px;
    letter-spacing: 0.45em;
    font-weight: 300;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:
        0 0 80px rgba(255, 255, 255, 0.08),
        0 4px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.intro-enter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.45);
    padding: 20px 76px;
    box-shadow:
        0 0 120px rgba(255, 255, 255, 0.2),
        0 4px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.intro-arrow {
    display: inline-block;
    transition: transform 0.5s ease;
    margin-left: 12px;
}
.intro-enter-btn:hover .intro-arrow {
    transform: translateX(8px);
}

.intro-skip {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 20;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
}
.intro-skip:hover {
    color: rgba(255, 255, 255, 0.9);
}

.intro-fade-out {
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.2s ease;
}

/* === GLASSMORPHISM === */
.glass {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-strong {
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.btn-glass:hover {

/* === Minimalist photo frames === */
.photo-frame {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    aspect-ratio: 4 / 3;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(1.02);
    filter: brightness(0.86) contrast(1.04) saturate(0.9);
}

.photo-frame:hover img {
    transform: scale(1.08);
    filter: brightness(0.95) contrast(1.06) saturate(1);
}

.photo-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at 30% 20%,
            transparent 0%,
            rgba(0, 0, 0, 0.15) 70%,
            rgba(0, 0, 0, 0.4) 100%
        );
    pointer-events: none;
    z-index: 2;
}

.photo-frame.photo-tall {
    aspect-ratio: 3 / 4;
}

.photo-frame.photo-bw img {
    filter: grayscale(0.1) brightness(0.92) contrast(1.05);
}
.photo-frame.photo-bw:hover img {
    filter: grayscale(0) brightness(1) contrast(1.08);
}

.photo-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

.photo-caption {
    margin-top: 18px;
}
.photo-caption-tag {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-weight: 400;
}
.photo-caption-text {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.01em;
    font-style: italic;
}

/* Subtle corner ticks (minimalist frame decoration) */
.photo-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 14px;
    height: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 4;
    pointer-events: none;
    transition: width 0.6s ease, height 0.6s ease;
}
.photo-frame:hover::before {
    width: 22px;
    height: 22px;
}

    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

.btn-glass .arrow {
    transition: transform 0.45s ease;
    display: inline-block;
}
.btn-glass:hover .arrow {
    transform: translateX(6px);
}

/* === Reveal animations base === */
.reveal {
    opacity: 0;
    transform: translateY(40px);
}

/* Grain overlay */
.grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
    z-index: 2;
}

/* Service card */
.service-card {
    position: relative;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at var(--mx, 50%) var(--my, 0%),
        rgba(255, 255, 255, 0.06),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-num {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.4);
}

/* big footer typography */
.mega-zelta {
    font-weight: 200;
    letter-spacing: -0.06em;
    line-height: 0.85;
    font-size: clamp(6rem, 22vw, 22rem);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.15) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glass logo card (WOW footer) */
.footer-logo-card {
    position: relative;
    margin: 0 auto;
    max-width: 920px;
    padding: 56px 32px;
    border-radius: 32px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.06) 0%,
            rgba(255, 255, 255, 0.02) 50%,
            rgba(255, 255, 255, 0.05) 100%
        );
    backdrop-filter: blur(28px) saturate(140%);
    -webkit-backdrop-filter: blur(28px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-logo-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.09) 0%,
            rgba(255, 255, 255, 0.03) 50%,
            rgba(255, 255, 255, 0.07) 100%
        );
    transform: translateY(-2px);
}

.footer-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 200%;
    background: radial-gradient(
        ellipse at center,
        rgba(76, 200, 200, 0.18) 0%,
        rgba(76, 180, 200, 0.06) 30%,
        transparent 60%
    );
    filter: blur(40px);
    pointer-events: none;
    animation: glow-breath 8s ease-in-out infinite;
}

@keyframes glow-breath {
    0%,
    100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.08);
    }
}

.footer-logo-img {
    position: relative;
    z-index: 2;
    width: clamp(220px, 40vw, 460px);
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.1));
    transition: filter 0.6s ease;
}

.footer-logo-card:hover .footer-logo-img {
    filter: drop-shadow(0 0 50px rgba(255, 255, 255, 0.2));
}

.divider-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.18) 50%,
        transparent 100%
    );
}

.eyebrow {
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.check-line {
    position: relative;
    padding-left: 26px;
}
.check-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 14px;
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
}

/* Hero orb glow */
.hero-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vmin;
    height: 70vmin;
    background-image: var(--orb-src);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: drop-shadow(0 0 100px rgba(255, 255, 255, 0.12))
        contrast(1.1) brightness(0.95);
    opacity: 0.55;
    z-index: 1;
    mix-blend-mode: screen;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 1) 25%,
        rgba(0, 0, 0, 0.5) 55%,
        transparent 75%
    );
    mask-image: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 1) 25%,
        rgba(0, 0, 0, 0.5) 55%,
        transparent 75%
    );
}

.bg-noise-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
            ellipse at top,
            rgba(255, 255, 255, 0.04) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at bottom,
            rgba(255, 255, 255, 0.02) 0%,
            transparent 60%
        );
    pointer-events: none;
}

/* Menu drawer */
.menu-drawer {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}
.menu-drawer.open {
    opacity: 1;
    pointer-events: auto;
}
.menu-link {
    display: block;
    font-size: clamp(1.6rem, 4.2vw, 3.2rem);
    font-weight: 200;
    letter-spacing: -0.025em;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 4px 0;
    line-height: 1.15;
    transition:
        color 0.35s ease,
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-link:hover {
    color: #fff;
    transform: translateX(20px);
}

/* Smooth scroll lenis */
html.lenis,
html.lenis body {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}


/* === SERVICES — Horizontal pinned scroll === */
.services-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: transparent;
}

.services-bg-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

.services-inner {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 96px 0 64px;
}

.svc-head {
    padding: 0 24px;
    max-width: 1600px;
    margin: 0 auto 24px;
    width: 100%;
}

@media (min-width: 768px) {
    .svc-head {
        padding: 0 48px;
        margin-bottom: 40px;
    }
}

.svc-head-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.svc-title {
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 300;
    letter-spacing: -0.025em;
    line-height: 1.05;
    color: #fff;
    margin: 0;
    max-width: 800px;
}

.svc-counter {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    font-variant-numeric: tabular-nums;
}
.svc-counter-active {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    letter-spacing: -0.04em;
}
.svc-counter-sep {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0 6px;
}
.svc-counter-total {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
}

.svc-sub {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 400;
}

.svc-progress {
    position: relative;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 16px 24px 28px;
    overflow: hidden;
}
@media (min-width: 768px) {
    .svc-progress {
        margin: 32px 48px 48px;
    }
}

.svc-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.9) 0%,
        var(--zelta-turquoise) 100%
    );
    transform-origin: left center;
    transform: scaleX(0);
    will-change: transform;
}

.svc-track-wrap {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.svc-track {
    display: flex;
    align-items: stretch;
    gap: 24px;
    height: 100%;
    padding: 0 48px 0 48px;
    will-change: transform;
}
@media (min-width: 768px) {
    .svc-track {
        gap: 36px;
        padding: 0 96px;
    }
}

.svc-slide {
    flex: 0 0 clamp(280px, 32vw, 480px);
    height: 100%;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition:
        border-color 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.svc-slide.is-active {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-6px);
}

@media (min-width: 768px) {
    .svc-slide {
        padding: 48px 40px;
    }
}

.svc-slide-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.svc-slide-num {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    letter-spacing: 0.3em;
    font-weight: 400;
}
.svc-slide.is-active .svc-slide-num {
    color: var(--zelta-turquoise);
}
.svc-slide-tag {
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 400;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 999px;
}

.svc-slide-body {
    margin: auto 0;
}
.svc-slide-title {
    color: #fff;
    font-weight: 300;
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0 0 18px;
}
.svc-slide-text {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
}

.svc-slide-foot {
    display: flex;
    align-items: center;
    gap: 14px;
}
.svc-slide-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.25),
        transparent
    );
}
.svc-slide.is-active .svc-slide-line {
    background: linear-gradient(90deg, var(--zelta-turquoise), transparent);
}
.svc-slide-meta {
    color: rgba(255, 255, 255, 0.35);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 400;
}

.svc-slide-cta {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(77, 208, 225, 0.06) 100%
    );
    border-color: rgba(77, 208, 225, 0.25);
}

.svc-slide-cta-btn {
    align-self: flex-start;
}

@media (max-width: 768px) {
    .services-section {
        height: auto;
        min-height: 100vh;
    }
}


/* === Aurora animated background (Philosophy section) === */
.aurora-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    will-change: transform;
}

.aurora-blob-1 {
    width: 50vw;
    height: 50vw;
    top: -10vw;
    left: -10vw;
    background: radial-gradient(
        circle,
        rgba(77, 208, 225, 0.22) 0%,
        rgba(77, 208, 225, 0.06) 40%,
        transparent 70%
    );
    animation: aurora-float-1 22s ease-in-out infinite;
}

.aurora-blob-2 {
    width: 40vw;
    height: 40vw;
    bottom: -5vw;
    right: -8vw;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(77, 208, 225, 0.05) 50%,
        transparent 70%
    );
    animation: aurora-float-2 26s ease-in-out infinite;
}

.aurora-blob-3 {
    width: 35vw;
    height: 35vw;
    top: 25%;
    right: 30%;
    background: radial-gradient(
        circle,
        rgba(180, 230, 235, 0.04) 0%,
        rgba(77, 208, 225, 0.07) 45%,
        transparent 75%
    );
    animation: aurora-float-3 30s ease-in-out infinite;
}

@keyframes aurora-float-1 {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(8vw, 6vw) scale(1.12);
    }
}
@keyframes aurora-float-2 {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-7vw, -5vw) scale(1.15);
    }
}
@keyframes aurora-float-3 {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-5vw, 8vw) scale(0.9);
    }
}

/* === Stats decorative background === */
.stats-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.stats-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 80%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        ellipse at center,
        rgba(77, 208, 225, 0.08) 0%,
        rgba(77, 208, 225, 0.025) 40%,
        transparent 70%
    );
    animation: stats-glow-breathe 8s ease-in-out infinite;
    filter: blur(40px);
}

.stats-grid-lines {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px
        );
    background-size: 80px 80px;
    mask-image: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 1) 30%,
        transparent 70%
    );
    -webkit-mask-image: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 1) 30%,
        transparent 70%
    );
    opacity: 0.6;
}

@keyframes stats-glow-breathe {
    0%,
    100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* === Marquee strip between sections === */
.marquee-strip {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 22px 0;
    background: transparent;
}

.marquee-strip::before,
.marquee-strip::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    z-index: 2;
    pointer-events: none;
}
.marquee-strip::before {
    left: 0;
    background: linear-gradient(90deg, rgba(5, 10, 20, 0.95) 0%, transparent 100%);
}
.marquee-strip::after {
    right: 0;
    background: linear-gradient(270deg, rgba(5, 10, 20, 0.95) 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 64px;
    width: max-content;
    animation: marquee-scroll 52s linear infinite;
    will-change: transform;
}

.marquee-strip.is-reverse .marquee-track {
    animation-direction: reverse;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.4s ease;
}

.marquee-strip:hover .marquee-item {
    color: rgba(255, 255, 255, 0.6);
}

.marquee-dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    box-shadow: none;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* === Mission decorative bg === */
.mission-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.mission-vline {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 255, 255, 0.04) 20%,
        rgba(77, 208, 225, 0.18) 50%,
        rgba(255, 255, 255, 0.04) 80%,
        transparent 100%
    );
}
.mission-vline.v1 {
    left: 18%;
}
.mission-vline.v2 {
    right: 18%;
}

.mission-orbit {
    position: absolute;
    top: 50%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    transform: translateY(-50%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: radial-gradient(
        ellipse at center,
        rgba(77, 208, 225, 0.05) 0%,
        transparent 60%
    );
    animation: mission-orbit-rotate 80s linear infinite;
}

@keyframes mission-orbit-rotate {
    from {
        transform: translateY(-50%) rotate(0deg);
    }
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}


/* === Hero aurora glow === */
.hero-aurora {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.hero-glow-1 {
    position: absolute;
    top: 18%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(
        circle,
        rgba(77, 208, 225, 0.12) 0%,
        rgba(77, 208, 225, 0.03) 40%,
        transparent 70%
    );
    filter: blur(70px);
    animation: hero-drift-1 28s ease-in-out infinite;
}
.hero-glow-2 {
    position: absolute;
    bottom: 10%;
    right: -8%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(77, 208, 225, 0.06) 40%,
        transparent 75%
    );
    filter: blur(85px);
    animation: hero-drift-2 32s ease-in-out infinite;
}
.hero-glow-blue {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 60vw;
    height: 60vw;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        rgba(77, 155, 255, 0.10) 0%,
        rgba(77, 120, 220, 0.04) 40%,
        transparent 75%
    );
    filter: blur(95px);
    animation: hero-drift-blue 34s ease-in-out infinite;
}
@keyframes hero-drift-1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(8vw, 5vw); }
}
@keyframes hero-drift-2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-7vw, -6vw); }
}
@keyframes hero-drift-blue {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-46%, -54%) scale(1.12); opacity: 1; }
}

/* === Advisors aurora === */
.advisors-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.advisors-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.6;
    will-change: transform;
}
.advisors-blob.blob-a {
    width: 45vw;
    height: 45vw;
    top: 5%;
    right: -10vw;
    background: radial-gradient(
        circle,
        rgba(77, 208, 225, 0.14) 0%,
        rgba(77, 155, 255, 0.06) 45%,
        transparent 75%
    );
    animation: adv-drift-a 32s ease-in-out infinite;
}
.advisors-blob.blob-b {
    width: 40vw;
    height: 40vw;
    bottom: 0%;
    left: -8vw;
    background: radial-gradient(
        circle,
        rgba(77, 155, 255, 0.12) 0%,
        rgba(77, 208, 225, 0.08) 50%,
        transparent 75%
    );
    animation: adv-drift-b 36s ease-in-out infinite;
}
.advisors-blob.blob-c {
    width: 38vw;
    height: 38vw;
    top: 40%;
    left: 30%;
    background: radial-gradient(
        circle,
        rgba(99, 130, 230, 0.10) 0%,
        rgba(77, 155, 255, 0.05) 50%,
        transparent 75%
    );
    animation: adv-drift-c 40s ease-in-out infinite;
}
@keyframes adv-drift-a {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-6vw, 5vw) scale(1.1); }
}
@keyframes adv-drift-b {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(7vw, -4vw) scale(1.08); }
}
@keyframes adv-drift-c {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.55; }
    50% { transform: translate(-5vw, -3vw) scale(1.12); opacity: 0.85; }
}

/* === Contact aurora === */
.contact-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.contact-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80vw;
    height: 80vw;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        rgba(77, 208, 225, 0.06) 0%,
        rgba(77, 208, 225, 0.02) 40%,
        transparent 70%
    );
    filter: blur(60px);
    animation: contact-breathe 14s ease-in-out infinite;
}
@keyframes contact-breathe {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}


/* === SERVICES V2 — Tabs + Vertical Glass Grid === */
.services-section-v2 {
    position: relative;
    padding: 120px 24px 140px;
    overflow: hidden;
    background: transparent;
    /* Default accent — overridden by data-active-profile */
    --svc-accent: #4d9bff;
    --svc-accent-soft: rgba(77, 155, 255, 0.18);
    --svc-accent-glow: rgba(77, 155, 255, 0.35);
}

.services-section-v2[data-active-profile="empresa"] {
    --svc-accent: #2563eb;
    --svc-accent-soft: rgba(37, 99, 235, 0.20);
    --svc-accent-glow: rgba(37, 99, 235, 0.42);
}
.services-section-v2[data-active-profile="autonomo"] {
    --svc-accent: #4d9bff;
    --svc-accent-soft: rgba(77, 155, 255, 0.20);
    --svc-accent-glow: rgba(77, 155, 255, 0.42);
}
.services-section-v2[data-active-profile="persona"] {
    --svc-accent: #6ed8f5;
    --svc-accent-soft: rgba(110, 216, 245, 0.20);
    --svc-accent-glow: rgba(110, 216, 245, 0.42);
}
.services-section-v2[data-active-profile="integracion"] {
    --svc-accent: #a78bfa;
    --svc-accent-soft: rgba(167, 139, 250, 0.20);
    --svc-accent-glow: rgba(167, 139, 250, 0.45);
}

@media (min-width: 768px) {
    .services-section-v2 {
        padding: 160px 48px 180px;
    }
}

.svc-aurora {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.svc-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.55;
    will-change: transform;
}
.svc-blob-a {
    width: 50vw;
    height: 50vw;
    top: -8vw;
    left: -10vw;
    background: radial-gradient(
        circle,
        var(--svc-accent-soft) 0%,
        rgba(77, 155, 255, 0.04) 45%,
        transparent 75%
    );
    animation: svc-drift-a 34s ease-in-out infinite;
    transition: background 0.9s ease;
}
.svc-blob-b {
    width: 42vw;
    height: 42vw;
    bottom: -6vw;
    right: -10vw;
    background: radial-gradient(
        circle,
        var(--svc-accent-soft) 0%,
        rgba(77, 155, 255, 0.07) 50%,
        transparent 75%
    );
    animation: svc-drift-b 38s ease-in-out infinite;
    transition: background 0.9s ease;
}
@keyframes svc-drift-a {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(7vw, 5vw) scale(1.12); }
}
@keyframes svc-drift-b {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-6vw, -4vw) scale(1.08); }
}

.svc-inner-v2 {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.svc-sub-v2 {
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.75;
    font-weight: 400;
    max-width: 640px;
}

.services-section-v2 .svc-head {
    padding: 0;
    margin: 0;
    max-width: none;
}
.services-section-v2 .svc-counter-active {
    font-size: clamp(2rem, 4vw, 3rem);
}
.services-section-v2 .svc-counter-total {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
}

/* TABS */
.svc-tabs {
    position: relative;
    margin-top: 56px;
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.svc-tab {
    flex: 1;
    position: relative;
    z-index: 2;
    padding: 22px 18px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-family: inherit;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-tab:hover {
    color: rgba(255, 255, 255, 0.85);
}

.svc-tab.is-active {
    color: #fff;
}

.svc-tab-count {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.18em;
}
.svc-tab.is-active .svc-tab-count {
    color: var(--svc-accent);
}

.svc-tab-indicator {
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--svc-accent) 50%,
        transparent 100%
    );
    transition:
        transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.7s ease;
    pointer-events: none;
    box-shadow: 0 0 14px var(--svc-accent-glow);
}

@media (max-width: 768px) {
    .svc-tabs {
        flex-direction: column;
    }
    .svc-tab {
        padding: 16px 12px;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .svc-tab:last-child {
        border-bottom: none;
    }
    .svc-tab-indicator {
        display: none;
    }
}

/* GRID */
.svc-grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

@media (min-width: 720px) {
    .svc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

@media (min-width: 1100px) {
    .svc-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 26px;
    }
}

.svc-card {
    position: relative;
    padding: 32px 28px 28px;
    border-radius: 22px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.045) 0%,
        rgba(255, 255, 255, 0.015) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 280px;
    overflow: hidden;
    transition:
        border-color 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 0%,
        var(--svc-accent-soft) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.svc-card:hover {
    border-color: var(--svc-accent-glow);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.07) 0%,
        var(--svc-accent-soft) 100%
    );
    transform: translateY(-4px);
}

.svc-card:hover::before {
    opacity: 1;
}

.svc-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.svc-card-num {
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    letter-spacing: 0.3em;
    font-weight: 400;
}
.svc-card:hover .svc-card-num {
    color: var(--svc-accent);
}

.svc-card-tag {
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 400;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 4px 10px;
    border-radius: 999px;
}

.svc-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.svc-card-title {
    color: #fff;
    font-weight: 300;
    font-size: clamp(1.3rem, 1.8vw, 1.6rem);
    letter-spacing: -0.02em;
    line-height: 1.18;
    margin: 0;
}
.svc-card-text {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13.5px;
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
}

.svc-card-foot {
    display: flex;
    align-items: center;
    gap: 14px;
}
.svc-card-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.25), transparent);
    transition: background 0.6s ease;
}
.svc-card:hover .svc-card-line {
    background: linear-gradient(90deg, var(--svc-accent), transparent);
}
.svc-card-meta {
    color: rgba(255, 255, 255, 0.35);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 400;
}

/* Bottom CTA */
.svc-bottom-cta {
    margin-top: 80px;
    padding: 56px 40px;
    border-radius: 28px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 0%,
        var(--svc-accent-soft) 100%
    );
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid var(--svc-accent-glow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: border-color 0.7s ease, background 0.7s ease;
}
.svc-bottom-text {
    flex: 1;
    min-width: 280px;
}
.svc-bottom-title {
    margin: 0 0 12px;
    color: #fff;
    font-weight: 300;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    letter-spacing: -0.02em;
    line-height: 1.12;
}
.svc-bottom-sub {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    max-width: 560px;
}

@media (max-width: 768px) {
    .svc-bottom-cta {
        padding: 36px 28px;
    }
}

/* === GrowTogether aurora === */
.gt-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.gt-glow {
    position: absolute;
    top: 50%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    transform: translateY(-50%);
    background: radial-gradient(
        circle,
        rgba(77, 208, 225, 0.1) 0%,
        rgba(77, 208, 225, 0.03) 40%,
        transparent 70%
    );
    filter: blur(85px);
    animation: gt-breathe 16s ease-in-out infinite;
}
@keyframes gt-breathe {
    0%, 100% { opacity: 0.7; transform: translateY(-50%) scale(1); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.08); }
}

/* === Loading Screen blue glow aurora === */
.ls-aurora {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}
.ls-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.55;
    will-change: transform;
}
.ls-glow-1 {
    width: 50vw;
    height: 50vw;
    top: -10vw;
    left: -10vw;
    background: radial-gradient(
        circle,
        rgba(77, 208, 225, 0.16) 0%,
        rgba(77, 208, 225, 0.04) 45%,
        transparent 75%
    );
    animation: ls-drift-1 30s ease-in-out infinite;
}
.ls-glow-2 {
    width: 42vw;
    height: 42vw;
    bottom: -8vw;
    right: -8vw;
    background: radial-gradient(
        circle,
        rgba(99, 150, 240, 0.12) 0%,
        rgba(77, 155, 255, 0.05) 50%,
        transparent 75%
    );
    animation: ls-drift-2 36s ease-in-out infinite;
}
.ls-glow-blue {
    width: 55vw;
    height: 55vw;
    top: 50%;
    left: 35%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        rgba(77, 155, 255, 0.10) 0%,
        rgba(50, 90, 200, 0.04) 45%,
        transparent 75%
    );
    animation: ls-drift-blue 32s ease-in-out infinite;
}
@keyframes ls-drift-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(6vw, 5vw) scale(1.1); }
}
@keyframes ls-drift-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-5vw, -4vw) scale(1.08); }
}
@keyframes ls-drift-blue {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.65; }
    50% { transform: translate(-46%, -54%) scale(1.15); opacity: 1; }
}

/* === Mission additional blue glow === */
.mission-blue-glow {
    position: absolute;
    top: 50%;
    left: 12%;
    width: 50vw;
    height: 50vw;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        rgba(77, 155, 255, 0.12) 0%,
        rgba(99, 130, 230, 0.04) 45%,
        transparent 75%
    );
    filter: blur(95px);
    animation: mission-blue-breathe 18s ease-in-out infinite;
    pointer-events: none;
}
@keyframes mission-blue-breathe {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.55; }
    50% { transform: translate(-44%, -54%) scale(1.12); opacity: 0.85; }
}

/* === TeamValues — Semicircle scroll picker (v2) === */
.tv-section {
    position: relative;
    /* Sufficient scroll runway for 5 stages */
    background: transparent;
}

.tv-sticky {
    position: relative;
    height: 100vh;
    min-height: 720px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    padding: 0 24px;
}
@media (min-width: 768px) {
    .tv-sticky {
        padding: 0 48px;
    }
}

.tv-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.tv-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.55;
    will-change: transform;
}
.tv-glow-1 {
    width: 48vw;
    height: 48vw;
    top: -8vw;
    left: -10vw;
    background: radial-gradient(
        circle,
        rgba(77, 208, 225, 0.14) 0%,
        rgba(77, 208, 225, 0.04) 45%,
        transparent 75%
    );
    animation: tv-drift-1 30s ease-in-out infinite;
}
.tv-glow-2 {
    width: 42vw;
    height: 42vw;
    bottom: -8vw;
    right: -8vw;
    background: radial-gradient(
        circle,
        rgba(77, 155, 255, 0.13) 0%,
        rgba(77, 208, 225, 0.05) 50%,
        transparent 75%
    );
    animation: tv-drift-2 36s ease-in-out infinite;
}
.tv-glow-blue {
    width: 55vw;
    height: 55vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        rgba(77, 155, 255, 0.10) 0%,
        rgba(50, 90, 200, 0.04) 45%,
        transparent 75%
    );
    animation: tv-drift-blue 34s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes tv-drift-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-6vw, 5vw) scale(1.12); }
}
@keyframes tv-drift-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(7vw, -4vw) scale(1.08); }
}
@keyframes tv-drift-blue {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.55; }
    50% { transform: translate(-46%, -54%) scale(1.15); opacity: 0.95; }
}

.tv-inner {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
@media (max-width: 900px) {
    .tv-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* LEFT — Semicircle picker */
.tv-picker {
    position: relative;
    width: 100%;
    height: 78vh;
    min-height: 540px;
    max-height: 720px;
}

.tv-arc-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 105%;
    height: 105%;
    pointer-events: none;
    filter: drop-shadow(0 0 24px rgba(77, 155, 255, 0.18));
}

.tv-rail {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tv-rail-li {
    position: absolute;
    transform-origin: left center;
    transition:
        opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.tv-rail-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: transparent;
    border: none;
    padding: 8px 14px 8px 8px;
    border-radius: 999px;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition:
        background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tv-rail-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.tv-rail-item.is-active {
    background: linear-gradient(
        90deg,
        rgba(125, 211, 252, 0.16) 0%,
        rgba(77, 155, 255, 0.06) 60%,
        transparent 100%
    );
    box-shadow:
        0 0 32px rgba(77, 155, 255, 0.18),
        inset 0 0 0 1px rgba(125, 211, 252, 0.35);
}

.tv-rail-item:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(125, 211, 252, 0.55);
}

.tv-rail-num {
    font-size: 11px;
    letter-spacing: 0.32em;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    font-variant-numeric: tabular-nums;
}

.tv-rail-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.04);
    transition: all 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.tv-rail-title {
    color: rgba(255, 255, 255, 0.65);
    font-size: 17px;
    font-weight: 400;
    letter-spacing: -0.005em;
    transition: color 0.55s ease, font-weight 0.55s ease;
}

.tv-rail-item.is-active .tv-rail-num {
    color: #7dd3fc;
    font-weight: 600;
    text-shadow: 0 0 14px rgba(125, 211, 252, 0.6);
}
.tv-rail-item.is-active .tv-rail-dot {
    width: 12px;
    height: 12px;
    background: #7dd3fc;
    box-shadow:
        0 0 0 6px rgba(125, 211, 252, 0.22),
        0 0 24px rgba(125, 211, 252, 0.75);
}
.tv-rail-item.is-active .tv-rail-title {
    color: #fff;
    font-weight: 500;
    text-shadow: 0 0 28px rgba(125, 211, 252, 0.4);
}

/* RIGHT — Stage */
.tv-stage {
    position: relative;
    padding: 32px 0;
    max-width: 620px;
}

.tv-stage-counter {
    margin: 22px 0 28px;
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-variant-numeric: tabular-nums;
}
.tv-stage-counter-active {
    color: #fff;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 300;
    letter-spacing: -0.04em;
}
.tv-stage-counter-sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.4rem;
}
.tv-stage-counter-total {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.tv-stage-title {
    color: #fff;
    margin: 0 0 22px;
    font-size: clamp(2.6rem, 5.4vw, 5rem);
    font-weight: 300;
    letter-spacing: -0.035em;
    line-height: 1.02;
    background: linear-gradient(
        180deg,
        #fff 0%,
        rgba(125, 211, 252, 0.95) 60%,
        rgba(125, 211, 252, 0.78) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 80px rgba(125, 211, 252, 0.18);
}

.tv-stage-body {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.85;
    font-weight: 400;
    margin: 0 0 36px;
    max-width: 540px;
}

.tv-stage-progress {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.tv-progress-pip {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    transition: background 0.55s ease;
}
.tv-progress-pip.is-done {
    background: rgba(255, 255, 255, 0.45);
}
.tv-progress-pip.is-active {
    background: linear-gradient(
        90deg,
        rgba(77, 208, 225, 0.85) 0%,
        rgba(77, 155, 255, 0.85) 100%
    );
    box-shadow: 0 0 10px rgba(77, 208, 225, 0.5);
}

.tv-stage-hint {
    color: rgba(255, 255, 255, 0.32);
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0;
}

@media (max-width: 900px) {
    .tv-picker {
        height: 38vh;
        min-height: 320px;
    }
    .tv-stage {
        padding-top: 16px;
    }
    .tv-stage-title {
        font-size: clamp(2.2rem, 9vw, 3.6rem);
    }
}


/* === Edge blue glows — emanate from screen sides === */
.edge-glow {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 32vw;
    pointer-events: none;
    z-index: 0;
    filter: blur(6px);
    will-change: opacity, transform;
}
.edge-glow-left {
    left: 0;
    background: linear-gradient(
        90deg,
        rgba(77, 155, 255, 0.22) 0%,
        rgba(77, 155, 255, 0.10) 25%,
        rgba(77, 208, 225, 0.04) 55%,
        transparent 100%
    );
    animation: edge-pulse-left 16s ease-in-out infinite;
}
.edge-glow-right {
    right: 0;
    background: linear-gradient(
        270deg,
        rgba(77, 155, 255, 0.22) 0%,
        rgba(77, 155, 255, 0.10) 25%,
        rgba(77, 208, 225, 0.04) 55%,
        transparent 100%
    );
    animation: edge-pulse-right 18s ease-in-out infinite;
}
@keyframes edge-pulse-left {
    0%, 100% { opacity: 0.55; transform: translateX(-2vw); }
    50% { opacity: 1; transform: translateX(0); }
}
@keyframes edge-pulse-right {
    0%, 100% { opacity: 0.55; transform: translateX(2vw); }
    50% { opacity: 1; transform: translateX(0); }
}
.edge-glow-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 26vh;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(
        180deg,
        rgba(77, 155, 255, 0.14) 0%,
        rgba(77, 155, 255, 0.04) 50%,
        transparent 100%
    );
    filter: blur(8px);
    animation: edge-pulse-top 20s ease-in-out infinite;
}
@keyframes edge-pulse-top {
    0%, 100% { opacity: 0.55; }
    50% { opacity: 1; }
}

/* Stronger glow in Stats, Philosophy, GrowTogether, Contact */
.stats-blue-glow,
.philosophy-blue-glow,
.gt-blue-glow,
.contact-blue-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    will-change: transform, opacity;
}
.stats-blue-glow {
    width: 50vw;
    height: 50vw;
    top: -10vw;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(
        circle,
        rgba(77, 155, 255, 0.16) 0%,
        rgba(77, 155, 255, 0.04) 45%,
        transparent 75%
    );
    animation: blue-breathe 18s ease-in-out infinite;
}
.philosophy-blue-glow {
    width: 55vw;
    height: 55vw;
    bottom: -10vw;
    right: -10vw;
    background: radial-gradient(
        circle,
        rgba(77, 155, 255, 0.16) 0%,
        rgba(77, 155, 255, 0.05) 45%,
        transparent 75%
    );
    animation: blue-breathe 22s ease-in-out infinite;
}
.gt-blue-glow {
    width: 48vw;
    height: 48vw;
    top: 50%;
    left: -10vw;
    transform: translateY(-50%);
    background: radial-gradient(
        circle,
        rgba(77, 155, 255, 0.14) 0%,
        rgba(77, 155, 255, 0.04) 50%,
        transparent 75%
    );
    animation: blue-breathe 24s ease-in-out infinite;
}
.contact-blue-glow {
    width: 60vw;
    height: 60vw;
    bottom: -15vw;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(
        circle,
        rgba(77, 155, 255, 0.18) 0%,
        rgba(77, 155, 255, 0.05) 45%,
        transparent 75%
    );
    animation: blue-breathe 20s ease-in-out infinite;
}
@keyframes blue-breathe {
    0%, 100% { opacity: 0.5; transform: scale(1) translate(0, 0); }
    50% { opacity: 0.9; transform: scale(1.1) translate(2vw, -1vw); }
}

/* Stronger TeamValues blue glow */
.tv-edge-glow-left,
.tv-edge-glow-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 26vw;
    pointer-events: none;
    z-index: 0;
    filter: blur(8px);
}
.tv-edge-glow-left {
    left: 0;
    background: linear-gradient(
        90deg,
        rgba(77, 155, 255, 0.18) 0%,
        rgba(77, 155, 255, 0.05) 50%,
        transparent 100%
    );
    animation: edge-pulse-left 18s ease-in-out infinite;
}
.tv-edge-glow-right {
    right: 0;
    background: linear-gradient(
        270deg,
        rgba(77, 155, 255, 0.18) 0%,
        rgba(77, 155, 255, 0.05) 50%,
        transparent 100%
    );
    animation: edge-pulse-right 20s ease-in-out infinite;
}

/* === Advisors benefits roulette === */
.adv-roulette {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    perspective: 1400px;
    perspective-origin: 50% 50%;
}

@media (max-width: 768px) {
    .adv-roulette {
        height: 420px;
    }
}

.adv-roulette-stage {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
}

.adv-roulette-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(280px, 38vw, 460px);
    min-height: 360px;
    padding: 40px 32px;
    border-radius: 24px;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(77, 155, 255, 0.06) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform-style: preserve-3d;
    transform-origin: center center;
    transition:
        transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.85s ease,
        background 0.85s ease,
        border-color 0.85s ease;
    will-change: transform, opacity;
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.adv-roulette-card-inner {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.adv-roulette-num {
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
    letter-spacing: 0.32em;
    font-weight: 400;
    font-variant-numeric: tabular-nums;
}

.adv-roulette-title {
    color: #fff;
    font-size: clamp(1.45rem, 2.2vw, 1.9rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.18;
    margin: 0;
}

.adv-roulette-body {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14.5px;
    line-height: 1.75;
    font-weight: 400;
    margin: 0;
}

.adv-roulette-card.active .adv-roulette-num {
    color: var(--zelta-blue);
}

.adv-roulette-card.dim {
    opacity: 0.35;
    filter: blur(0.4px);
    pointer-events: none;
}

.adv-roulette-card.hidden {
    opacity: 0;
    pointer-events: none;
}

.adv-roulette-card.active {
    background: linear-gradient(
        145deg,
        rgba(77, 155, 255, 0.10) 0%,
        rgba(77, 208, 225, 0.05) 100%
    );
    border-color: rgba(77, 155, 255, 0.35);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(77, 155, 255, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Controls */
.adv-roulette-controls {
    margin-top: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.adv-roulette-btn {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.adv-roulette-btn:hover {
    background: rgba(77, 155, 255, 0.1);
    border-color: var(--zelta-blue);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(77, 155, 255, 0.25);
}
.adv-roulette-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.adv-roulette-pips {
    display: flex;
    gap: 8px;
    align-items: center;
}
.adv-roulette-pip {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.4s ease;
    border: none;
    padding: 0;
}
.adv-roulette-pip:hover {
    background: rgba(255, 255, 255, 0.3);
}
.adv-roulette-pip.is-active {
    width: 28px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        var(--zelta-blue),
        var(--zelta-turquoise)
    );
    box-shadow: 0 0 12px rgba(77, 155, 255, 0.55);
}

.adv-roulette-counter {
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 400;
    font-variant-numeric: tabular-nums;
    margin-left: 16px;
}

/* === More blue text accents === */
.text-accent-blue {
    color: var(--zelta-blue) !important;
}

/* Hero subtle blue line at bottom */
.hero-base-line {
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(77, 155, 255, 0.4) 50%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}


/* === Services profile blocks — strong visual differentiation === */
.svc-tab {
    transition:
        color 0.55s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-tab-step {
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.32em;
    font-variant-numeric: tabular-nums;
    margin-right: 4px;
}
.svc-tab.is-active .svc-tab-step {
    color: var(--svc-accent);
}
.svc-tab.is-active {
    background: linear-gradient(
        180deg,
        var(--svc-accent-soft) 0%,
        transparent 100%
    );
}

/* Profile banner */
.svc-profile-banner {
    margin-top: 48px;
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 32px 36px;
    border-radius: 22px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.035) 0%,
        var(--svc-accent-soft) 100%
    );
    border: 1px solid var(--svc-accent-glow);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.35),
        0 0 50px var(--svc-accent-soft),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    animation: svc-banner-in 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
    transition: background 0.7s ease, border-color 0.7s ease;
}

.svc-profile-banner::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        var(--svc-accent) 50%,
        transparent 100%
    );
    box-shadow: 0 0 18px var(--svc-accent-glow);
}

@keyframes svc-banner-in {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.svc-profile-step {
    display: flex;
    align-items: baseline;
    gap: 8px;
    line-height: 1;
}

.svc-profile-step-num {
    font-size: clamp(2.6rem, 4.2vw, 3.6rem);
    font-weight: 300;
    letter-spacing: -0.04em;
    color: var(--svc-accent);
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 24px var(--svc-accent-glow);
}

.svc-profile-step-of {
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 400;
}

.svc-profile-divider {
    position: relative;
    width: 36px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-profile-divider-line {
    width: 1px;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 255, 255, 0.18) 50%,
        transparent 100%
    );
}

.svc-profile-divider-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--svc-accent);
    box-shadow: 0 0 14px var(--svc-accent-glow);
}

.svc-profile-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.svc-profile-kicker {
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0;
}

.svc-profile-name {
    color: #fff;
    font-size: clamp(1.5rem, 2.4vw, 2.05rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
}

.svc-profile-sub {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13.5px;
    line-height: 1.65;
    font-weight: 400;
    margin: 2px 0 0;
    max-width: 620px;
}

.svc-profile-meta {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 24px;
    margin-left: 4px;
}

.svc-profile-count {
    font-size: clamp(2.2rem, 3.6vw, 3rem);
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.svc-profile-count-label {
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

@media (max-width: 900px) {
    .svc-profile-banner {
        grid-template-columns: auto 1fr;
        gap: 18px;
        padding: 24px 22px;
    }
    .svc-profile-divider {
        display: none;
    }
    .svc-profile-meta {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: baseline;
        gap: 8px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 12px 0 0;
        margin-left: 0;
        text-align: left;
        justify-content: flex-start;
    }
    .svc-profile-count {
        font-size: 2rem;
    }
}

/* Card per-profile accent override on number badge */
.svc-card .svc-card-num {
    transition: color 0.4s ease;
}
.svc-card .svc-card-tag {
    transition: border-color 0.4s ease, color 0.4s ease;
}
.svc-card:hover .svc-card-tag {
    border-color: var(--svc-accent-glow);
    color: rgba(255, 255, 255, 0.85);
}

/* Stronger accent on grid spacing between profiles via top fade-in animation */
.svc-grid {
    animation: svc-grid-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes svc-grid-in {
    0% { opacity: 0; transform: translateY(12px); }
    100% { opacity: 1; transform: translateY(0); }
}


/* === AESTHETIC FUTURISTIC BACKGROUNDS ===
 * Multi-layered celeste/blue/cyan gradients with conic accents,
 * scanlines, soft vignette and slow drifting motion.
 * Used in Philosophy, Advisors and GrowTogether sections.
 */
.aesthetic-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.aesthetic-bg .ab-base {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 80% 60% at 20% 0%,
            rgba(56, 189, 248, 0.20) 0%,
            rgba(56, 189, 248, 0.06) 35%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 70% 60% at 90% 30%,
            rgba(77, 155, 255, 0.18) 0%,
            rgba(77, 155, 255, 0.05) 40%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 80% 60% at 30% 100%,
            rgba(125, 211, 252, 0.16) 0%,
            rgba(56, 189, 248, 0.05) 40%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 60% 50% at 80% 90%,
            rgba(96, 165, 250, 0.14) 0%,
            transparent 60%
        );
}

.aesthetic-bg .ab-conic {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140vmax;
    height: 140vmax;
    transform: translate(-50%, -50%);
    background: conic-gradient(
        from 110deg at 50% 50%,
        rgba(56, 189, 248, 0.08) 0deg,
        rgba(77, 155, 255, 0.04) 60deg,
        transparent 120deg,
        rgba(125, 211, 252, 0.07) 200deg,
        rgba(56, 189, 248, 0.05) 280deg,
        rgba(77, 155, 255, 0.09) 360deg
    );
    filter: blur(70px);
    animation: ab-conic-spin 90s linear infinite;
    opacity: 0.85;
}

@keyframes ab-conic-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.aesthetic-bg .ab-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    will-change: transform;
}
.aesthetic-bg .ab-blob-1 {
    width: 45vw;
    height: 45vw;
    top: -8vw;
    left: -8vw;
    background: radial-gradient(
        circle,
        rgba(56, 189, 248, 0.28) 0%,
        rgba(56, 189, 248, 0.08) 40%,
        transparent 70%
    );
    animation: ab-drift-1 30s ease-in-out infinite;
}
.aesthetic-bg .ab-blob-2 {
    width: 38vw;
    height: 38vw;
    bottom: -8vw;
    right: -6vw;
    background: radial-gradient(
        circle,
        rgba(125, 211, 252, 0.22) 0%,
        rgba(96, 165, 250, 0.06) 45%,
        transparent 70%
    );
    animation: ab-drift-2 36s ease-in-out infinite;
}
.aesthetic-bg .ab-blob-3 {
    width: 32vw;
    height: 32vw;
    top: 30%;
    left: 35%;
    background: radial-gradient(
        circle,
        rgba(77, 155, 255, 0.18) 0%,
        rgba(56, 189, 248, 0.04) 50%,
        transparent 70%
    );
    animation: ab-drift-3 40s ease-in-out infinite;
}

@keyframes ab-drift-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(6vw, 5vw) scale(1.15); }
}
@keyframes ab-drift-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-7vw, -4vw) scale(1.1); }
}
@keyframes ab-drift-3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(-5vw, 6vw) scale(0.92); opacity: 0.9; }
}

/* Subtle scanline / mesh grid */
.aesthetic-bg .ab-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(125, 211, 252, 0.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(125, 211, 252, 0.05) 1px, transparent 1px);
    background-size: 90px 90px;
    mask-image: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 1) 25%,
        rgba(0, 0, 0, 0.3) 65%,
        transparent 100%
    );
    -webkit-mask-image: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 1) 25%,
        rgba(0, 0, 0, 0.3) 65%,
        transparent 100%
    );
    opacity: 0.5;
    animation: ab-grid-pan 60s linear infinite;
}

@keyframes ab-grid-pan {
    from { background-position: 0 0; }
    to { background-position: 90px 90px; }
}

/* Thin horizontal scanlines for that futuristic CRT feel */
.aesthetic-bg .ab-scan {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        0deg,
        transparent 0,
        transparent 3px,
        rgba(125, 211, 252, 0.022) 3px,
        rgba(125, 211, 252, 0.022) 4px
    );
    pointer-events: none;
    opacity: 0.6;
}

/* Two travelling neon lines */
.aesthetic-bg .ab-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(125, 211, 252, 0.5) 30%,
        rgba(56, 189, 248, 0.9) 50%,
        rgba(125, 211, 252, 0.5) 70%,
        transparent 100%
    );
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.6);
    filter: blur(0.5px);
    opacity: 0.8;
    will-change: transform;
}
.aesthetic-bg .ab-line-1 {
    top: 22%;
    left: -10%;
    width: 60%;
    animation: ab-line-1 22s ease-in-out infinite;
}
.aesthetic-bg .ab-line-2 {
    bottom: 30%;
    right: -15%;
    width: 65%;
    animation: ab-line-2 28s ease-in-out infinite;
}

@keyframes ab-line-1 {
    0%, 100% { transform: translateX(0) translateY(0); opacity: 0; }
    20%, 80% { opacity: 0.7; }
    50% { transform: translateX(60vw) translateY(8vh); opacity: 0.9; }
}
@keyframes ab-line-2 {
    0%, 100% { transform: translateX(0) translateY(0); opacity: 0; }
    20%, 80% { opacity: 0.6; }
    50% { transform: translateX(-65vw) translateY(-6vh); opacity: 0.85; }
}

/* Top + bottom edge fade for content readability */
.aesthetic-bg .ab-vignette {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 10, 20, 0.45) 0%, transparent 18%, transparent 82%, rgba(5, 10, 20, 0.55) 100%);
    pointer-events: none;
}

/* Soft white noise overlay */
.aesthetic-bg .ab-noise {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

/* Per-section accent tilts */
.aesthetic-bg.ab-philosophy .ab-blob-1 {
    background: radial-gradient(
        circle,
        rgba(56, 189, 248, 0.32) 0%,
        rgba(77, 155, 255, 0.08) 45%,
        transparent 70%
    );
}
.aesthetic-bg.ab-advisors .ab-blob-2 {
    background: radial-gradient(
        circle,
        rgba(77, 155, 255, 0.28) 0%,
        rgba(125, 211, 252, 0.07) 45%,
        transparent 70%
    );
}
.aesthetic-bg.ab-grow .ab-blob-3 {
    background: radial-gradient(
        circle,
        rgba(125, 211, 252, 0.26) 0%,
        rgba(56, 189, 248, 0.06) 50%,
        transparent 70%
    );
}

/* Ensure parent section content stays above */
section[data-testid="philosophy-section"] > :not([aria-hidden="true"]),
section[data-testid="grow-section"] > :not([aria-hidden="true"]),
section[data-testid="advisors-section"] > :not([aria-hidden="true"]) {
    position: relative;
    z-index: 2;
}


/* === Integración (Asesor/Despacho) — special block === */
.svc-integracion-wrap {
    margin-top: 56px;
    animation: svc-grid-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.svc-integracion-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 48px;
    align-items: center;
    padding: 64px 56px;
    border-radius: 28px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.04) 0%,
        var(--svc-accent-soft) 100%
    );
    border: 1px solid var(--svc-accent-glow);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.4),
        0 0 80px var(--svc-accent-soft),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

@media (max-width: 900px) {
    .svc-integracion-panel {
        grid-template-columns: 1fr;
        padding: 40px 28px;
    }
}

.svc-integracion-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.svc-integracion-kicker {
    color: var(--svc-accent);
    font-size: 12px;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 28px;
    text-shadow: 0 0 18px var(--svc-accent-glow);
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid var(--svc-accent-glow);
    border-radius: 999px;
    background: var(--svc-accent-soft);
}

.svc-integracion-title {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 200;
    letter-spacing: -0.025em;
    line-height: 1.08;
    margin: 0 0 28px;
}

.svc-integracion-title .italic {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.85) 0%,
        var(--svc-accent) 60%,
        rgba(255, 255, 255, 0.85) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.svc-integracion-body {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16.5px;
    line-height: 1.85;
    font-weight: 400;
    margin: 0 0 40px;
    max-width: 640px;
    padding-left: 18px;
    border-left: 2px solid var(--svc-accent-glow);
}

.svc-integracion-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 36px;
    border-radius: 999px;
    border: 1px solid var(--svc-accent-glow);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.06) 0%,
        var(--svc-accent-soft) 100%
    );
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:
        0 0 40px var(--svc-accent-soft),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.svc-integracion-btn:hover {
    transform: translateY(-2px);
    border-color: var(--svc-accent);
    box-shadow:
        0 0 70px var(--svc-accent-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.svc-integracion-btn .arrow {
    transition: transform 0.45s ease;
}
.svc-integracion-btn:hover .arrow {
    transform: translateX(6px);
}

/* Decorative ornament */
.svc-integracion-ornament {
    position: relative;
    width: 220px;
    height: 220px;
    flex-shrink: 0;
    justify-self: center;
}
.svc-integracion-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid var(--svc-accent-glow);
    box-shadow:
        0 0 60px var(--svc-accent-soft),
        inset 0 0 60px var(--svc-accent-soft);
    animation: svc-int-ring-spin 28s linear infinite;
}
.svc-integracion-ring::before,
.svc-integracion-ring::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.svc-integracion-ring::before {
    inset: 18px;
    border-color: var(--svc-accent-glow);
    opacity: 0.7;
}
.svc-integracion-ring::after {
    inset: 38px;
    background: radial-gradient(
        circle,
        var(--svc-accent-soft) 0%,
        transparent 65%
    );
    border: none;
}
.svc-integracion-spark {
    position: absolute;
    top: 8%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--svc-accent);
    box-shadow:
        0 0 16px var(--svc-accent),
        0 0 32px var(--svc-accent-glow);
    transform-origin: 0 105px;
    animation: svc-int-spark 14s linear infinite;
}

@keyframes svc-int-ring-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes svc-int-spark {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

@media (max-width: 900px) {
    .svc-integracion-ornament {
        order: -1;
        width: 160px;
        height: 160px;
    }
    .svc-integracion-spark { transform-origin: 0 75px; }
}

/* === TeamValues — extra blue gradient bg === */
.tv-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 60% at 0% 30%, rgba(77, 155, 255, 0.18) 0%, rgba(77, 155, 255, 0.05) 35%, transparent 65%),
        radial-gradient(ellipse 70% 50% at 100% 70%, rgba(125, 211, 252, 0.15) 0%, rgba(56, 189, 248, 0.04) 40%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(99, 165, 250, 0.10) 0%, transparent 70%);
    z-index: 0;
}

/* === Universal subtle blue gradient on every section root ===
 * Ensures no section ever looks fully black. Sits behind their own bg layers.
 */
section {
    position: relative;
}
section::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(ellipse 100% 40% at 50% 0%, rgba(56, 189, 248, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 80% 60% at 80% 100%, rgba(77, 155, 255, 0.04) 0%, transparent 70%);
}


/* ============================================================
 * COSMOS BLOCK — unified cinematic background that spans
 * Philosophy → MarqueeStrip → Stats → Mission → Advisors
 * → MarqueeStrip → GrowTogether.
 * One continuous blue-black gradient with multiple glows and
 * subtle motion that ties all those sections together.
 * ============================================================ */

.cosmos-block {
    position: relative;
    isolation: isolate;
    /* Hard background base for this whole region */
    background:
        linear-gradient(180deg,
            #050a14 0%,
            #06101f 25%,
            #08152a 50%,
            #06101f 75%,
            #050a14 100%
        );
}

/* Disable the section::after blue glows inside cosmos (the cosmos itself handles it) */
.cosmos-block section::after { display: none; }
.cosmos-block .tv-section::before { display: none; }

.cosmos-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.cosmos-content {
    position: relative;
    z-index: 1;
}

/* Base radial mesh */
.cosmos-base {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 35% at 10% 8%, rgba(56, 189, 248, 0.20) 0%, rgba(56, 189, 248, 0.05) 35%, transparent 70%),
        radial-gradient(ellipse 60% 35% at 90% 22%, rgba(77, 155, 255, 0.18) 0%, rgba(77, 155, 255, 0.04) 40%, transparent 70%),
        radial-gradient(ellipse 70% 30% at 30% 50%, rgba(125, 211, 252, 0.14) 0%, rgba(56, 189, 248, 0.03) 40%, transparent 70%),
        radial-gradient(ellipse 65% 30% at 80% 75%, rgba(96, 165, 250, 0.18) 0%, rgba(77, 155, 255, 0.05) 40%, transparent 70%),
        radial-gradient(ellipse 70% 35% at 20% 95%, rgba(125, 211, 252, 0.16) 0%, rgba(56, 189, 248, 0.05) 40%, transparent 70%);
}

/* Conic ambient lighting that very slowly rotates — gives "alive" feel */
.cosmos-conic {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200vmax;
    height: 200vmax;
    transform: translate(-50%, -50%);
    background: conic-gradient(
        from 0deg at 50% 50%,
        rgba(56, 189, 248, 0.08) 0deg,
        rgba(77, 155, 255, 0.05) 50deg,
        transparent 110deg,
        rgba(125, 211, 252, 0.07) 180deg,
        rgba(56, 189, 248, 0.04) 250deg,
        rgba(99, 165, 250, 0.09) 320deg,
        rgba(56, 189, 248, 0.08) 360deg
    );
    filter: blur(80px);
    animation: cosmos-conic-spin 120s linear infinite;
    opacity: 0.85;
}
@keyframes cosmos-conic-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Five large drifting blobs scattered vertically */
.cosmos-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    will-change: transform;
    pointer-events: none;
}
.cosmos-blob-1 {
    width: 50vw;
    height: 50vw;
    top: 2%;
    left: -10vw;
    background: radial-gradient(circle,
        rgba(56, 189, 248, 0.28) 0%,
        rgba(56, 189, 248, 0.06) 40%,
        transparent 70%);
    animation: cosmos-drift-1 38s ease-in-out infinite;
}
.cosmos-blob-2 {
    width: 42vw;
    height: 42vw;
    top: 18%;
    right: -8vw;
    background: radial-gradient(circle,
        rgba(125, 211, 252, 0.24) 0%,
        rgba(96, 165, 250, 0.06) 45%,
        transparent 70%);
    animation: cosmos-drift-2 44s ease-in-out infinite;
}
.cosmos-blob-3 {
    width: 55vw;
    height: 55vw;
    top: 44%;
    left: 20%;
    background: radial-gradient(circle,
        rgba(77, 155, 255, 0.22) 0%,
        rgba(56, 189, 248, 0.05) 45%,
        transparent 70%);
    animation: cosmos-drift-3 50s ease-in-out infinite;
}
.cosmos-blob-4 {
    width: 40vw;
    height: 40vw;
    bottom: 22%;
    right: 5vw;
    background: radial-gradient(circle,
        rgba(96, 165, 250, 0.24) 0%,
        rgba(77, 155, 255, 0.05) 45%,
        transparent 70%);
    animation: cosmos-drift-4 42s ease-in-out infinite;
}
.cosmos-blob-5 {
    width: 50vw;
    height: 50vw;
    bottom: -6%;
    left: -8vw;
    background: radial-gradient(circle,
        rgba(125, 211, 252, 0.26) 0%,
        rgba(56, 189, 248, 0.06) 45%,
        transparent 70%);
    animation: cosmos-drift-5 48s ease-in-out infinite;
}

@keyframes cosmos-drift-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(8vw, 6vw) scale(1.12); }
}
@keyframes cosmos-drift-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-7vw, 5vw) scale(1.1); }
}
@keyframes cosmos-drift-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-9vw, -6vw) scale(0.94); }
}
@keyframes cosmos-drift-4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-6vw, 7vw) scale(1.08); }
}
@keyframes cosmos-drift-5 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10vw, -5vw) scale(1.1); }
}

/* Subtle grid that pans diagonally */
.cosmos-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(125, 211, 252, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(125, 211, 252, 0.04) 1px, transparent 1px);
    background-size: 110px 110px;
    mask-image: radial-gradient(ellipse 80% 100% at center, #000 30%, rgba(0,0,0,0.4) 70%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 100% at center, #000 30%, rgba(0,0,0,0.4) 70%, transparent 100%);
    opacity: 0.45;
    animation: cosmos-grid-pan 90s linear infinite;
}
@keyframes cosmos-grid-pan {
    from { background-position: 0 0; }
    to { background-position: 110px 110px; }
}

/* Horizontal scanlines (very faint, CRT feel) */
.cosmos-scan {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        0deg,
        transparent 0,
        transparent 3px,
        rgba(125, 211, 252, 0.018) 3px,
        rgba(125, 211, 252, 0.018) 4px
    );
    opacity: 0.6;
    pointer-events: none;
}

/* 3 horizontal neon lines that traverse at different timings */
.cosmos-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(125, 211, 252, 0.5) 30%,
        rgba(56, 189, 248, 0.9) 50%,
        rgba(125, 211, 252, 0.5) 70%,
        transparent 100%
    );
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.55);
    filter: blur(0.5px);
    opacity: 0;
    will-change: transform, opacity;
}
.cosmos-line-1 {
    top: 16%;
    left: -15%;
    width: 60%;
    animation: cosmos-line-1 26s ease-in-out infinite;
    animation-delay: 0s;
}
.cosmos-line-2 {
    top: 52%;
    right: -15%;
    width: 65%;
    animation: cosmos-line-2 30s ease-in-out infinite;
    animation-delay: 9s;
}
.cosmos-line-3 {
    top: 80%;
    left: -10%;
    width: 55%;
    animation: cosmos-line-1 34s ease-in-out infinite;
    animation-delay: 18s;
}
@keyframes cosmos-line-1 {
    0%, 100% { transform: translateX(0); opacity: 0; }
    18%, 78% { opacity: 0.7; }
    50% { transform: translateX(70vw); opacity: 0.9; }
}
@keyframes cosmos-line-2 {
    0%, 100% { transform: translateX(0); opacity: 0; }
    18%, 78% { opacity: 0.6; }
    50% { transform: translateX(-75vw); opacity: 0.85; }
}

/* Pinprick stars layer */
.cosmos-stars {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1.5px 1.5px at 12% 18%, rgba(255,255,255,0.7), transparent 50%),
        radial-gradient(1px 1px at 28% 42%, rgba(255,255,255,0.45), transparent 50%),
        radial-gradient(1.5px 1.5px at 70% 22%, rgba(125,211,252,0.7), transparent 50%),
        radial-gradient(1px 1px at 84% 65%, rgba(255,255,255,0.5), transparent 50%),
        radial-gradient(1px 1px at 50% 76%, rgba(56,189,248,0.7), transparent 50%),
        radial-gradient(1.2px 1.2px at 92% 90%, rgba(255,255,255,0.55), transparent 50%),
        radial-gradient(1px 1px at 18% 88%, rgba(125,211,252,0.4), transparent 50%),
        radial-gradient(1.5px 1.5px at 38% 8%, rgba(255,255,255,0.5), transparent 50%),
        radial-gradient(1px 1px at 62% 50%, rgba(125,211,252,0.45), transparent 50%);
    background-repeat: no-repeat;
    opacity: 0.7;
    animation: cosmos-stars-twinkle 6s ease-in-out infinite alternate;
}
@keyframes cosmos-stars-twinkle {
    0% { opacity: 0.45; }
    100% { opacity: 0.85; }
}

/* Soft noise overlay */
.cosmos-noise {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

/* Top + bottom fade to ease the seam into the surrounding sections */
.cosmos-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg,
            rgba(5, 10, 20, 0.95) 0%,
            rgba(5, 10, 20, 0.0) 6%,
            rgba(5, 10, 20, 0.0) 94%,
            rgba(5, 10, 20, 0.95) 100%
        );
}


/* === Contact form — highlighted primary CTA === */
.cnt-form-hero {
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(56, 189, 248, 0.10) 0%,
        rgba(77, 155, 255, 0.06) 50%,
        rgba(125, 211, 252, 0.10) 100%
    );
    border: 1px solid rgba(125, 211, 252, 0.32);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
    box-shadow:
        0 50px 140px rgba(0, 0, 0, 0.55),
        0 0 100px rgba(56, 189, 248, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
    isolation: isolate;
}

.cnt-form-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse 40% 40% at 20% 20%, rgba(125, 211, 252, 0.22) 0%, transparent 60%),
        radial-gradient(ellipse 35% 35% at 85% 90%, rgba(77, 155, 255, 0.20) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
    animation: cnt-form-glow 18s ease-in-out infinite;
}
@keyframes cnt-form-glow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(2%, -2%) rotate(2deg); }
}

.cnt-form-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(125, 211, 252, 0.8) 50%,
        transparent 100%
    );
    box-shadow: 0 0 18px rgba(125, 211, 252, 0.6);
    z-index: 1;
}

.cnt-form-title {
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        rgba(255, 255, 255, 0.78) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cnt-form-sub {
    line-height: 1.65;
}

.cnt-form-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(
        135deg,
        rgba(125, 211, 252, 0.18) 0%,
        rgba(77, 155, 255, 0.10) 100%
    );
    border: 1px solid rgba(125, 211, 252, 0.4);
    color: #fff;
    box-shadow: 0 0 24px rgba(125, 211, 252, 0.25);
    flex-shrink: 0;
    align-self: flex-start;
    white-space: nowrap;
}

.eyebrow-accent {
    color: #7dd3fc !important;
    letter-spacing: 0.35em;
    font-weight: 500;
    text-shadow: 0 0 16px rgba(125, 211, 252, 0.5);
}

@media (max-width: 768px) {
    .cnt-form-badge {
        font-size: 10px;
        padding: 8px 14px;
    }
}


/* === Mission v2 — cleaner hierarchy === */
.m-header {
    position: relative;
}

.m-title-v2 {
    background: linear-gradient(
        180deg,
        #fff 0%,
        rgba(255, 255, 255, 0.85) 60%,
        rgba(255, 255, 255, 0.72) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 80px rgba(125, 211, 252, 0.08);
}

.m-lead {
    line-height: 1.65;
}

/* PILLARS — 4 cards row */
.m-pillar {
    position: relative;
    padding: 28px 24px 28px 26px;
    border-radius: 18px;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(77, 155, 255, 0.04) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition:
        border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 220px;
    overflow: hidden;
}

.m-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 2px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(125, 211, 252, 0.55) 50%,
        transparent 100%
    );
    box-shadow: 0 0 14px rgba(125, 211, 252, 0.4);
    opacity: 0.5;
    transition: opacity 0.6s ease;
}

.m-pillar:hover {
    border-color: rgba(125, 211, 252, 0.32);
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(77, 155, 255, 0.08) 100%
    );
    transform: translateY(-3px);
}

.m-pillar:hover::before {
    opacity: 1;
}

.m-pillar-num {
    color: rgba(125, 211, 252, 0.9);
    font-size: 11px;
    letter-spacing: 0.32em;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}

.m-pillar-label {
    color: #fff;
    font-size: clamp(1.4rem, 2vw, 1.7rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.1;
}

.m-pillar-body {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14.5px;
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
    flex: 1;
}

/* CTA row */
.m-cta-row {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 36px;
}


/* === Header "Área Cliente" CTA — primary accent button === */
.header-client-btn {
    background: linear-gradient(
        135deg,
        rgba(125, 211, 252, 0.20) 0%,
        rgba(77, 155, 255, 0.18) 100%
    );
    border: 1px solid rgba(125, 211, 252, 0.4);
    color: #fff;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        0 0 30px rgba(77, 155, 255, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    white-space: nowrap;
}
.header-client-btn:hover {
    background: linear-gradient(
        135deg,
        rgba(125, 211, 252, 0.32) 0%,
        rgba(77, 155, 255, 0.26) 100%
    );
    border-color: rgba(125, 211, 252, 0.7);
    box-shadow:
        0 0 50px rgba(125, 211, 252, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

/* Menu — Área Cliente CTA */
.menu-client-btn {
    background: linear-gradient(
        135deg,
        rgba(125, 211, 252, 0.22) 0%,
        rgba(77, 155, 255, 0.18) 100%
    );
    border: 1px solid rgba(125, 211, 252, 0.45);
    color: #fff;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        0 0 40px rgba(125, 211, 252, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    text-decoration: none;
}
.menu-client-btn:hover {
    background: linear-gradient(
        135deg,
        rgba(125, 211, 252, 0.34) 0%,
        rgba(77, 155, 255, 0.28) 100%
    );
    border-color: rgba(125, 211, 252, 0.7);
    transform: translateY(-2px);
    box-shadow:
        0 0 60px rgba(125, 211, 252, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* === Mobile / responsive polish === */
@media (max-width: 640px) {
    /* Header: smaller logo + smaller padding to fit Menu + Contacto + Área Cliente */
    [data-testid="site-logo"] img {
        height: 36px !important;
    }
    [data-testid="open-menu-btn"] {
        padding: 10px 14px;
    }
    [data-testid="open-menu-btn"] span:last-child {
        display: none; /* hide "Menu" text on small screens */
    }
    [data-testid="header-client-btn"] {
        padding: 10px 14px;
    }
}

@media (max-width: 480px) {
    /* Hide Contacto and keep only Menu + Área Cliente on very narrow screens */
    [data-testid="header-contact-btn"] {
        display: none !important;
    }
}

/* Hero CTAs grid on mobile — make them stack neatly, full-width pills */
@media (max-width: 640px) {
    [data-testid="hero-ctas"] {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100%;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
    [data-testid="hero-ctas"] .btn-glass {
        width: 100%;
        justify-content: center;
    }
}

/* Form badge — wrap nicely on mobile */
@media (max-width: 768px) {
    .cnt-form-hero {
        padding: 28px 22px !important;
    }
    .cnt-form-badge {
        align-self: flex-start;
    }
}

/* Integracion panel — tighten on mobile */
@media (max-width: 640px) {
    .svc-integracion-panel {
        padding: 32px 22px !important;
    }
    .svc-integracion-kicker {
        font-size: 10px;
        letter-spacing: 0.32em;
        padding: 6px 12px;
    }
}

/* TeamValues — semicircle picker keeps text readable on small screens */
@media (max-width: 640px) {
    .tv-rail-title {
        font-size: 14px;
    }
    .tv-rail-num {
        font-size: 10px;
        letter-spacing: 0.24em;
    }
}

