        :root {
            --primary-blue: #4DA8DA;
            --deep-blue: #040d21;
            --text-light: #e2e8f0;
            --text-muted: #94a3b8;
            --glass-strong: rgba(10, 25, 47, 0.84);
            --glass-line: rgba(255, 255, 255, 0.08);
            --max: 1200px;
            --header: 78px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Pretendard', sans-serif;
            background: linear-gradient(135deg, #020611 0%, #06132b 50%, #0a1f42 100%);
            background-attachment: fixed;
            color: #ffffff;
            overflow-x: hidden;
            overscroll-behavior-y: none;
        }

        body.nav-open {
            overflow: hidden;
        }

        img {
            display: block;
            max-width: 100%;
            height: auto;
            user-select: none;
            -webkit-user-drag: none;
        }

        #canvas-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: 0;
            pointer-events: none;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            display: block;
            width: auto;
            padding: 16px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            background: rgba(4, 13, 33, 0.42);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            transition: padding 0.25s ease, background 0.25s ease;
        }

        header.is-scrolled {
            padding: 10px 0;
            background: rgba(2, 6, 17, 0.88);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 22px;
            width: min(100% - 32px, 1200px);
            min-height: 46px;
            margin: 0 auto;
            padding: 0;
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: -0.5px;
            text-decoration: none;
        }

        .logo span {
            color: var(--primary-blue);
        }

        .logo img {
            width: 200px;
            display: block;
        }

        .desktop-nav {
            display: none;
        }

        .desktop-nav ul {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 30px;
            padding: 0;
            margin: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-item::after {
            content: "";
            position: absolute;
            top: 100%;
            left: -16px;
            right: -16px;
            height: 18px;
        }

        .nav-link {
            display: inline-flex;
            align-items: center;
            min-height: 42px;
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            letter-spacing: 0.02em;
            transition: color 0.25s ease;
        }

        .nav-link:hover,
        .nav-link:focus-visible,
        .nav-link.is-active {
            color: var(--primary-blue);
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 12px);
            left: 50%;
            min-width: 250px;
            padding: 14px 0;
            background: rgba(10, 25, 47, 0.92);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
            opacity: 0;
            visibility: hidden;
            transform: translateX(-50%) translateY(14px);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
        }

        .nav-item:hover .dropdown-menu,
        .nav-item:focus-within .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-menu a {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-light);
            text-decoration: none;
            padding: 11px 24px;
            font-size: 14px;
            font-weight: 400;
            transition: color 0.2s ease, background 0.2s ease, padding 0.2s ease;
        }

        .dropdown-menu a:hover,
        .dropdown-menu a:focus-visible {
            background: rgba(77, 168, 218, 0.15);
            color: var(--primary-blue);
            padding-left: 30px;
        }

        .dropdown-menu .material-icons {
            color: var(--primary-blue);
            font-size: 20px;
        }

        .dropdown-menu small {
            display: block;
            color: var(--text-muted);
            font-size: 11px;
            line-height: 1.3;
        }

        .mobile-toggle,
        .nav-toggle {
            position: relative;
            display: none;
            width: 48px;
            height: 48px;
            border: 1px solid rgba(77, 168, 218, 0.45);
            border-radius: 999px;
            background: rgba(77, 168, 218, 0.08);
            color: #ffffff;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1002;
            transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
        }

        .mobile-toggle span,
        .nav-toggle span {
            width: 21px;
            height: 2px;
            background: currentColor;
            display: block;
            border-radius: 999px;
            transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
        }

        .nav-toggle:hover,
        .nav-toggle:focus-visible,
        .nav-toggle.is-active {
            border-color: #38bdf8;
            background: rgba(56, 189, 248, 0.12);
            transform: translateY(-1px);
        }

        .nav-toggle.is-active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
            background: #38bdf8;
        }

        .nav-toggle.is-active span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.is-active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
            background: #38bdf8;
        }

        .mobile-toggle em,
        .nav-toggle em {
            position: absolute;
            width: 1px;
            height: 1px;
            overflow: hidden;
            clip: rect(0 0 0 0);
            white-space: nowrap;
        }

        .mobile-nav,
        .mobile-panel {
            display: none;
        }

        .menu-dim-overlay {
            position: fixed;
            inset: 0;
            z-index: 999;
            background: rgba(10, 25, 47, 0.42);
            opacity: 0;
            pointer-events: none;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .menu-dim-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .menu-dim-overlay[hidden] {
            display: block;
            opacity: 0;
            pointer-events: none;
        }

        .side-menu {
            position: fixed;
            top: 0;
            right: -42%;
            z-index: 1000;
            display: flex;
            width: 42%;
            height: 100%;
            flex-direction: column;
            justify-content: space-between;
            padding: 90px 44px 30px;
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            background: linear-gradient(145deg, rgba(15, 43, 92, 0.96) 0%, rgba(10, 25, 47, 0.98) 100%);
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .side-menu.active {
            right: 0;
        }

        .side-menu-close {
            position: absolute;
            top: 24px;
            right: 28px;
            z-index: 1003;
            display: inline-flex;
            width: 44px;
            height: 44px;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(56, 189, 248, 0.42);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.04);
            color: #cbd5e1;
            cursor: pointer;
            transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.25s ease;
        }

        .side-menu-close:hover,
        .side-menu-close:focus-visible {
            border-color: #38bdf8;
            background: rgba(56, 189, 248, 0.1);
            color: #ffffff;
            transform: rotate(90deg);
        }

        .side-menu-close .material-icons-outlined {
            font-size: 24px;
        }

        .menu-scroll-container {
            display: flex;
            overflow-x: hidden;
            overflow-y: auto;
            flex: 1;
            flex-direction: column;
            justify-content: flex-start;
            padding-right: 6px;
        }

        .menu-scroll-container::-webkit-scrollbar {
            width: 4px;
        }

        .menu-scroll-container::-webkit-scrollbar-thumb {
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.1);
        }

        .side-menu-home,
        .group-title {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            width: fit-content;
            margin-bottom: 14px;
            color: #38bdf8;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .side-menu-home {
            margin-bottom: 34px;
            color: #ffffff;
        }

        .side-menu-home.is-active,
        .menu-group.is-active .group-title {
            color: #ffffff;
        }

        .group-title .material-icons-outlined,
        .side-menu-home .material-icons-outlined {
            font-size: 19px;
        }

        .menu-group {
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(15px);
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .side-menu.active .menu-group {
            opacity: 1;
            transform: translateY(0);
        }

        .side-menu.active .menu-group:nth-of-type(1) { transition-delay: 0.05s; }
        .side-menu.active .menu-group:nth-of-type(2) { transition-delay: 0.10s; }
        .side-menu.active .menu-group:nth-of-type(3) { transition-delay: 0.15s; }
        .side-menu.active .menu-group:nth-of-type(4) { transition-delay: 0.20s; }
        .side-menu.active .menu-group:nth-of-type(5) { transition-delay: 0.25s; }

        .sub-links-row {
            display: flex;
            overflow: visible;
            flex-wrap: wrap;
            gap: 10px;
            padding: 2px;
        }

        .sub-item-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.03);
            text-decoration: none;
            transition: transform 0.2s ease-in-out, border-color 0.2s ease-in-out, background 0.2s ease-in-out;
        }

        .sub-item-badge .material-icons-outlined {
            color: #94a3b8;
            font-size: 18px;
            transition: color 0.2s ease;
        }

        .sub-item-name {
            color: #cbd5e1;
            font-size: 14px;
            font-weight: 500;
            white-space: nowrap;
            transition: color 0.2s ease;
        }

        .sub-item-badge:hover,
        .sub-item-badge:focus-visible,
        .sub-item-badge.is-active {
            border-color: #38bdf8;
            background: rgba(56, 189, 248, 0.08);
            transform: translateY(-2px);
        }

        .sub-item-badge:hover .material-icons-outlined,
        .sub-item-badge:focus-visible .material-icons-outlined,
        .sub-item-badge.is-active .material-icons-outlined {
            color: #38bdf8;
        }

        .sub-item-badge:hover .sub-item-name,
        .sub-item-badge:focus-visible .sub-item-name,
        .sub-item-badge.is-active .sub-item-name {
            color: #ffffff;
        }

        .menu-banner-space {
            display: flex;
            width: 100%;
            height: 100px;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin: 10px 0 24px;
            padding: 0 20px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 12px;
            background: linear-gradient(90deg, rgba(56, 189, 248, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
            opacity: 0;
            transform: translateY(15px);
            transition: opacity 0.5s ease, transform 0.5s ease;
            transition-delay: 0.3s;
        }

        .side-menu.active .menu-banner-space {
            opacity: 1;
            transform: translateY(0);
        }

        .banner-icon {
            color: rgba(56, 189, 248, 0.4);
            font-size: 32px;
        }

        .banner-text {
            display: flex;
            flex-direction: column;
        }

        .banner-text .main-txt {
            color: #cbd5e1;
            font-size: 13px;
            font-weight: 600;
        }

        .banner-text .sub-txt {
            margin-top: 2px;
            color: #64748b;
            font-size: 11px;
        }

        .menu-footer {
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .menu-footer p {
            margin: 0 0 4px;
            color: #64748b;
            font-size: 12px;
        }

        main {
            position: relative;
            z-index: 10;
            /* Prevents layout breaking during parallax transforms */
            overflow: hidden; 
        }

        .section-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 150px 40px;
        }

        /* Essential for smooth JS Parallax */
        .parallax-wrap {
            min-width: 0;
            will-change: transform;
        }

        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
        }

        .hero h1 {
            font-size: 5.5rem;
            font-weight: 800;
            margin-bottom: 24px;
            line-height: 1.1;
            letter-spacing: -2px;
            overflow-wrap: break-word;
            word-break: normal;
            text-shadow: 0 10px 40px rgba(0,0,0,0.8);
        }

        .hero p {
            font-size: 1.35rem;
            color: var(--text-muted);
            max-width: 650px;
            margin: 0 auto 48px auto;
            line-height: 1.6;
            font-weight: 300;
            text-shadow: 0 4px 10px rgba(0,0,0,0.5);
        }

        .btn {
            padding: 18px 42px;
            background: linear-gradient(135deg, rgba(77, 168, 218, 0.1), rgba(59, 130, 246, 0.05));
            color: #ffffff;
            text-decoration: none;
            border: 1px solid rgba(77, 168, 218, 0.6);
            border-radius: 40px;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            backdrop-filter: blur(10px);
        }

        .btn:hover {
            background: rgba(77, 168, 218, 0.2);
            border-color: var(--primary-blue);
            box-shadow: 0 0 30px rgba(77, 168, 218, 0.4);
            transform: translateY(-3px);
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            overflow-wrap: break-word;
            word-break: normal;
            background: linear-gradient(90deg, #ffffff, #8dbce8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--primary-blue);
            font-weight: 500;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .desc-text {
            font-size: 1.1rem;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .glass-card {
            min-width: 0;
            background: rgba(13, 33, 66, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 50px 40px;
            backdrop-filter: blur(12px);
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at top right, rgba(77, 168, 218, 0.15), transparent 60%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .glass-card:hover {
            transform: translateY(-15px);
            border-color: rgba(77, 168, 218, 0.4);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
        }

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

        .glass-card .material-icons {
            font-size: 48px;
            color: var(--primary-blue);
            margin-bottom: 24px;
            display: block;
        }

        .glass-card h3 {
            font-size: 1.6rem;
            margin-bottom: 16px;
            font-weight: 600;
            overflow-wrap: break-word;
            word-break: normal;
        }

        .glass-card p {
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .link-text {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s ease;
        }

        .link-text:hover {
            gap: 12px;
        }

        footer {
            background: #020611;
            padding: 80px 40px 40px 40px;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            z-index: 10;
        }

        footer p {
            color: #475569;
            font-size: 0.95rem;
            margin-top: 40px;
        }

        .site-footer .footer-inner {
            position: relative;
            z-index: 10;
            width: min(1200px, calc(100% - 80px));
            margin: 0 auto;
        }

        .footer-logo img {
            width: 200px;
            display: block;
            margin: 0 auto 28px;
        }

        .footer-map {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 20px;
            margin: 0 0 26px;
            text-align: left;
        }

        .footer-column > a {
            display: inline-block;
            margin-bottom: 10px;
            color: #ffffff;
            font-size: 0.9rem;
            font-weight: 800;
        }

        .footer-column ul {
            display: grid;
            gap: 7px;
            list-style: none;
        }

        .footer-column a {
            color: var(--text-muted);
            text-decoration: none;
        }

        .footer-column a:hover {
            color: var(--primary-blue);
        }

        @media (min-width: 1080px) {
            .desktop-nav {
                display: block;
            }

            .nav-toggle {
                display: inline-flex;
            }
        }

        @media (max-width: 1080px) {
            header {
                padding: 14px 0;
            }

            .header-inner {
                padding: 0 22px;
            }

            .logo img {
                width: min(200px, 52vw) !important;
            }

            header nav {
                display: none;
            }

            .mobile-toggle,
            .nav-toggle {
                display: inline-flex;
                flex: 0 0 auto;
            }

            .mobile-nav,
            .mobile-panel {
                position: fixed;
                inset: 74px 0 0 0;
                z-index: 99;
                overflow-y: auto;
                padding: 18px 24px 44px;
                background: rgba(2, 6, 17, 0.96);
                border-top: 1px solid rgba(255, 255, 255, 0.08);
                backdrop-filter: blur(18px);
                -webkit-backdrop-filter: blur(18px);
            }

            .mobile-nav[hidden],
            .mobile-panel[hidden] {
                display: none;
            }

            .mobile-nav:not([hidden]),
            .mobile-panel:not([hidden]) {
                display: block;
            }

            .mobile-nav > a,
            .mobile-nav summary,
            .mobile-panel > a,
            .mobile-group summary {
                min-height: 56px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                color: var(--text-light);
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
                font-weight: 700;
                list-style: none;
            }

            .mobile-nav summary::-webkit-details-marker,
            .mobile-group summary::-webkit-details-marker {
                display: none;
            }

            .mobile-nav details[open] summary,
            .mobile-group[open] summary {
                color: var(--primary-blue);
            }

            .mobile-nav .sub,
            .mobile-subnav {
                display: grid;
                gap: 10px;
                padding: 14px 0 18px 18px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            }

            .mobile-nav .sub a,
            .mobile-subnav a {
                color: var(--text-muted);
                font-size: 15px;
                line-height: 1.35;
            }

            body.nav-open {
                overflow: hidden;
            }

        }

        @media (max-width: 768px) {
            body {
                background-attachment: scroll;
            }

            .side-menu {
                right: -85%;
                width: 85%;
                padding: 80px 24px 32px;
            }

            .menu-group {
                margin-bottom: 28px;
            }

            .sub-item-badge {
                padding: 9px 14px;
            }

            .sub-item-name {
                font-size: 13px;
            }

            .menu-banner-space {
                height: 80px;
            }

            .section-container {
                padding: 96px 22px;
            }

            .hero {
                min-height: 100svh;
                height: auto;
                padding-top: 122px;
                padding-bottom: 72px;
            }

            .hero h1 {
                font-size: clamp(3rem, 14vw, 4.2rem);
                line-height: 1.02;
                letter-spacing: -1.4px;
                margin-bottom: 20px;
            }

            .hero p {
                font-size: 1.05rem;
                line-height: 1.65;
                margin-bottom: 34px;
            }

            .btn {
                width: 100%;
                justify-content: center;
                padding: 16px 24px;
                min-height: 54px;
            }

            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .grid-3 {
                margin-top: 34px;
            }

            .section-title {
                font-size: clamp(2.3rem, 11vw, 3.1rem);
                line-height: 1.08;
            }

            .section-subtitle {
                font-size: 0.95rem;
                letter-spacing: 1.5px;
            }

            .desc-text {
                font-size: 1rem;
                line-height: 1.75;
            }

            .glass-card {
                padding: 34px 24px !important;
                min-height: 0 !important;
                transform: none !important;
            }

            .glass-card:hover {
                transform: none;
            }

            .glass-card .material-icons {
                font-size: 42px !important;
            }

            .parallax-wrap {
                transform: none !important;
            }

            footer {
                padding: 58px 22px 34px;
            }

            .site-footer .footer-inner {
                width: min(100%, calc(100% - 44px));
            }

            .footer-map {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        @media (max-width: 420px) {
            .header-inner {
                padding: 0 16px;
            }

            .section-container {
                padding-left: 18px;
                padding-right: 18px;
            }

            .hero h1 {
                font-size: clamp(2.65rem, 15vw, 3.5rem);
            }

            .section-title {
                font-size: clamp(2rem, 11vw, 2.7rem);
            }
        }

        /* Keep the generated global header identical to the sub pages. */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            display: block;
            width: auto;
            padding: 16px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            background: rgba(4, 13, 33, 0.42);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            transition: padding 0.25s ease, background 0.25s ease;
        }

        .site-header.is-scrolled {
            padding: 10px 0;
            background: rgba(2, 6, 17, 0.88);
        }

        .site-header .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 22px;
            width: min(100% - 32px, var(--max));
            min-height: 46px;
            margin: 0 auto;
            padding: 0;
        }

        .site-header .logo {
            display: inline-flex;
            align-items: center;
            min-width: 0;
            color: #ffffff;
            text-decoration: none;
        }

        .site-header .logo img {
            width: min(200px, 45vw);
            max-height: 42px;
            display: block;
            object-fit: contain;
        }

        .site-header .desktop-nav {
            display: none;
        }

        .site-header .desktop-nav ul {
            display: flex;
            align-items: center;
            gap: 30px;
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .site-header .nav-link {
            display: inline-flex;
            align-items: center;
            min-height: 42px;
            color: var(--text-light);
            font-size: 15px;
            font-weight: 500;
            letter-spacing: 0.02em;
            text-decoration: none;
            transition: color 0.25s ease;
        }

        .site-header .nav-link:hover,
        .site-header .nav-link:focus-visible,
        .site-header .nav-link.is-active {
            color: var(--primary-blue);
        }

        .site-header .dropdown-menu {
            position: absolute;
            top: calc(100% + 12px);
            left: 50%;
            min-width: 250px;
            padding: 14px 0;
            background: var(--glass-strong);
            border: 1px solid var(--glass-line);
            border-radius: 12px;
            box-shadow: 0 24px 42px rgba(0, 0, 0, 0.52);
            opacity: 0;
            visibility: hidden;
            transform: translateX(-50%) translateY(14px);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
        }

        .site-header .nav-item:hover .dropdown-menu,
        .site-header .nav-item:focus-within .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .site-header .dropdown-menu a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 11px 24px;
            color: var(--text-light);
            font-size: 14px;
            font-weight: 400;
            line-height: 1.55;
            text-decoration: none;
            transition: color 0.2s ease, background 0.2s ease, padding 0.2s ease;
        }

        .site-header .dropdown-menu a:hover,
        .site-header .dropdown-menu a:focus-visible {
            color: var(--primary-blue);
            background: rgba(77, 168, 218, 0.14);
            padding-left: 30px;
        }

        .site-header .nav-toggle {
            position: relative;
            display: inline-flex;
            width: 48px;
            height: 48px;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
            border: 1px solid rgba(77, 168, 218, 0.45);
            border-radius: 999px;
            background: rgba(77, 168, 218, 0.07);
            color: #ffffff;
            cursor: pointer;
            z-index: 1002;
            transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
        }

        .site-header .nav-toggle span {
            width: 20px;
            height: 2px;
            border-radius: 999px;
            background: currentColor;
            transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
        }

        .site-header .nav-toggle:hover,
        .site-header .nav-toggle:focus-visible,
        .site-header .nav-toggle.is-active {
            border-color: #38bdf8;
            background: rgba(56, 189, 248, 0.12);
            transform: translateY(-1px);
        }

        .site-header .nav-toggle.is-active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
            background: #38bdf8;
        }

        .site-header .nav-toggle.is-active span:nth-child(2) {
            opacity: 0;
        }

        .site-header .nav-toggle.is-active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
            background: #38bdf8;
        }

        @media (min-width: 1080px) {
            .site-header .desktop-nav {
                display: block;
            }

            .site-header .nav-toggle {
                display: inline-flex;
            }
        }

        @media (max-width: 1080px) {
            .site-header .header-inner {
                width: min(100% - 32px, var(--max));
                padding: 0;
            }
        }

        @media (max-width: 719px) {
            :root {
                --header: 74px;
            }

            .site-header .logo img {
                width: min(190px, 52vw) !important;
                max-height: 36px;
            }

            .site-header .nav-toggle {
                width: 46px;
                height: 46px;
                flex: 0 0 auto;
            }
        }

        @media (max-width: 420px) {
            .site-header .header-inner {
                width: min(100% - 28px, var(--max));
            }

            .site-header .logo img {
                width: min(174px, 50vw) !important;
            }
        }


/* HTML helper classes moved out of inline style attributes */
.wire-logo-img{width:200px}
.section-offset-top{margin-top:100px}
.glass-card-highlight{padding:80px 40px;text-align:center;background:linear-gradient(135deg,rgba(77,168,218,.05),rgba(13,33,66,.4));border-color:rgba(77,168,218,.2)}
.feature-icon-lg{font-size:80px;opacity:.8}
.heading-offset{margin-top:20px}
.section-center-copy{text-align:center;max-width:800px;margin:0 auto}
.section-extra-bottom{padding-bottom:200px}
.tall-feature-card{min-height:350px;display:flex;flex-direction:column;justify-content:center}
.link-push-bottom{margin-top:auto}
.footer-logo-small{font-size:20px}

/* Index business scroll rail */
.business-scroll-section {
    --business-progress: 0;
    --business-kinetic: 0;
    --business-sweep-x: -34%;
    --business-sweep-opacity: 0.16;
    --business-progress-opacity: 0.22;
    width: 100%;
    max-width: none;
    min-height: 116vh;
    padding: 120px 0 44px;
    overflow: visible;
}

.business-sticky {
    position: sticky;
    top: calc(var(--header) + 20px);
    display: flex;
    width: min(100% - 80px, 1280px);
    min-height: calc(100svh - var(--header) - 40px);
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.business-scroll-copy {
    position: relative;
    z-index: 2;
    margin-bottom: clamp(20px, 3vw, 34px);
}

.business-scroll-copy .section-title {
    margin-bottom: 18px;
}

.business-scroll-window {
    position: relative;
    z-index: 1;
    overflow: visible;
    padding: 22px 0 50px;
    perspective: 1200px;
    transform-style: preserve-3d;
    isolation: isolate;
}

.business-scroll-window::before,
.business-scroll-window::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.business-scroll-window::before {
    display: none;
    top: 10%;
    bottom: auto;
    left: var(--business-sweep-x);
    z-index: 0;
    width: 36%;
    height: 74%;
    border-radius: 999px;
    background:
        radial-gradient(ellipse at center, rgba(77, 168, 218, 0.38) 0%, rgba(77, 168, 218, 0.18) 34%, transparent 72%);
    filter: blur(42px);
    opacity: var(--business-sweep-opacity);
    transform: skewX(-10deg) scaleY(0.78);
}

.business-scroll-window::after {
    right: clamp(80px, 10vw, 150px);
    bottom: 18px;
    left: clamp(80px, 10vw, 150px);
    z-index: 2;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(77, 168, 218, 0.85), rgba(218, 191, 91, 0.7));
    opacity: var(--business-progress-opacity);
    transform: scaleX(var(--business-progress));
    transform-origin: left center;
}

.business-card-rail {
    position: relative;
    z-index: 1;
    display: flex;
    width: max-content;
    gap: clamp(20px, 2.5vw, 34px);
    margin-top: 0;
    padding-inline: clamp(80px, 10vw, 150px);
    transform: translate3d(var(--rail-x, 0px), var(--rail-y, 0px), 0) scale(var(--rail-scale, 1));
    transform-style: preserve-3d;
    will-change: transform;
}

.business-card-link {
    --card-drift-x: 0px;
    --card-lift-y: 0px;
    --card-hover-y: 0px;
    --card-depth: 0px;
    --card-rotate-y: 0deg;
    --card-rotate-z: 0deg;
    --card-scale: 1;
    --card-hover-scale: 1;
    --card-opacity: 1;
    --card-blur: 0px;
    --card-filter: none;
    --card-border: 0.18;
    --card-shadow-alpha: 0.38;
    --card-glow-alpha: 0.08;
    --card-overlay-opacity: 0.12;
    --card-icon-y: 0px;
    --card-icon-scale: 1;
    --card-icon-glow: 18px;
    display: flex;
    width: clamp(300px, 26vw, 360px);
    min-height: clamp(360px, 35vw, 470px);
    flex: 0 0 clamp(300px, 26vw, 360px);
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    background:
        radial-gradient(circle at 78% 12%, rgba(77, 168, 218, 0.18), transparent 42%),
        linear-gradient(155deg, rgba(13, 33, 66, 0.74), rgba(7, 18, 38, 0.86));
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-color: rgba(77, 168, 218, var(--card-border));
    box-shadow:
        0 28px 80px rgba(0, 0, 0, var(--card-shadow-alpha)),
        0 0 70px rgba(77, 168, 218, var(--card-glow-alpha));
    opacity: var(--card-opacity);
    filter: var(--card-filter);
    transform:
        translate3d(var(--card-drift-x), calc(var(--card-lift-y) + var(--card-hover-y)), var(--card-depth))
        rotateY(var(--card-rotate-y))
        rotateZ(var(--card-rotate-z))
        scale(var(--card-scale))
        scale(var(--card-hover-scale));
    transform-style: preserve-3d;
    will-change: transform, opacity, filter;
    transition:
        transform 0.22s linear,
        opacity 0.22s linear,
        filter 0.22s linear,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.business-card-link::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background:
        radial-gradient(circle at 50% 0%, rgba(77, 168, 218, 0.38), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.13), transparent 38%, rgba(77, 168, 218, 0.1));
    opacity: var(--card-overlay-opacity);
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.business-card-link > * {
    position: relative;
    z-index: 1;
}

.business-card-link > .material-icons {
    transform: translate3d(0, var(--card-icon-y), 32px) scale(var(--card-icon-scale));
    text-shadow: 0 0 var(--card-icon-glow) rgba(77, 168, 218, 0.58);
    transition: transform 0.22s linear, text-shadow 0.22s linear;
}

.business-card-link h3,
.business-card-link p,
.business-card-link .link-text {
    transform: translateZ(24px);
}

.business-card-link:hover,
.business-card-link:focus-visible {
    --card-hover-y: -18px;
    --card-hover-scale: 1.03;
    border-color: rgba(77, 168, 218, 0.62);
    box-shadow:
        0 34px 86px rgba(0, 0, 0, 0.58),
        0 0 86px rgba(77, 168, 218, 0.34);
    transform:
        translate3d(var(--card-drift-x), calc(var(--card-lift-y) + var(--card-hover-y)), var(--card-depth))
        rotateY(var(--card-rotate-y))
        rotateZ(var(--card-rotate-z))
        scale(var(--card-scale))
        scale(var(--card-hover-scale));
}

.business-card-link .link-text {
    margin-top: auto;
}

.business-card-link .link-text .material-icons {
    display: inline-flex;
    margin: 0;
    color: currentColor;
    font-size: 36px;
    line-height: 1;
}

.business-card-link:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 4px;
}

.feature-duo-section {
    position: relative;
    padding-top: 34px;
    padding-bottom: 86px;
}

.feature-duo-section .grid-2 {
    align-items: stretch;
}

.feature-duo-card {
    isolation: isolate;
    transform-style: preserve-3d;
}

.feature-duo-card::after {
    content: "";
    position: absolute;
    inset: 14px;
    z-index: 0;
    border-radius: 16px;
    border: 1px solid rgba(77, 168, 218, 0.14);
    background:
        radial-gradient(circle at var(--duo-x, 50%) var(--duo-y, 50%), rgba(77, 168, 218, 0.24), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%);
    opacity: 0;
    transform: translate3d(0, 12px, -1px) scale(0.97);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.feature-duo-card > * {
    position: relative;
    z-index: 1;
}

.feature-duo-card .material-icons {
    transition: transform 0.35s ease, text-shadow 0.35s ease;
}

.feature-duo-card:hover,
.feature-duo-card:focus-within,
.feature-duo-card.is-visible {
    border-color: rgba(77, 168, 218, 0.46);
}

.feature-duo-card:hover::after,
.feature-duo-card:focus-within::after,
.feature-duo-card.is-visible::after {
    opacity: 1;
    transform: translate3d(0, 0, -1px) scale(1);
}

.feature-duo-card:hover .material-icons,
.feature-duo-card:focus-within .material-icons {
    transform: translateY(-8px) rotate(-6deg) scale(1.08);
    text-shadow: 0 0 30px rgba(77, 168, 218, 0.55);
}

.feature-duo-card .link-text .material-icons {
    display: inline-flex;
    margin: 0;
    color: currentColor;
    font-size: 32px;
}

.ref-hq {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    gap: 48px;
    align-items: stretch;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.index-hq-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.ref-hq h2 {
    margin-bottom: 22px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.16;
}

.hq-media {
    display: grid;
}

.hq-image-box {
    display: block;
    min-height: 280px;
    overflow: hidden;
    border: 0;
    border-radius: 16px;
    background: transparent;
    transition: transform 0.32s ease;
}

.hq-image-box > img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.hq-image-box:hover {
    transform: translateY(-8px) scale(1.02);
}

.hq-copy {
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.hq-link-btn {
    margin-top: auto;
    width: fit-content;
    align-self: flex-start;
}

.index-cta-section {
    padding-top: 58px;
    padding-bottom: 132px;
}

.index-cta-box {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 260px;
    align-items: center;
    gap: 32px;
    overflow: hidden;
    padding: clamp(28px, 5vw, 56px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: #0b1729;
    box-shadow: 0 26px 76px rgba(0, 0, 0, 0.42);
}

.index-cta-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(5, 13, 29, 0.9), rgba(5, 13, 29, 0.66)),
        radial-gradient(circle at 82% 46%, rgba(77, 168, 218, 0.3), transparent 38%),
        linear-gradient(135deg, rgba(28, 52, 83, 0.9), rgba(6, 15, 31, 0.95));
}

.index-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.36;
}

.index-cta-copy,
.index-cta-actions {
    position: relative;
    z-index: 1;
}

.index-cta-copy p {
    margin-bottom: 4px;
    color: rgba(226, 232, 240, 0.72);
    font-weight: 700;
}

.index-cta-copy h2 {
    margin: 0;
    font-size: clamp(2.3rem, 5vw, 4rem);
    text-shadow: 0 16px 44px rgba(0, 0, 0, 0.4);
}

.index-cta-actions {
    display: flex;
    width: min(320px, 100%);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
}

.index-cta-actions .btn {
    width: 100%;
    justify-content: space-between;
    white-space: nowrap;
}

.btn-quiet {
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .business-scroll-section {
        min-height: 0;
        padding: 96px 0;
    }

    .business-sticky {
        position: relative;
        top: auto;
        width: 100%;
        min-height: 0;
        overflow: visible;
    }

    .business-scroll-copy {
        width: min(100% - 44px, var(--max));
        margin: 0 auto 26px;
        text-align: left;
    }

    .business-scroll-window {
        overflow-x: auto;
        padding: 12px 22px 28px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        perspective: none;
    }

    .business-scroll-window::before,
    .business-scroll-window::after {
        display: none;
    }

    .business-card-rail {
        gap: 18px;
        padding-inline: 0;
        transform: none !important;
        transform-style: flat;
    }

    .business-card-link {
        width: min(84vw, 360px);
        min-height: 360px !important;
        flex-basis: min(84vw, 360px);
        scroll-snap-align: center;
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
    }

    .feature-duo-card::after {
        opacity: 1;
        transform: none;
    }

    .index-hq-section {
        grid-template-columns: 1fr;
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .hq-link-btn {
        width: 100%;
        justify-self: stretch;
    }

    .index-cta-section {
        padding-top: 70px;
        padding-bottom: 110px;
    }

    .index-cta-box {
        grid-template-columns: 1fr;
        min-height: 360px;
    }

    .index-cta-actions {
        width: 100%;
    }
}
