﻿:root {
    --cyan: #7df9ff;
    --purple: #b388ff;
    --pink: #ff5fa2;
    --bg: #000000;
    --ink: #e8eaf6;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; background: var(--bg); color: var(--ink);
    font-family: -apple-system, 'Helvetica Neue', 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    -webkit-font-smoothing: antialiased; cursor: none;
}
body { overflow-x: hidden; }

#scene {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: 0; display: block;
    opacity: var(--tunnel-opacity, 1);
    transition: opacity .6s ease;
}

#scroll-content { position: fixed; top: 0; left: 0; width: 100%; will-change: transform; z-index: 2; }

.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%); mix-blend-mode: difference;
}
.cursor-dot { width: 5px; height: 5px; background: #fff; border-radius: 50%; }
.cursor-ring { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%;
    transition: width .3s cubic-bezier(.2,.8,.2,1), height .3s, border-color .3s;
}
.cursor-ring.hover { width: 62px; height: 62px; border-color: var(--cyan); }

#loader { position: fixed; inset: 0; background: var(--bg); z-index: 10000;
    display: flex; align-items: center; justify-content: center; flex-direction: column;
    transition: opacity .9s ease, visibility .9s ease;
}
#loader .brand { font-size: 11px; letter-spacing: 8px; color: rgba(255,255,255,.5); text-transform: uppercase; }
#loader .bar { width: 220px; height: 1px; background: rgba(255,255,255,.08); position: relative; overflow: hidden; margin-top: 18px; }
#loader .bar::after { content:''; position:absolute; inset:0; background: linear-gradient(90deg, transparent, #fff, transparent); transform: translateX(-100%); animation: load 1.6s cubic-bezier(.6,.1,.2,1) forwards; }
@keyframes load { to { transform: translateX(100%); } }
#loader.hidden { opacity: 0; visibility: hidden; }

#intro { position: fixed; inset: 0; z-index: 9000;
    background: #000;
    overflow: hidden; display:flex; align-items:center; justify-content:center;
    transition: opacity 1.2s cubic-bezier(.2,.8,.2,1), transform 1.6s cubic-bezier(.2,.8,.2,1), filter 1.2s ease;
    animation: intro-auto-exit .8s cubic-bezier(.2,.8,.2,1) 4.25s forwards;
}
#intro iframe { width: 100%; height: 100%; border: 0; background: #000; display:block; pointer-events:none; }
#intro.tilt { transform: perspective(1200px) rotateX(72deg) translateY(-22%) scale(1.35); filter: blur(3px); opacity: 0; pointer-events: none; }
#intro.hidden { display:none; }
#intro .intro-brand-mini { position:absolute; left: 36px; bottom: 32px; z-index:2;
    font-size: 10px; letter-spacing: 5px; color: rgba(125,249,255,.55); text-transform: uppercase;
    display:flex; align-items:center; gap:10px; font-family: 'Courier New', monospace;
    opacity: 0; animation: mini-in 0.8s ease-out 0.4s forwards;
}
#intro .intro-brand-mini .dot { width:6px; height:6px; border-radius:50%; background:#00eaff;
    box-shadow: 0 0 8px #00eaff; animation: pulse 1.6s ease-in-out infinite; }
#intro .intro-tip { position:absolute; right: 36px; bottom: 32px; z-index:2;
    font-size: 10px; letter-spacing: 3px; color: rgba(255,255,255,.3); text-transform: uppercase;
    font-family: 'Courier New', monospace;
    opacity: 0; animation: mini-in 0.8s ease-out 0.4s forwards;
}
@keyframes mini-in { to { opacity: 1; } }
@keyframes intro-auto-exit {
    to {
        opacity: 0;
        pointer-events: none;
        transform: perspective(1200px) rotateX(72deg) translateY(-22%) scale(1.35);
        filter: blur(3px);
        visibility: hidden;
    }
}

#header { position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    display: flex; justify-content: space-between; align-items: center;
    padding: 26px 48px; pointer-events: none;
}
#header > * { pointer-events: auto; }
.brand-logo { font-size: 12px; letter-spacing: 4px; color: var(--ink); text-transform: uppercase; font-weight: 500; display:flex; align-items:center; gap:10px; }
.brand-logo::before { content:''; width:7px; height:7px; background: var(--cyan); border-radius:50%; box-shadow:0 0 10px var(--cyan); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:.9;} 50%{opacity:.35;} }
.nav-dots { display: flex; gap: 12px; align-items: center; }
.nav-dots .dot { width:6px; height:6px; border-radius:50%; background: rgba(255,255,255,.2); cursor:pointer; transition: all .3s ease; border: none; padding: 0; }
.nav-dots .dot.active { background: #fff; box-shadow: 0 0 10px rgba(255,255,255,.6); transform: scale(1.4); }
.nav-dots .dot:hover { background: rgba(255,255,255,.5); }
.menu-trigger,
.menu-close {
    appearance: none;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.28);
    color: rgba(255,255,255,.72);
    cursor: pointer;
}
.menu-trigger {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    gap: 0;
    position: relative;
}
.menu-trigger span {
    width: 18px;
    height: 1px;
    background: currentColor;
    display: block;
    transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.menu-trigger span + span { margin-top: -13px; }
.menu-trigger:hover span:first-child { transform: translateX(-4px); }
.menu-trigger:hover span:last-child { transform: translateX(4px); }

#menu-panel {
    position: fixed;
    inset: 0;
    z-index: 7000;
    background: rgba(0,0,0,.92);
    color: #fff;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .55s cubic-bezier(.2,.8,.2,1), visibility .55s;
}
#menu-panel.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.menu-bg-word {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%) scaleX(1.12);
    font-size: clamp(74px, 18vw, 260px);
    font-weight: 900;
    color: rgba(125,249,255,.055);
    letter-spacing: -.06em;
    white-space: nowrap;
    user-select: none;
}
.menu-close {
    position: absolute;
    right: 48px;
    top: 28px;
    padding: 12px 18px;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.menu-links {
    position: absolute;
    left: 8vw;
    right: 8vw;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    gap: 1px;
}
.menu-links a {
    min-height: 68px;
    display: grid;
    grid-template-columns: 60px 1fr auto;
    align-items: center;
    gap: 22px;
    text-decoration: none;
    color: rgba(255,255,255,.82);
    border-bottom: 1px solid rgba(255,255,255,.08);
    transform: translateY(24px);
    opacity: 0;
    transition: transform .6s cubic-bezier(.2,.8,.2,1), opacity .6s ease, color .35s ease, padding .35s ease;
}
#menu-panel.open .menu-links a {
    transform: translateY(0);
    opacity: 1;
}
#menu-panel.open .menu-links a:nth-child(2) { transition-delay: .04s; }
#menu-panel.open .menu-links a:nth-child(3) { transition-delay: .08s; }
#menu-panel.open .menu-links a:nth-child(4) { transition-delay: .12s; }
#menu-panel.open .menu-links a:nth-child(5) { transition-delay: .16s; }
#menu-panel.open .menu-links a:nth-child(6) { transition-delay: .20s; }
#menu-panel.open .menu-links a:nth-child(7) { transition-delay: .24s; }
.menu-links a:hover {
    color: #fff;
    padding-left: 20px;
}
.menu-links b {
    font-size: 11px;
    letter-spacing: 4px;
    color: rgba(125,249,255,.72);
    font-weight: 400;
}
.menu-links span {
    font-size: clamp(26px, 4.6vw, 64px);
    font-weight: 200;
    letter-spacing: -.03em;
}
.menu-links em {
    font-style: normal;
    font-size: 12px;
    color: rgba(255,255,255,.38);
    letter-spacing: 4px;
}

#chapter-rail {
    position: fixed;
    left: 38px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 45;
    display: grid;
    gap: 14px;
    justify-items: center;
    color: rgba(255,255,255,.45);
    pointer-events: none;
}
.chapter-num {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    color: rgba(125,249,255,.72);
}
.chapter-line {
    width: 1px;
    height: 104px;
    background: rgba(255,255,255,.12);
    overflow: hidden;
}
.chapter-line span {
    display: block;
    width: 100%;
    height: var(--chapter-progress, 0%);
    background: linear-gradient(180deg, var(--cyan), transparent);
}
.chapter-name {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 9px;
    letter-spacing: 5px;
}
#pointer-glow {
    position: fixed;
    left: 0;
    top: 0;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    opacity: .42;
    background: radial-gradient(circle, rgba(125,249,255,.12), rgba(179,136,255,.06) 34%, transparent 68%);
    transform: translate(-50%,-50%);
    mix-blend-mode: screen;
    filter: blur(6px);
}

#progress { position: fixed; top: 0; left: 0; height: 1px; width: 0%;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    z-index: 60; transition: width .15s linear;
}

#hud { position: fixed; top: 50%; right: 32px; transform: translateY(-50%); z-index: 40;
    font-size: 9px; letter-spacing: 3px; color: rgba(255,255,255,.4); text-transform: uppercase;
    writing-mode: vertical-rl; text-orientation: sideways;
}
#hud .hud-line { display: inline-flex; align-items: center; gap: 10px; }
#hud .hud-bar { width: 40px; height: 1px; background: rgba(255,255,255,.15); position: relative; display: inline-block; margin: 0 10px; }
#hud .hud-bar::after { content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); transition: width .2s linear; }

.section { position: relative; width: 100%; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    padding: 0 8vw; pointer-events: none;
}
.section > * { pointer-events: auto; }
.reveal {
    opacity: 0;
    transform: translate3d(var(--px,0), calc(30px + var(--py,0)), 0) skewY(var(--skew,0deg));
    transition: opacity 1.2s cubic-bezier(.2,.8,.2,1), transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.reveal.in {
    opacity: var(--text-op, 1);
    transform: translate3d(var(--px,0), var(--py,0), 0) skewY(var(--skew,0deg));
}
[data-text-parallax] {
    will-change: transform, opacity, letter-spacing;
}
[data-text-parallax="hero"],
[data-text-parallax="title"],
[data-text-parallax="quote"] {
    letter-spacing: var(--track, 0);
}

.tag { font-size: 10px; letter-spacing: 6px; color: rgba(255,255,255,.4); text-transform: uppercase; margin-bottom: 24px; display:inline-flex; align-items:center; gap:10px; }
.tag::before { content:''; width: 28px; height: 1px; background: rgba(255,255,255,.4); }

.hero { flex-direction: column; text-align: center; height: 100vh; }
.hero .pretitle { font-size: 11px; letter-spacing: 10px; color: rgba(255,255,255,.4); text-transform: uppercase; margin-bottom: 28px; }
.hero h1 { font-size: clamp(40px, 7.2vw, 112px); font-weight: 200; letter-spacing: -.02em; line-height: .95; color: #fff; margin-bottom: 22px; }
.hero h1 .accent { background: linear-gradient(135deg, #fff, #aab0d1 60%, #7df9ff); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 300; }
.hero .subtitle { font-size: 15px; color: rgba(255,255,255,.5); max-width: 560px; line-height: 1.75; margin-bottom: 44px; margin-left:auto; margin-right:auto; }
.hero-cta { display: inline-flex; align-items:center; gap:10px; font-size:10px; letter-spacing:4px; color:rgba(255,255,255,.5); text-transform:uppercase; }
.hero-cta .line { width:22px; height:1px; background: rgba(255,255,255,.5); }

.ecosystem { justify-content: flex-start; background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.18)); }
.eco-inner { width: 40%; max-width: 480px; }
.eco-inner h2 { font-size: clamp(28px, 3.6vw, 52px); font-weight: 200; line-height: 1.1; letter-spacing: -.015em; color: #fff; margin-bottom: 26px; }
.eco-inner h2 em { font-style: normal; color: var(--cyan); font-weight: 300; }
.eco-inner p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.55); margin-bottom: 32px; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); }
.stat { padding: 22px 20px; background: rgba(0,0,0,.7); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.stat .num { font-size: 30px; font-weight: 200; line-height: 1; margin-bottom: 6px; color: #fff; letter-spacing: -.02em; }
.stat .label { font-size: 9px; letter-spacing: 3px; color: rgba(255,255,255,.4); text-transform: uppercase; }

.products { justify-content: flex-end; background: linear-gradient(270deg, rgba(0,0,0,.78), rgba(0,0,0,.16)); }
.products-inner { width: 42%; max-width: 500px; }
.products-inner h2 { font-size: clamp(28px, 3.6vw, 52px); font-weight: 200; line-height: 1.1; letter-spacing: -.015em; color: #fff; margin-bottom: 30px; }
.products-inner h2 em { font-style: normal; color: var(--cyan); font-weight: 300; }
.product-list { display: flex; flex-direction: column; }
.product-row { display: flex; align-items: center; gap: 14px;
    padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08);
    text-decoration: none; color: var(--ink);
    transition: padding .45s cubic-bezier(.2,.8,.2,1);
    position: relative;
}
.product-row::before { content: ''; position: absolute; left: 0; bottom: -1px; width: 0; height: 1px;
    background: var(--cyan); transition: width .55s cubic-bezier(.2,.8,.2,1);
}
.product-row:hover { padding-left: 14px; }
.product-row:hover::before { width: 100%; }
.product-row .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); transition: all .4s ease; flex-shrink: 0; }
.product-row:hover .dot { box-shadow: 0 0 12px var(--cyan); transform: scale(1.4); }
.product-row .idx { font-size: 10px; letter-spacing: 2px; color: rgba(255,255,255,.35); min-width: 22px; }
.product-row .body { flex: 1; }
.product-row .name { font-size: 16px; font-weight: 300; color: #fff; margin-bottom: 3px; }
.product-row .desc { font-size: 11px; color: rgba(255,255,255,.45); line-height: 1.5; }
.product-row .arrow { width: 22px; height: 22px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; transition: all .45s cubic-bezier(.2,.8,.2,1); flex-shrink: 0; }
.product-row:hover .arrow { background: #fff; border-color: #fff; transform: rotate(-45deg); }
.product-row:hover .arrow svg path { stroke: #000; }
.product-row .arrow svg { width: 9px; height: 9px; }
.service-inspector {
    position: absolute;
    left: 8vw;
    top: 50%;
    width: min(34vw, 420px);
    min-width: 300px;
    transform: translateY(-50%);
    padding: 26px;
    border: 1px solid rgba(125,249,255,.18);
    background:
        linear-gradient(135deg, rgba(125,249,255,.08), transparent 36%),
        rgba(0,0,0,.42);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 0 48px rgba(125,249,255,.08);
}
.inspector-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    color: rgba(125,249,255,.68);
    margin-bottom: 28px;
}
.inspector-top i {
    width: 42px;
    height: 1px;
    background: var(--cyan);
    box-shadow: 0 0 14px var(--cyan);
}
.service-inspector h3 {
    color: #fff;
    font-size: clamp(22px, 2.2vw, 34px);
    font-weight: 300;
    margin-bottom: 12px;
}
.service-inspector p {
    color: rgba(255,255,255,.55);
    line-height: 1.8;
    font-size: 13px;
}
.inspector-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin: 26px 0;
}
.inspector-grid span {
    height: 46px;
    border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(180deg, rgba(125,249,255,.12), transparent);
    transform: scaleY(var(--scan-scale, .45));
    transform-origin: bottom;
    transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.service-inspector.hot .inspector-grid span:nth-child(1) { --scan-scale: .72; }
.service-inspector.hot .inspector-grid span:nth-child(2) { --scan-scale: 1; }
.service-inspector.hot .inspector-grid span:nth-child(3) { --scan-scale: .58; }
.service-inspector.hot .inspector-grid span:nth-child(4) { --scan-scale: .86; }
.inspector-readout {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 14px;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    color: rgba(255,255,255,.45);
}
.inspector-readout span { color: var(--cyan); }

.matrix {
    justify-content: space-between;
    gap: 8vw;
    background: radial-gradient(circle at 70% 50%, rgba(179,136,255,.10), transparent 42%), rgba(0,0,0,.58);
}
.matrix-copy {
    width: min(38vw, 470px);
}
.matrix-copy h2,
.lab-head h2 {
    font-size: clamp(30px, 4vw, 58px);
    color: #fff;
    font-weight: 200;
    line-height: 1.08;
    margin-bottom: 24px;
}
.matrix-copy h2 em,
.lab-head h2 em {
    font-style: normal;
    color: var(--cyan);
    font-weight: 300;
}
.matrix-copy p {
    color: rgba(255,255,255,.55);
    line-height: 1.85;
    font-size: 14px;
}
.matrix-board {
    width: min(46vw, 620px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    perspective: 900px;
}
.matrix-card {
    min-height: 190px;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.035);
    position: relative;
    overflow: hidden;
    transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s ease, background .35s ease;
}
.matrix-card::after,
.lab-cell::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(120deg, transparent, rgba(125,249,255,.16), transparent);
    transform: translateX(-120%);
    transition: transform .65s cubic-bezier(.2,.8,.2,1);
}
.matrix-card:hover,
.lab-cell:hover {
    border-color: rgba(125,249,255,.48);
    background: rgba(125,249,255,.055);
}
.matrix-card:hover::after,
.lab-cell:hover::after { transform: translateX(120%); }
.matrix-card span {
    font-family: 'Courier New', monospace;
    font-size: 10px;
    letter-spacing: 4px;
    color: rgba(125,249,255,.68);
}
.matrix-card b {
    display: block;
    margin: 34px 0 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 300;
}
.matrix-card p {
    color: rgba(255,255,255,.46);
    font-size: 12px;
    line-height: 1.7;
}
.lab {
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(0,0,0,.50), rgba(0,0,0,.72));
}
.lab-head {
    width: min(84vw, 1120px);
    margin: 0 auto 46px;
}
.lab-strip {
    width: min(84vw, 1120px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, minmax(0,1fr));
    border-left: 1px solid rgba(255,255,255,.09);
}
.lab-cell {
    min-height: 260px;
    border: 1px solid rgba(255,255,255,.09);
    border-left: 0;
    padding: 22px;
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,.026);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s ease, background .35s ease;
}
.lab-cell b {
    color: rgba(255,255,255,.92);
    font-size: clamp(22px, 3vw, 44px);
    font-weight: 200;
    letter-spacing: -.03em;
}
.lab-cell span {
    color: rgba(255,255,255,.38);
    font-size: 12px;
    letter-spacing: 3px;
}

.ring-layer { position: fixed; inset: 0; z-index: 3; pointer-events: none; opacity: var(--tunnel-label-opacity, 1); transition: opacity .5s ease; }
.ring-label {
    position: absolute; top: 0; left: 0;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    transition: opacity .5s ease;
    will-change: transform, opacity;
}
.ring-label .rl-idx { font-size: 9px; letter-spacing: 6px; color: rgba(255,255,255,.5); text-transform: uppercase; margin-bottom: 10px; }
.ring-label .rl-title { font-size: clamp(22px, 2.4vw, 36px); font-weight: 200; color: #fff; letter-spacing: -.01em; }
.ring-label .rl-title em { font-style: normal; color: var(--cyan); font-weight: 300; }
.ring-label .rl-sub { font-size: 10px; letter-spacing: 3px; color: rgba(255,255,255,.35); text-transform: uppercase; margin-top: 10px; }

.philo { flex-direction: column; text-align: center; background: rgba(0,0,0,.52); }
.philo .mark { font-size: 10px; letter-spacing: 8px; color: rgba(255,255,255,.3); text-transform: uppercase; margin-bottom: 42px; }
.philo .quote { font-size: clamp(26px, 3.6vw, 52px); font-weight: 200; line-height: 1.3; max-width: 1000px; letter-spacing: -.01em; color: rgba(255,255,255,.95); }
.philo .quote span { color: rgba(255,255,255,.35); }
.philo .quote em { font-style: normal; color: var(--cyan); font-weight: 300; }
.philo .attrib { margin-top: 46px; font-size: 10px; letter-spacing: 5px; color: rgba(255,255,255,.3); text-transform: uppercase; }

.contact { flex-direction: column; text-align: center; background: rgba(0,0,0,.74); }
.contact .small { font-size: 10px; letter-spacing: 8px; color: rgba(255,255,255,.3); text-transform:uppercase; margin-bottom: 26px; }
.contact h2 { font-size: clamp(32px, 4.2vw, 60px); font-weight: 200; line-height: 1.08; letter-spacing: -.015em; color: #fff; margin-bottom: 32px; }
.contact h2 span { color: var(--cyan); font-weight: 300; }
.contact .sub { font-size: 14px; color: rgba(255,255,255,.5); max-width: 520px; line-height: 1.75; margin: 0 auto 48px; }
.contact-ways { display: flex; gap: 48px; justify-content: center; margin-bottom: 52px; flex-wrap: wrap; }
.contact-way b { display:block; font-size:9px; letter-spacing:4px; color: rgba(255,255,255,.3); margin-bottom:8px; font-weight: 400; text-transform: uppercase; }
.contact-way span { color: #fff; font-size: 16px; letter-spacing: .5px; font-weight: 300; }
#links { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.link-btn { display: inline-flex; align-items: center; gap: 12px;
    padding: 12px 22px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,.85); text-decoration: none;
    border: 1px solid rgba(255,255,255,.15); background: transparent;
    transition: all .4s cubic-bezier(.2,.8,.2,1);
}
.link-btn:hover { color: #000; background: #fff; border-color: #fff; }
.link-btn .arrow { display:inline-block; width:14px; height:1px; background:currentColor; position:relative; transition: width .4s ease; }
.link-btn .arrow::after { content:''; position:absolute; right:-1px; top:-3px; width:7px; height:7px; border-top:1px solid currentColor; border-right:1px solid currentColor; transform: rotate(45deg); }
.link-btn:hover .arrow { width: 22px; }

.scroll-hint { position: fixed; bottom: 44px; left: 50%; transform: translateX(-50%);
    font-size: 10px; letter-spacing: 4px; color: rgba(255,255,255,.3); text-transform: uppercase;
    z-index: 40; display: flex; flex-direction: column; align-items: center; gap: 10px;
    transition: opacity .6s ease;
}
.scroll-hint .line { width: 1px; height: 34px; background: linear-gradient(180deg, rgba(255,255,255,.5), transparent); animation: scroll-line 2.4s ease-in-out infinite; }
@keyframes scroll-line { 0%,100%{transform:scaleY(.4); transform-origin:top;} 50%{transform:scaleY(1);} }
.scroll-hint.hidden { opacity: 0; pointer-events: none; }

#footer { position: relative;
    padding: 30px 48px; font-size: 10px; letter-spacing: 2px; color: rgba(255,255,255,.3);
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid rgba(255,255,255,.06); background: #000;
}
#footer a { color: inherit; text-decoration: none; transition: color .3s; }
#footer a:hover { color: #fff; }

/* ============================================================
   NEW 鈥?TOYOKOH: 澶у瓧鎺掔増瑙嗗樊灞?   澶у瓧浠ヤ笉鍚岄€熺巼妯悜婕傜Щ锛屽舰鎴愭櫙娣辨劅
   ============================================================ */
#plx-layer {
    position: fixed; inset: 0; pointer-events: none; z-index: 1; overflow: hidden;
}
.plx-w {
    position: absolute;
    font-size: clamp(64px, 14vw, 210px);
    font-weight: 900;
    letter-spacing: -.05em;
    color: rgba(255,255,255,0.024);
    text-transform: uppercase;
    user-select: none;
    will-change: transform;
    line-height: 1;
    white-space: nowrap;
}
.plx-w.sm {
    font-size: clamp(22px, 4vw, 58px);
    color: rgba(125,249,255,0.045);
    font-weight: 700;
    letter-spacing: 0.18em;
}

#toyokoh-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.brand-split {
    position: absolute;
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: clamp(10px, 2vw, 28px);
    font-size: clamp(62px, 16vw, 230px);
    font-weight: 900;
    line-height: .8;
    letter-spacing: 0;
    color: rgba(255,255,255,.085);
    text-transform: uppercase;
    white-space: nowrap;
    mix-blend-mode: screen;
}
.brand-split span {
    display: inline-block;
    transform: translate3d(var(--tx,0), var(--ty,0), 0) rotate(var(--rot,0));
    transition: color .4s ease;
    will-change: transform;
}
.media-stage {
    position: absolute;
    width: clamp(130px, 18vw, 260px);
    aspect-ratio: 4 / 5;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.035);
    overflow: hidden;
    opacity: .22;
    transform: translate3d(0, 40px, 0) rotate(var(--r,0deg));
    transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1);
    will-change: transform, opacity;
}
.media-stage.in {
    opacity: .92;
}
.media-stage::before,
.media-stage::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border-color: rgba(125,249,255,.45);
    border-style: solid;
    z-index: 2;
}
.media-stage::before {
    left: 10px;
    top: 10px;
    border-width: 1px 0 0 1px;
}
.media-stage::after {
    right: 10px;
    bottom: 10px;
    border-width: 0 1px 1px 0;
}
.media-ph {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(125,249,255,.22), rgba(179,136,255,.14) 46%, rgba(255,95,162,.18)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 18px);
    filter: saturate(1.2);
}
.media-ph::after {
    content: '';
    position: absolute;
    inset: 14%;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.28);
    box-shadow: 0 0 40px rgba(125,249,255,.18) inset;
}
.media-stage span {
    position: absolute;
    left: 16px;
    bottom: 14px;
    z-index: 3;
    font-family: 'Courier New', monospace;
    font-size: 9px;
    letter-spacing: 2px;
    color: rgba(255,255,255,.65);
}
.media-a { left: 7vw; top: 18vh; --r: -7deg; }
.media-b { right: 8vw; top: 16vh; --r: 6deg; }
.media-c { left: 13vw; bottom: 10vh; --r: 5deg; }
.media-d { right: 13vw; bottom: 12vh; --r: -5deg; }

/* ============================================================
   NEW 鈥?KASANE: 鎶€鏈摑鍥炬壂鎻忓彔鍔犲眰
   浜у搧鍖烘粴鍔ㄥ埌鏃舵樉鐜帮紝妯℃嫙绮惧瘑浠櫒鐣岄潰
   ============================================================ */
#scan-overlay {
    position: fixed; inset: 0; pointer-events: none; z-index: 2;
    opacity: 0; transition: opacity .8s cubic-bezier(.2,.8,.2,1);
}
#scan-overlay.vis { opacity: 1; }
.scan-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(125,249,255,0.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(125,249,255,0.026) 1px, transparent 1px);
    background-size: 54px 54px;
}
.scan-sweep {
    position: absolute; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent 4%, rgba(125,249,255,.10) 28%,
        rgba(125,249,255,.28) 50%, rgba(125,249,255,.10) 72%, transparent 96%);
    animation: ssweep 5s linear infinite;
}
@keyframes ssweep { from { top: -2px; } to { top: 100%; } }
.scan-ch {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 68px; height: 68px;
}
.scan-ch::before, .scan-ch::after {
    content: ''; position: absolute; background: rgba(125,249,255,.3);
}
.scan-ch::before { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.scan-ch::after  { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }
.scan-ring {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 44px; height: 44px;
    border: 1px solid rgba(125,249,255,.28);
    border-radius: 50%;
    animation: spulse 2.6s ease-in-out infinite;
}
@keyframes spulse { 0%,100%{opacity:.4;transform:translate(-50%,-50%) scale(1);}
    50%{opacity:.85;transform:translate(-50%,-50%) scale(1.14);} }
.scan-c { position:absolute; width:20px; height:20px; border-color:rgba(125,249,255,.5); border-style:solid; }
.scan-c.tl{top:14px;left:14px;border-width:1px 0 0 1px;}
.scan-c.tr{top:14px;right:14px;border-width:1px 1px 0 0;}
.scan-c.bl{bottom:14px;left:14px;border-width:0 0 1px 1px;}
.scan-c.br{bottom:14px;right:14px;border-width:0 1px 1px 0;}
.scan-info {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 9px; letter-spacing: 2px;
    color: rgba(125,249,255,.4); text-transform: uppercase; line-height: 1.9;
}
.scan-info.tl{top:42px;left:14px;}
.scan-info.tr{top:42px;right:14px;text-align:right;}
.scan-info.bl{bottom:42px;left:14px;}
.scan-info.br{bottom:42px;right:14px;text-align:right;}

/* ============================================================
   NEW 鈥?楂橀€熸粴鍔ㄦ椂瑙﹀彂鐭殏鎵弿绾块棯鐑侊紙mokn.io 椋庢牸锛?   ============================================================ */
#glitch-flash {
    position: fixed; inset: 0; pointer-events: none; z-index: 8000;
    opacity: 0; mix-blend-mode: screen;
    background: repeating-linear-gradient(
        0deg,
        transparent, transparent 2px,
        rgba(125,249,255,.035) 2px, rgba(125,249,255,.035) 4px
    );
    transition: opacity .06s ease;
}
#glitch-flash.on { opacity: 1; }

@media (max-width: 900px) {
    #header { padding: 18px 22px; }
    .section { padding: 0 6vw; }
    .ecosystem, .products { justify-content: center; }
    .eco-inner, .products-inner { width: 100%; max-width: none; }
    .service-inspector { display: none; }
    .matrix { flex-direction: column; justify-content: center; gap: 36px; }
    .matrix-copy, .matrix-board { width: 100%; }
    .lab-strip { grid-template-columns: 1fr; border-left: 0; }
    .lab-cell { min-height: 120px; border-left: 1px solid rgba(255,255,255,.09); }
    #chapter-rail { display: none; }
    #footer { padding: 22px; flex-direction: column; gap: 8px; font-size: 9px; }
    #hud { display: none; }
    html, body { cursor: auto; }
    .cursor-dot, .cursor-ring, #pointer-glow { display: none; }
    .scroll-hint { display: none; }
    .contact-ways { gap: 28px; }
    #plx-layer { display: none; }
    .menu-close { right: 22px; top: 20px; }
    .menu-links { left: 7vw; right: 7vw; }
    .menu-links a { grid-template-columns: 44px 1fr; min-height: 58px; }
    .menu-links em { display: none; }
}
@media (max-width: 560px) {
    .nav-dots { display: none; }
    .link-btn { padding: 10px 16px; font-size: 9px; }
    .matrix-board { grid-template-columns: 1fr; }
}
