        /* ===== RESET & BASE ===== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --orange: #FF6600;
            --orange-dark: #D95400;
            --orange-light: #FF8533;
            --orange-pale: rgba(255, 102, 0, 0.08);
            --dark: hsl(22, 85%, 13%);
            --dark-2: hsl(25, 70%, 17%);
            --dark-3: hsl(25, 60%, 21%);
            --text: #1A1A2E;
            --text-mid: #4B5563;
            --text-muted: #9CA3AF;
            --border: #E5E7EB;
            --bg: #F7F8FC;
            --white: #FFFFFF;
            --nav-h: 72px;
            --max-w: 1280px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Noto Sans JP', 'Inter', sans-serif;
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            display: block;
            max-width: 100%;
        }

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 30px;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 700;
            cursor: pointer;
            transition: all .25s ease;
            border: 2px solid transparent;
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--orange);
            color: #fff;
            border-color: var(--orange);
        }

        .btn-primary:hover {
            background: var(--orange-dark);
            border-color: var(--orange-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 102, 0, .35);
        }

        .btn-ghost-white {
            background: transparent;
            color: #fff;
            border-color: rgba(255, 255, 255, .55);
        }

        .btn-ghost-white:hover {
            background: rgba(255, 255, 255, .1);
            border-color: #fff;
        }

        .btn-ghost-dark {
            background: transparent;
            color: var(--text);
            border-color: var(--text);
        }

        .btn-ghost-dark:hover {
            background: var(--text);
            color: #fff;
        }

        /* ===== HERO ===== */
        .hero {
            min-height: 100vh;
            background: var(--dark);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 70% 60% at 15% 50%, rgba(255, 102, 0, .14) 0%, transparent 60%),
                radial-gradient(ellipse 50% 70% at 85% 20%, rgba(255, 100, 0, .07) 0%, transparent 60%),
                linear-gradient(145deg, #080c16 0%, #111628 55%, #1a0e24 100%);
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
            background-size: 64px 64px;
            pointer-events: none;
        }

        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(72px);
            pointer-events: none;
            animation: orbFloat 10s ease-in-out infinite;
        }

        .orb-a {
            width: 520px;
            height: 520px;
            background: radial-gradient(circle, rgba(255, 102, 0, .3), transparent 70%);
            top: -160px;
            right: -120px;
        }

        .orb-b {
            width: 360px;
            height: 360px;
            background: radial-gradient(circle, rgba(255, 140, 0, .2), transparent 70%);
            bottom: 0;
            left: -80px;
            animation-delay: -5s;
        }

        @keyframes orbFloat {

            0%,
            100% {
                transform: translateY(0) scale(1);
            }

            50% {
                transform: translateY(-28px) scale(1.06);
            }
        }

        .hero-wrap {
            max-width: var(--max-w);
            width: 100%;
            margin: 0 auto;
            padding: var(--nav-h) 28px 80px;
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 480px;
            gap: 80px;
            align-items: center;
            min-height: 100vh;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 102, 0, .15);
            border: 1px solid rgba(255, 102, 0, .3);
            color: var(--orange-light);
            padding: 6px 16px;
            border-radius: 100px;
            font-size: .78rem;
            font-weight: 700;
            letter-spacing: .06em;
            margin-bottom: 24px;
            animation: fadeUp .8s .2s both;
        }

        .hero-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--orange);
            border-radius: 50%;
        }

        .hero-h1 {
            color: #fff;
            font-size: clamp(2.4rem, 5vw, 4rem);
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 24px;
            animation: fadeUp .8s .35s both;
        }

        .hero-h1 em {
            font-style: normal;
            color: var(--orange);
        }

        .hero-sub {
            color: rgba(255, 255, 255, .65);
            font-size: 1.05rem;
            line-height: 1.85;
            margin-bottom: 44px;
            animation: fadeUp .8s .5s both;
        }

        .hero-sub strong {
            color: rgba(255, 255, 255, .88);
        }

        .hero-ctas {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeUp .8s .65s both;
        }

        /* right panel */
        .hero-panel {
            animation: fadeRight 1s .5s both;
        }

        .hero-glass {
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 20px;
            padding: 32px;
            backdrop-filter: blur(16px);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 20px;
        }

        .h-stat {
            background: rgba(255, 255, 255, .05);
            border-radius: 14px;
            padding: 22px 16px;
            text-align: center;
        }

        .h-stat-n {
            font-size: 2.4rem;
            font-weight: 900;
            color: var(--orange);
            line-height: 1;
            font-family: 'Inter', sans-serif;
        }

        .h-stat-l {
            color: rgba(255, 255, 255, .55);
            font-size: .78rem;
            margin-top: 6px;
        }

        .hero-quote {
            background: rgba(255, 102, 0, .1);
            border: 1px solid rgba(255, 102, 0, .22);
            border-radius: 14px;
            padding: 20px 22px;
        }

        .hero-quote p {
            color: rgba(255, 255, 255, .8);
            font-size: .88rem;
            line-height: 1.75;
        }

        /* scroll hint */
        .scroll-hint {
            position: absolute;
            bottom: 36px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, .35);
            font-size: .72rem;
            letter-spacing: .12em;
            animation: fadeIn 1s 1.4s both;
        }

        .scroll-mouse {
            width: 22px;
            height: 36px;
            border: 2px solid rgba(255, 255, 255, .25);
            border-radius: 11px;
            position: relative;
        }

        .scroll-mouse::after {
            content: '';
            position: absolute;
            top: 5px;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 6px;
            background: rgba(255, 255, 255, .45);
            border-radius: 2px;
            animation: scrollDot 2s ease infinite;
        }

        @keyframes scrollDot {
            0% {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }

            100% {
                opacity: 0;
                transform: translateX(-50%) translateY(14px);
            }
        }

        /* ===== VALUE BAR ===== */
        .value-bar {
            background: #fff;
            border-bottom: 1px solid var(--border);
            padding: 36px 28px;
        }

        .value-bar-in {
            max-width: var(--max-w);
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 56px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .vb-label {
            color: var(--text-muted);
            font-size: .82rem;
            font-weight: 600;
            letter-spacing: .06em;
            white-space: nowrap;
        }

        .vb-items {
            display: flex;
            gap: 56px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .vb-item {
            text-align: center;
        }

        .vb-num {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--orange);
            font-family: 'Inter', sans-serif;
            line-height: 1;
        }

        .vb-text {
            font-size: .78rem;
            color: var(--text-muted);
            margin-top: 4px;
        }

        /* ===== SECTION COMMONS ===== */
        .sec {
            padding: 100px 28px;
        }

        .sec-in {
            max-width: var(--max-w);
            margin: 0 auto;
        }

        .sec-eye {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--orange);
            font-size: .76rem;
            font-weight: 800;
            letter-spacing: .12em;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .sec-eye::before {
            content: '';
            width: 22px;
            height: 2px;
            background: var(--orange);
        }

        .sec-h2 {
            font-size: clamp(1.7rem, 3vw, 2.4rem);
            font-weight: 900;
            color: var(--text);
            margin-bottom: 14px;
            line-height: 1.3;
        }

        .sec-lead {
            font-size: 1rem;
            color: var(--text-mid);
            max-width: 540px;
            line-height: 1.85;
        }

        .tc {
            text-align: center;
        }

        .tc .sec-eye {
            justify-content: center;
        }

        .tc .sec-eye::before {
            display: none;
        }

        .tc .sec-lead {
            margin: 0 auto;
        }

        /* scroll-reveal */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity .7s ease, transform .7s ease;
        }

        .reveal.in {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        /* ===== PHILOSOPHY ===== */
        .sec-philosophy {
            background: var(--dark);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .sec-philosophy::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 60% 80% at 100% 0, rgba(255, 102, 0, .1), transparent),
                radial-gradient(ellipse 50% 60% at 0 100%, rgba(255, 102, 0, .07), transparent);
            pointer-events: none;
        }

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

        .sec-philosophy .sec-h2 {
            color: #fff;
        }

        .sec-philosophy .sec-lead {
            color: rgba(255, 255, 255, .65);
            max-width: 100%;
        }

        .phil-tagline {
            font-size: clamp(1.4rem, 2.5vw, 2rem);
            font-weight: 900;
            color: #fff;
            line-height: 1.5;
            margin: 22px 0 8px;
            letter-spacing: -.01em;
        }

        .phil-quote {
            font-size: clamp(1.05rem, 1.7vw, 1.3rem);
            font-weight: 700;
            color: rgba(255, 255, 255, .75);
            line-height: 1.65;
            margin: 0 0 26px;
            padding-left: 18px;
            border-left: 3px solid var(--orange);
        }

        .phil-right {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .phil-card {
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(255, 255, 255, .09);
            border-radius: 16px;
            padding: 26px 22px;
            transition: all .3s;
        }

        .phil-card:hover {
            background: rgba(255, 102, 0, .1);
            border-color: rgba(255, 102, 0, .3);
            transform: translateY(-5px);
        }

        .phil-card.wide {
            grid-column: span 2;
            background: rgba(255, 102, 0, .1);
            border-color: rgba(255, 102, 0, .22);
        }

        .phil-icon {
            width: 42px;
            height: 42px;
            background: rgba(255, 102, 0, .18);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.15rem;
            margin-bottom: 14px;
        }

        .phil-card h4 {
            color: #fff;
            font-size: .95rem;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .phil-card h4 .phil-en {
            display: block;
            font-size: 1.05rem;
            font-weight: 900;
            color: var(--orange);
            letter-spacing: .01em;
        }

        .phil-card h4 .phil-ja {
            display: block;
            font-size: .78rem;
            font-weight: 600;
            color: rgba(255, 255, 255, .6);
            margin-top: 2px;
        }

        .phil-card p {
            color: rgba(255, 255, 255, .55);
            font-size: .83rem;
            line-height: 1.75;
        }

        /* ===== SERVICES ===== */
        .sec-services {
            background: var(--bg);
        }

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

        .svc-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
            transition: all .3s ease;
        }

        .svc-card:hover {
            transform: translateY(-9px);
            box-shadow: 0 24px 60px rgba(0, 0, 0, .1);
            border-color: var(--orange);
        }

        .svc-head {
            height: 210px;
            position: relative;
            overflow: hidden;
            background: var(--dark);
        }

        .svc-head img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .45s ease;
        }

        .svc-card:hover .svc-head img {
            transform: scale(1.05);
        }

        .svc-head::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .32) 100%);
            z-index: 1;
        }

        .svc-tag {
            z-index: 2;
            position: absolute;
            top: 14px;
            left: 14px;
            background: var(--orange);
            color: #fff;
            padding: 4px 12px;
            border-radius: 100px;
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: .04em;
        }

        .svc-body {
            padding: 28px 28px 32px;
        }

        .svc-pills {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            margin-bottom: 14px;
        }

        .svc-pill {
            background: rgba(255, 102, 0, .09);
            color: var(--orange);
            padding: 3px 11px;
            border-radius: 100px;
            font-size: .72rem;
            font-weight: 700;
        }

        .svc-body h3 {
            color: var(--text);
            font-size: 1.15rem;
            margin-bottom: 10px;
        }

        .svc-body p {
            color: var(--text-mid);
            font-size: .875rem;
            line-height: 1.8;
            margin-bottom: 22px;
        }

        .svc-link {
            color: var(--orange);
            font-weight: 700;
            font-size: .875rem;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: gap .2s;
        }

        .svc-link:hover {
            gap: 10px;
        }

        .svc-link::after {
            content: '→';
        }

        /* ===== MISSION ===== */
        .sec-mission {
            background: #fff;
        }

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

        .mis-card {
            padding: 36px 28px;
            border-radius: 20px;
            border: 2px solid var(--border);
            position: relative;
            overflow: hidden;
            transition: all .3s;
        }

        .mis-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 102, 0, .05), transparent);
            opacity: 0;
            transition: opacity .3s;
        }

        .mis-card:hover {
            border-color: var(--orange);
            transform: translateY(-7px);
            box-shadow: 0 16px 44px rgba(255, 102, 0, .1);
        }

        .mis-card:hover::after {
            opacity: 1;
        }

        .mis-num {
            font-size: 4.5rem;
            font-weight: 900;
            color: rgba(255, 102, 0, .1);
            line-height: 1;
            margin-bottom: 14px;
            font-family: 'Inter', sans-serif;
        }

        .mis-card h3 {
            font-size: 1.05rem;
            color: var(--text);
            margin-bottom: 12px;
            line-height: 1.5;
        }

        .mis-card p {
            font-size: .875rem;
            color: var(--text-mid);
            line-height: 1.85;
        }

        /* ===== CTA BAND ===== */
        .cta-band {
            background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
            padding: 88px 28px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-band::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 100% at 50% 110%, rgba(255, 102, 0, .18), transparent);
            pointer-events: none;
        }

        .cta-band-in {
            position: relative;
            z-index: 1;
            max-width: 680px;
            margin: 0 auto;
        }

        .cta-band-in h2 {
            color: #fff;
            font-size: clamp(1.7rem, 3vw, 2.6rem);
            margin-bottom: 14px;
        }

        .cta-band-in p {
            color: rgba(255, 255, 255, .62);
            font-size: 1rem;
            line-height: 1.85;
            margin-bottom: 40px;
        }

        .cta-btns {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ===== ABOUT ===== */
        .sec-about {
            background: var(--bg);
        }

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

        .about-map-wrap {
            background: linear-gradient(145deg, var(--dark), var(--dark-3));
            border-radius: 20px;
            height: 400px;
            position: relative;
            overflow: hidden;
        }

        .about-map-frame {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            filter: saturate(1.02) contrast(1.01);
        }

        .about-tbl {
            margin-top: 28px;
        }

        .about-row {
            display: grid;
            grid-template-columns: 110px 1fr;
            gap: 16px;
            padding: 14px 0;
            border-bottom: 1px solid var(--border);
        }

        .about-row:first-child {
            border-top: 1px solid var(--border);
        }

        .about-lbl {
            color: var(--text-muted);
            font-size: .84rem;
            font-weight: 700;
        }

        .about-val {
            color: var(--text);
            font-size: .875rem;
        }

        /* ===== RECRUIT ===== */
        .sec-recruit {
            background: #fff;
        }

        .rec-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
            margin-top: 0;
        }

        .rec-content .sec-eye {
            margin-top: 0;
        }

        .rec-content h3 {
            font-size: 1.7rem;
            font-weight: 900;
            margin-bottom: 14px;
            line-height: 1.4;
        }

        .rec-content>p {
            color: var(--text-mid);
            font-size: .95rem;
            line-height: 1.9;
            margin-bottom: 28px;
        }

        .rec-feats {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-bottom: 32px;
        }

        .rec-feat {
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }

        .rec-feat-ico {
            width: 40px;
            height: 40px;
            flex-shrink: 0;
            background: rgba(255, 102, 0, .09);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }

        .rec-feat-txt h4 {
            font-size: .9rem;
            margin-bottom: 3px;
        }

        .rec-feat-txt p {
            font-size: .82rem;
            color: var(--text-mid);
        }

        .rec-visual {
            border-radius: 20px;
            min-height: 440px;
            position: relative;
            overflow: hidden;
        }

        .rec-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            position: absolute;
            inset: 0;
        }

        .rec-visual::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10, 5, 0, .72) 0%, rgba(10, 5, 0, .2) 55%, transparent 100%);
            z-index: 1;
        }

        .rec-visual-in {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 32px 36px;
            z-index: 2;
        }

        .rec-visual-txt {
            color: #fff;
            font-size: 1.2rem;
            font-weight: 700;
            line-height: 1.5;
            text-shadow: 0 2px 8px rgba(0, 0, 0, .4);
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--dark);
            color: #fff;
            padding: 80px 28px 44px;
        }

        .foot-in {
            max-width: var(--max-w);
            margin: 0 auto;
        }

        .foot-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 56px;
            padding-bottom: 56px;
            border-bottom: 1px solid rgba(255, 255, 255, .08);
        }

        .foot-brand-logo {
            font-size: 1.5rem;
            font-weight: 900;
            margin-bottom: 14px;
        }

        .foot-brand-logo span {
            color: var(--orange);
        }

        .foot-brand p {
            color: rgba(255, 255, 255, .45);
            font-size: .85rem;
            line-height: 1.85;
            margin-bottom: 22px;
        }

        .foot-socials {
            display: flex;
            gap: 10px;
        }

        .foot-social-btn {
            width: 34px;
            height: 34px;
            background: rgba(255, 255, 255, .08);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .85rem;
            font-weight: 700;
            transition: background .2s;
        }

        .foot-social-btn:hover {
            background: var(--orange);
        }

        .foot-col h5 {
            color: #fff;
            font-size: .8rem;
            font-weight: 800;
            letter-spacing: .06em;
            margin-bottom: 18px;
        }

        .foot-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .foot-col ul li a {
            color: rgba(255, 255, 255, .45);
            font-size: .84rem;
            transition: color .2s;
        }

        .foot-col ul li a:hover {
            color: #fff;
        }

        .foot-bot {
            padding-top: 36px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 14px;
        }

        .foot-copy {
            color: rgba(255, 255, 255, .3);
            font-size: .78rem;
        }

        .foot-legal {
            display: flex;
            gap: 22px;
        }

        .foot-legal a {
            color: rgba(255, 255, 255, .3);
            font-size: .78rem;
            transition: color .2s;
        }

        .foot-legal a:hover {
            color: rgba(255, 255, 255, .65);
        }

        /* ===== MISSION VISUAL (Möbius) ===== */
        .msv {
            position: relative;
            background: var(--dark);
            overflow: hidden;
            height: 72vw;
            min-height: 800px;
            max-height: 1080px;
        }

        .msv-vline,
        .msv-hline {
            position: absolute;
            pointer-events: none;
            z-index: 1;
        }

        .msv-vline {
            left: 50%;
            top: 0;
            bottom: 0;
            width: 1px;
            background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .07) 18%, rgba(255, 255, 255, .07) 82%, transparent);
        }

        .msv-hline {
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(255, 255, 255, .07) 18%, rgba(255, 255, 255, .07) 82%, transparent);
        }

        .msv-axis {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
        }

        .msv-axis-word {
            font-size: .6rem;
            font-weight: 800;
            letter-spacing: .32em;
            color: rgba(255, 255, 255, .3);
            text-transform: uppercase;
            white-space: nowrap;
        }

        .msv-axis-bar {
            width: 1px;
            height: 28px;
            background: linear-gradient(to bottom, rgba(255, 255, 255, .18), transparent);
        }

        .msv-axis-t {
            top: 28px;
        }

        .msv-axis-b {
            bottom: 28px;
            flex-direction: column-reverse;
        }

        .msv-axis-b .msv-axis-bar {
            background: linear-gradient(to top, rgba(255, 255, 255, .18), transparent);
        }

        .msv-svg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

        .msv-brand {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            z-index: 5;
            font-family: 'Inter', sans-serif;
            font-size: clamp(1.8rem, 4vw, 3rem);
            font-weight: 900;
            color: white;
            letter-spacing: -.02em;
            padding: 14px 38px;
            border: 2px solid rgba(255, 102, 0, .55);
            background: rgba(6, 10, 20, .88);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            box-shadow: 0 0 44px rgba(255, 102, 0, .22), inset 0 0 20px rgba(255, 102, 0, .06);
            white-space: nowrap;
        }

        /* Mission / Means content zones — above and below the Möbius ring */
        .msv-quad {
            position: absolute;
            z-index: 3;
            width: 44%;
            max-width: 520px;
        }

        .msv-quad-eye {
            font-size: .7rem;
            font-weight: 800;
            letter-spacing: .22em;
            color: var(--orange);
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .msv-quad h3 {
            font-size: clamp(1.15rem, 2.2vw, 1.65rem);
            font-weight: 900;
            color: #fff;
            line-height: 1.38;
            margin-bottom: 11px;
        }

        .msv-quad p {
            font-size: clamp(.82rem, 1.15vw, .97rem);
            color: rgba(255, 255, 255, .55);
            line-height: 1.88;
        }

        /* Top zone: Mission — sits above the Möbius loop */
        .msv-quad-tl {
            top: 5%;
            left: 3%;
        }

        .msv-quad-tr {
            top: 5%;
            right: 3%;
            text-align: right;
        }

        /* Bottom zone: Means — sits below the Möbius loop */
        .msv-quad-bl {
            bottom: 5%;
            left: 3%;
        }

        .msv-quad-br {
            bottom: 5%;
            right: 3%;
            text-align: right;
        }

        /* PC: wrapper is transparent — quads still position relative to .msv */
        .msv-quads {
            display: contents;
        }

        .svc-tagline {
            font-size: .98rem;
            font-weight: 800;
            color: var(--text);
            line-height: 1.45;
            margin-bottom: 10px;
            letter-spacing: -.01em;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1060px) {
            .hero-wrap {
                grid-template-columns: 1fr;
            }

            .hero-panel {
                display: none;
            }

            .phil-grid {
                grid-template-columns: 1fr;
                gap: 44px;
            }

            .svc-grid {
                grid-template-columns: 1fr 1fr;
            }

            .svc-grid .svc-card:nth-child(n+2) {
                margin-top: 0;
            }

            .mis-grid {
                grid-template-columns: 1fr;
            }

            .about-grid {
                grid-template-columns: 1fr;
            }

            .about-grid> :first-child {
                order: 2;
            }

            .about-grid> :last-child {
                order: 1;
            }

            .buzmedia-grid {
                grid-template-columns: 1fr;
            }

            .rec-grid {
                grid-template-columns: 1fr;
            }

            .foot-top {
                grid-template-columns: 1fr 1fr;
                gap: 36px;
            }

            /* mission visual: tighten quads at tablet */
            .msv-quad {
                max-width: 28%;
            }

            .msv-quad h3 {
                font-size: .88rem;
            }

            .msv-quad p {
                font-size: .72rem;
            }

            .msv-quad-eye {
                font-size: .6rem;
            }

        }

        @media (max-width: 620px) {

            /* mission visual: Möbius hidden → Buzzestry brand + 2×2 card grid */
            .msv {
                height: auto;
                min-height: 0;
                display: block;
                padding: 40px 0 0;
                overflow: visible;
            }

            .msv-svg,
            .msv-vline,
            .msv-hline,
            .msv-axis-t,
            .msv-axis-b {
                display: none;
            }

            .msv-brand {
                position: static;
                transform: none;
                display: block;
                margin: 0 auto 24px;
                text-align: center;
                font-size: 1.3rem;
                padding: 9px 22px;
                width: fit-content;
            }

            .msv-quads {
                display: grid;
                grid-template-columns: 1fr;
                width: 100%;
            }

            .msv-quad {
                position: static;
                width: auto;
                max-width: none;
                padding: 16px 12px;
                border: 1px solid rgba(255, 255, 255, .08);
            }

            .msv-quad h3 {
                font-size: .95rem;
                font-weight: 900;
                line-height: 1.35;
                margin-bottom: 7px;
            }

            .msv-quad p {
                font-size: .76rem;
                line-height: 1.65;
                color: rgba(255, 255, 255, .52);
            }

            .msv-quad-eye {
                font-size: .6rem;
                margin-bottom: 5px;
            }

            .msv-quad-tr,
            .msv-quad-br {
                text-align: left;
            }
        }

        @media (max-width: 640px) {
            .sec {
                padding: 64px 16px;
            }

            .svc-grid {
                grid-template-columns: 1fr;
            }

            .phil-right {
                grid-template-columns: 1fr;
            }

            .phil-card.wide {
                grid-column: span 1;
            }

            .hero-wrap {
                padding: calc(var(--nav-h) + 32px) 16px 60px;
            }

            .foot-top {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .foot-bot {
                flex-direction: column;
                text-align: center;
            }

            .cta-btns {
                flex-direction: column;
                align-items: center;
            }
        }

        /* ===== BUZ MEDIA ===== */
        .sec-buzmedia {
            background: var(--bg);
        }

        .buzmedia-lead {
            font-size: 1rem;
            color: var(--text-mid);
            max-width: 640px;
            margin: 0 auto 48px;
            line-height: 1.85;
            text-align: center;
        }

        .buzmedia-lead strong {
            color: var(--text);
        }

        .buzmedia-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }

        .buzmedia-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
            transition: box-shadow .3s, transform .3s;
        }

        .buzmedia-card:hover {
            box-shadow: 0 16px 48px rgba(0, 0, 0, .09);
            transform: translateY(-4px);
        }

        .yt-wrap {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
        }

        .yt-wrap iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        .yt-thumb-link {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: block;
            overflow: hidden;
        }

        .yt-thumb-link img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .35s ease;
        }

        .yt-thumb-link:hover img {
            transform: scale(1.04);
        }

        .yt-play-btn {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, .22);
            transition: background .25s;
        }

        .yt-thumb-link:hover .yt-play-btn {
            background: rgba(0, 0, 0, .42);
        }

        .yt-play-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255, 102, 0, .92);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 24px rgba(0, 0, 0, .35);
            transition: transform .25s;
            flex-shrink: 0;
        }

        .yt-thumb-link:hover .yt-play-icon {
            transform: scale(1.1);
        }

        .yt-play-icon::after {
            content: '';
            border-style: solid;
            border-width: 9px 0 9px 16px;
            border-color: transparent transparent transparent #fff;
            margin-left: 4px;
        }

        .buzmedia-card-body {
            padding: 20px 24px 24px;
        }

        .buzmedia-channel {
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: .1em;
            color: var(--orange);
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .buzmedia-card-body p {
            font-size: .875rem;
            color: var(--text-mid);
            line-height: 1.75;
        }

        /* Ecosystem section removed */

        /* Extracted from inline style attributes */
        .u-inline-001 {
            transition-delay: .15s;
        }

        .u-inline-002 {
            transition-delay: .05s;
        }

        .u-inline-003 {
            transition-delay: .12s;
        }

        .u-inline-004 {
            transition-delay: .19s;
        }

        .u-inline-005 {
            transition-delay: .1s;
        }

        .u-inline-006 {
            transition-delay: .2s;
        }

        .u-inline-007 {
            transition-delay: .08s;
        }

        .u-inline-008 {
            transition-delay: .18s;
        }