:root {
  --bg: #08090a;
  --surface: #101113;
  --surface-2: #151619;
  --text: #f1f1ed;
  --muted: #989a9a;
  --line: rgba(255,255,255,.13);
  --accent: #d2a86e;
  --acid: #d8ff6a;
  --radius: 28px;
  --ease: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
::selection { color: #090a0b; background: var(--acid); }

.intro { position: fixed; inset: 0; z-index: 100; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #08090a; background-image: radial-gradient(120% 70% at 50% 35%, rgba(210,168,110,0.14), transparent 60%); transition: opacity 1.1s var(--ease), visibility 1.1s; }
.intro.done { opacity: 0; visibility: hidden; pointer-events: none; }
.intro .stage { perspective: 900px; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.intro .caption { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: #83868E; font-weight: 600; font-family: monospace; }
.intro .logo { display: flex; gap: 0.04em; font-weight: 800; font-size: clamp(100px, 22vw, 220px); line-height: 1; letter-spacing: -0.04em; }
.intro .logo span { display: inline-block; transform-style: preserve-3d; color: #121317; text-shadow: 0 0 26px rgba(222,227,238,0.78), 0 0 62px rgba(196,206,228,0.48), 0 0 2px rgba(255,255,255,0.55); will-change: transform; }
.intro .logo.glow span { animation: intro-glow 3.4s ease-in-out infinite; }
@keyframes intro-glow {
  0%,100% { text-shadow: 0 0 24px rgba(222,227,238,0.7), 0 0 56px rgba(196,206,228,0.42), 0 0 2px rgba(255,255,255,0.5); }
  50% { text-shadow: 0 0 34px rgba(228,233,244,0.92), 0 0 78px rgba(204,214,236,0.6), 0 0 3px rgba(255,255,255,0.7); }
}
.scroll-progress { position: fixed; z-index: 40; right: 8px; top: 50%; width: 2px; height: 90px; transform: translateY(-50%); background: rgba(255,255,255,.12); }
.scroll-progress i { display: block; width: 100%; height: var(--scroll,0%); background: var(--acid); box-shadow: 0 0 8px var(--acid); }

.noise {
  position: fixed; inset: 0; z-index: 20; pointer-events: none; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.cursor-light {
  position: fixed; z-index: 0; width: 520px; height: 520px; border-radius: 50%; pointer-events: none;
  left: var(--mouse-x, 50%); top: var(--mouse-y, 20%); transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(210,168,110,.09), transparent 68%);
}
.custom-cursor { position: fixed; z-index: 95; left: 0; top: 0; width: 0; height: 0; pointer-events: none; mix-blend-mode: difference; opacity: 0; transition: opacity .2s; }
.custom-cursor.visible { opacity: 1; }
.custom-cursor i { position: absolute; width: 7px; height: 7px; left: -3.5px; top: -3.5px; border-radius: 50%; background: #fff; }
.custom-cursor span { position: absolute; width: 42px; height: 42px; left: -21px; top: -21px; border: 1px solid rgba(255,255,255,.8); border-radius: 50%; transition: width .35s var(--ease),height .35s var(--ease),left .35s var(--ease),top .35s var(--ease),background .35s; }
.custom-cursor b { position: absolute; left: 0; top: 0; display: grid; place-content: center; width: 0; height: 0; overflow: hidden; border-radius: 50%; color: #000; background: #fff; font: 800 8px monospace; letter-spacing: .08em; opacity: 0; transition: .35s var(--ease); }
.custom-cursor.active span { width: 56px; height: 56px; left: -28px; top: -28px; background: transparent; }
.custom-cursor.active i { opacity: 0; }.custom-cursor.active b { left: 34px; top: -10px; width: 52px; height: 20px; opacity: 1; border-radius: 99px; }
.site-header {
  position: fixed; z-index: 15; top: 18px; left: 50%; transform: translateX(-50%);
  width: min(1420px, calc(100% - 36px)); height: 72px; padding: 0 18px 0 26px;
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid var(--line); border-radius: 24px;
  background: rgba(12,13,15,.68); backdrop-filter: blur(22px); transition: .4s var(--ease);
}
.site-header.compact { height: 60px; top: 10px; background: rgba(10,11,12,.88); }
.brand { display: flex; align-items: center; gap: 9px; font-size: 25px; font-weight: 800; letter-spacing: -.07em; }
.brand i { width: 6px; height: 6px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 12px var(--acid); }
nav { display: flex; gap: clamp(18px, 3vw, 48px); }
nav a { color: #c5c6c4; font-size: 13px; transition: color .25s; }
nav a:hover { color: var(--text); }
.header-cta {
  display: flex; align-items: center; gap: 36px; padding: 14px 18px 14px 22px; border-radius: 14px;
  color: #090a0b; background: var(--text); font-size: 13px; font-weight: 650;
}
.header-cta span { font-size: 18px; }
.menu-button { display: none; border: 0; background: transparent; padding: 12px; }
.menu-button span { display: block; width: 22px; height: 1px; margin: 5px; background: var(--text); }

.hero { position: relative; min-height: 100svh; padding: 170px max(5vw, 28px) 90px; overflow: hidden; }
.hero-glow { position: absolute; width: 60vw; height: 60vw; right: -24vw; top: -25vw; border-radius: 50%; background: radial-gradient(circle, rgba(210,168,110,.15), transparent 66%); pointer-events: none; }
.eyebrow, .section-index { color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: .2em; }
.live-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin-right: 10px; background: var(--acid); box-shadow: 0 0 0 5px rgba(216,255,106,.09); }
.hero h1 { position: relative; z-index: 2; width: min(680px, 58vw); margin: 54px 0 0; font-size: clamp(64px, 9.5vw, 158px); line-height: .84; letter-spacing: -.075em; font-weight: 650; }
.metal { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.55); background: linear-gradient(105deg,#5c5144 0%,#eee1c7 35%,#9b7650 57%,#4a4036 100%); background-size: 200% auto; background-clip: text; -webkit-background-clip: text; animation: metal 7s linear infinite; }
@keyframes metal { to { background-position: 200% center; } }
.hero-bottom { position: relative; z-index: 3; width: min(520px,50vw); display: flex; flex-direction: column; align-items: stretch; gap: 34px; margin-top: 62px; }
.hero-bottom p { width: min(500px, 50vw); margin: 0; color: #b7b9b8; font-size: clamp(17px, 1.4vw, 22px); line-height: 1.55; }
.round-link { width: 100%; padding: 0 0 14px; border: 0; border-bottom: 1px solid rgba(255,255,255,.34); display: flex; align-items: center; justify-content: space-between; color: #d9dad7; background: transparent; font: 700 10px/1 monospace; letter-spacing: .12em; transition: color .35s,border-color .35s,padding .35s var(--ease); }
.round-link b { color: var(--accent); font-size: 11px; font-weight: 700; transition: transform .35s var(--ease); }
.round-link:hover { color: var(--acid); border-color: var(--acid); padding-left: 9px; padding-right: 9px; }
.round-link:hover b { color: var(--acid); transform: translate(3px,3px); }
.hero-object { position: absolute; z-index: 1; width: min(48vw, 680px); aspect-ratio: 1; right: 4vw; top: 16vh; perspective: 1200px; pointer-events: none; }
.hero-canvas { width: 100%; height: 100%; display: block; filter: drop-shadow(0 20px 50px rgba(0,0,0,0.6)); }
.orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .4; animation: drift 9s ease-in-out infinite alternate; }
.orb-one { width: 45%; height: 45%; right: 10%; top: 16%; background: #91663d; }
.orb-two { width: 32%; height: 32%; left: 12%; bottom: 16%; background: #3c5134; animation-delay: -4s; }
@keyframes drift { to { transform: translate3d(35px,-20px,0) scale(1.15); } }
.object-ring { position: absolute; inset: 15%; border: 1px solid rgba(255,255,255,.19); border-radius: 50%; box-shadow: inset 0 0 80px rgba(255,255,255,.03); }
.ring-one { animation: spin 16s linear infinite; border-left-color: var(--accent); border-right-color: transparent; }
.ring-two { inset: 27%; animation: spin 10s linear infinite reverse; border-top-color: var(--acid); border-bottom-color: transparent; }
@keyframes spin { to { transform: rotate(360deg); } }
.object-core { position: absolute; inset: 37%; border-radius: 50%; display: grid; place-content: center; text-align: center; background: radial-gradient(circle at 38% 30%,#575a59,#17191b 45%,#050506 75%); box-shadow: 0 30px 80px #000, inset 0 0 0 1px rgba(255,255,255,.18); animation: float 5s ease-in-out infinite; }
.object-core span { font-size: clamp(34px,5vw,78px); font-weight: 800; letter-spacing: -.09em; }
.object-core small { font-size: 7px; letter-spacing: .14em; color: #aaa; }
@keyframes float { 50% { transform: translateY(-12px) rotate(3deg); } }
.float-label { position: absolute; z-index: 3; padding: 10px 14px; border: 1px solid var(--line); border-radius: 99px; background: rgba(9,10,11,.75); backdrop-filter: blur(10px); font: 600 9px/1 monospace; letter-spacing: .08em; color: #c9cac8; }
.label-one { right: 0; top: 31%; }.label-two { left: 1%; bottom: 24%; }
.float-label i { display: inline-block; width: 5px; height: 5px; margin-right: 7px; border-radius: 50%; background: var(--acid); }
.signal-card { position: absolute; z-index: 4; right: 2%; bottom: 8%; width: 240px; padding: 14px; border: 1px solid rgba(255,255,255,.17); border-radius: 12px; background: rgba(8,9,10,.73); backdrop-filter: blur(16px); box-shadow: 0 22px 60px rgba(0,0,0,.45); font-family: monospace; animation: signal-float 6s ease-in-out infinite; }
.signal-card > div { display: flex; justify-content: space-between; color: #868986; font-size: 8px; letter-spacing: .09em; }.signal-card > div i { color: var(--acid); font-style: normal; }
.signal-card p { margin: 14px 0 10px; color: #d5d6d3; font-size: 9px; }.signal-card b { display: flex; gap: 5px; }.signal-card b em { flex: 1; height: 3px; border-radius: 2px; background: var(--accent); animation: signal 1.8s infinite alternate; }.signal-card b em:nth-child(2){animation-delay:.2s}.signal-card b em:nth-child(3){animation-delay:.4s}.signal-card b em:nth-child(4){animation-delay:.6s}.signal-card b em:nth-child(5){animation-delay:.8s}
@keyframes signal { from { opacity: .15; transform: scaleY(.5); } to { opacity: 1; transform: scaleY(1.6); } }
@keyframes signal-float { 50% { transform: translateY(-9px); } }
.hero-marquee { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 0; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #898b89; }
.hero-marquee div { display: flex; width: max-content; gap: 24px; animation: marquee 25s linear infinite; font: 600 11px/1 monospace; letter-spacing: .16em; }
.hero-marquee i { color: var(--accent); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.proof-strip { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3,1fr); min-height: 250px; border-bottom: 1px solid var(--line); overflow: hidden; }
.proof-item { position: relative; z-index: 2; padding: 38px max(3vw,22px); display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); background: rgba(8,9,10,.76); backdrop-filter: blur(10px); }
.proof-item span { font-size: clamp(52px,7vw,110px); line-height: 1; font-weight: 650; letter-spacing: -.075em; }.proof-item:first-child span { color: var(--acid); }
.proof-item p { margin: 25px 0 0; color: #8e918f; font: 600 9px/1.5 monospace; letter-spacing: .08em; text-transform: uppercase; }
.proof-code { position: absolute; left: 0; bottom: -4vw; color: rgba(255,255,255,.025); font-size: 11vw; font-weight: 900; letter-spacing: -.08em; white-space: nowrap; }

.section-pad { position: relative; padding: 150px max(5vw, 28px); }
.manifest { min-height: 86vh; display: grid; grid-template-columns: 1fr 4fr 1fr; align-items: start; gap: 4vw; border-bottom: 1px solid var(--line); }
.manifest-text { max-width: 1050px; margin: 0; font-size: clamp(43px, 6vw, 94px); line-height: 1.03; letter-spacing: -.055em; }
.manifest-text em { color: var(--accent); font-style: normal; }
.manifest-note { align-self: end; padding-left: 14px; border-left: 1px solid var(--acid); color: #9da09d; font: 600 10px/1.6 monospace; letter-spacing: .08em; }
.section-head { display: grid; grid-template-columns: 1fr 4fr 1fr; gap: 4vw; align-items: start; margin-bottom: 90px; }
.section-head h2 { grid-column: 2; max-width: 1000px; margin: 0; font-size: clamp(54px, 7.2vw, 118px); line-height: .92; letter-spacing: -.065em; font-weight: 590; }
.service-list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: .7fr 2.2fr 1.5fr auto; gap: 30px; align-items: center; min-height: 160px; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; transition: padding .45s var(--ease), color .3s; }
.service-row::before { content: ""; position: absolute; inset: 0; background: var(--text); transform: translateY(102%); transition: transform .5s var(--ease); }
.service-row::after { content: attr(data-word); position: absolute; z-index: 0; right: 7%; top: 50%; color: rgba(0,0,0,.045); font-size: clamp(80px,12vw,190px); font-weight: 900; letter-spacing: -.09em; transform: translateY(-42%) translateX(30px); opacity: 0; transition: .55s var(--ease); }
.service-row:hover::before, .service-row:focus::before { transform: none; }
.service-row:hover::after,.service-row:focus::after { transform: translateY(-50%); opacity: 1; }
.service-row:hover, .service-row:focus { color: #0a0b0c; padding: 0 20px; outline: 0; }
.service-row > * { position: relative; z-index: 1; }
.service-num { color: var(--accent); font: 600 11px monospace; }
.service-row h3 { margin: 0; font-size: clamp(24px, 3vw, 48px); letter-spacing: -.04em; font-weight: 550; }
.service-row p { margin: 0; max-width: 440px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.service-row:hover p, .service-row:focus p { color: #454746; }
.service-icon { width: 58px; height: 58px; display: grid; place-content: center; border: 1px solid var(--line); border-radius: 50%; font-size: 24px; transform: rotate(45deg); transition: transform .5s var(--ease); }
.service-row:hover .service-icon, .service-row:focus .service-icon { transform: none; border-color: #0a0b0c; }

.work { background: #eeeee9; color: #0a0b0c; }
.work .section-index { color: #80603e; }
.work .section-head { margin-bottom: 70px; }
.projects { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.project { display: block; }
.project:nth-child(3), .project:nth-child(4) { grid-column: 1 / -1; }
.project-meta, .project-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 13px 2px; font: 650 9px/1.2 monospace; letter-spacing: .09em; }
.project { perspective: 1200px; }
.project-visual { position: relative; min-height: 580px; overflow: hidden; background: #101113; transform: rotateX(var(--tilt-y,0deg)) rotateY(var(--tilt-x,0deg)); transition: border-radius .5s var(--ease), transform .18s ease-out; }
.project:hover .project-visual { border-radius: 32px; }
.project-footer h3 { margin: 0; font-family: Inter, sans-serif; font-size: clamp(20px, 2vw, 32px); letter-spacing: -.04em; }
.project-footer span { white-space: nowrap; }
.fabric-grid { position: absolute; inset: 0; background: repeating-linear-gradient(90deg,transparent 0 49px,rgba(255,255,255,.07) 50px), repeating-linear-gradient(0deg,transparent 0 49px,rgba(255,255,255,.05) 50px), radial-gradient(circle at 70% 30%,#71543a,transparent 45%); transition: transform .8s var(--ease); }
.project:hover .fabric-grid { transform: scale(1.08) rotate(1deg); }
.mn-mark { position: absolute; left: 8%; bottom: 9%; color: white; font-size: clamp(100px,16vw,220px); font-weight: 900; letter-spacing: -.15em; line-height: .7; }
.mn-mark small { display: inline-block; margin-left: 25px; font: 600 9px/1.4 monospace; letter-spacing: .13em; }
.garment-card { position: absolute; top: 11%; right: 8%; width: 180px; height: 220px; padding: 20px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255,255,255,.23); color: #fff; background: rgba(255,255,255,.05); backdrop-filter: blur(10px); font-size: 74px; font-weight: 300; }
.garment-card span { font: 500 10px/1.4 monospace; letter-spacing: .08em; }
.result-chip { position: absolute; right: 4%; bottom: 4%; padding: 11px 14px; border: 1px solid currentColor; border-radius: 99px; color: rgba(255,255,255,.8); background: rgba(8,9,10,.35); backdrop-filter: blur(8px); font: 650 8px monospace; letter-spacing: .1em; }
.project-mforn .project-visual { background: #d8ff6a; color: #08090a; }
.mforn-word { position: absolute; left: 4%; top: 10%; font-size: clamp(70px, 11vw, 160px); font-weight: 900; letter-spacing: -.09em; transform: rotate(-7deg); transition: transform .8s var(--ease); }
.project:hover .mforn-word { transform: rotate(-3deg) translateX(12px); }
.mforn-tag { position: absolute; right: 7%; bottom: 10%; font: 700 clamp(22px,3vw,45px)/.95 monospace; text-align: right; }
.chrome-pill { position: absolute; left: 8%; bottom: 12%; padding: 16px 24px; border-radius: 99px; color: white; background: #0a0b0c; font: 700 11px monospace; }
.project-mforn .result-chip { color: #0a0b0c; background: rgba(216,255,106,.4); }
.project-monada .project-visual { min-height: 700px; background: radial-gradient(circle at 65% 48%,#3e2c21,transparent 26%),#080706; color: #e5d1b2; }
.planet { position: absolute; width: min(44vw,600px); aspect-ratio: 1; border-radius: 50%; right: 9%; top: 7%; background: radial-gradient(circle at 37% 30%,#e9cda8 0,#8c674b 22%,#2b1b13 52%,#070504 72%); box-shadow: -40px 35px 100px #000; transition: transform 1s var(--ease); }
.project:hover .planet { transform: scale(1.04) rotate(5deg); }
.planet i { position: absolute; inset: -6%; border: 1px solid rgba(229,209,178,.23); border-radius: 50%; transform: rotate(31deg) scaleY(.3); }
.monada-word { position: absolute; left: 7%; top: 14%; font-family: Georgia,serif; font-size: clamp(54px,9vw,145px); letter-spacing: -.05em; }
.monada-word small { display: block; margin-left: 45%; font: 600 12px monospace; letter-spacing: .5em; }
.monada-copy { position: absolute; left: 8%; bottom: 10%; font: 500 14px/1.5 monospace; letter-spacing: .08em; }
.project-monada .result-chip { color: #e5d1b2; }
.project-shuningo .project-visual { min-height: 700px; display: grid; grid-template-columns: 1fr 1fr; background: #efeee9; color: #0a0b0c; }
.shuningo-copy { position: relative; z-index: 2; padding: clamp(35px,5vw,80px); display: flex; flex-direction: column; align-items: flex-start; }
.shuningo-logo { padding: 5px 8px; border: 3px solid currentColor; font: 900 clamp(22px,3vw,42px)/.8 monospace; letter-spacing: -.11em; }
.shuningo-logo sup { margin-left: 4px; font-size: 8px; vertical-align: top; }
.shuningo-copy p { margin: 38px 0 auto; color: #6c6d69; font: 650 10px/1.5 monospace; letter-spacing: .12em; text-transform: uppercase; }
.shuningo-copy strong { max-width: 650px; font-size: clamp(48px,6.5vw,105px); line-height: .86; letter-spacing: -.07em; font-weight: 520; }
.shuningo-stack { margin-top: 50px; font: 700 9px monospace; letter-spacing: .14em; }
.go-stage { position: relative; min-height: 700px; overflow: hidden; background: #0c0f11; }
.go-board { position: absolute; width: min(40vw,530px); aspect-ratio: 1; left: 50%; top: 50%; transform: translate(-50%,-50%) rotate(-6deg); border: 2px solid #222; border-radius: 2px; background-color: #a67b4c; background-image: repeating-linear-gradient(0deg,transparent 0 calc(5.55% - 1px),rgba(20,14,8,.48) calc(5.55% - 1px) 5.55%),repeating-linear-gradient(90deg,transparent 0 calc(5.55% - 1px),rgba(20,14,8,.48) calc(5.55% - 1px) 5.55%),linear-gradient(135deg,#d2aa72,#91653c); box-shadow: 0 40px 100px #000, inset 0 0 80px rgba(65,31,8,.35); transition: transform 1s var(--ease); }
.project-shuningo:hover .go-board { transform: translate(-50%,-50%) rotate(-2deg) scale(1.035); }
.go-board > span { position: absolute; right: 14px; bottom: 12px; color: rgba(10,11,12,.55); font: 800 9px monospace; letter-spacing: .12em; }
.stone { position: absolute; width: 8.5%; aspect-ratio: 1; border-radius: 50%; box-shadow: 0 8px 10px rgba(0,0,0,.35); transition: transform .8s var(--ease); }
.stone.black { background: radial-gradient(circle at 35% 30%,#555,#111 50%,#000 75%); }.stone.white { background: radial-gradient(circle at 35% 30%,#fff,#dad8d1 55%,#8c8a84 100%); }
.s1{left:19%;top:24%}.s2{left:46%;top:35%}.s3{left:62%;top:51%}.s4{left:30%;top:62%}.s5{left:74%;top:24%}.s6{left:52%;top:73%}
.project-shuningo:hover .s1,.project-shuningo:hover .s4 { transform: translateY(-9px); }.project-shuningo:hover .s3,.project-shuningo:hover .s6 { transform: translateY(7px); }
.go-rings { position: absolute; width: 300px; aspect-ratio: 1; right: -170px; bottom: -130px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 35px rgba(255,255,255,.025),0 0 0 70px rgba(255,255,255,.018); }
.project-shuningo .result-chip { color: #efeee9; background: rgba(8,9,10,.7); }

.process { border-bottom: 1px solid var(--line); }
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.process-card { position: relative; min-height: 430px; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg,rgba(255,255,255,.035),transparent); overflow: hidden; }
.process-card::before { content: ""; position: absolute; width: 220px; height: 220px; left: -80px; top: -90px; border-radius: 50%; border: 1px solid var(--line); box-shadow: 0 0 0 30px rgba(255,255,255,.012),0 0 0 60px rgba(255,255,255,.01); transition: transform .7s var(--ease); }
.process-card:hover::before { transform: scale(1.2) translate(20px,20px); }
.process-card > div { position: absolute; left: 28px; right: 28px; top: 25px; display: flex; justify-content: space-between; color: var(--accent); font: 600 10px monospace; letter-spacing: .13em; }
.process-card i { color: #777; font-style: normal; }
.process-card h3 { margin: 0 0 20px; font-size: clamp(27px,3vw,46px); line-height: 1; letter-spacing: -.045em; }
.process-card p { max-width: 390px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.process-card.featured { color: #08090a; background: var(--acid); border-color: var(--acid); transform: translateY(-30px); }
.process-card.featured p, .process-card.featured i { color: #3b4327; }
.process-card.featured b { position: absolute; right: 26px; top: 54px; font: 800 9px monospace; letter-spacing: .12em; }

.about { min-height: 90vh; }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 8vw; align-items: center; }
.about-portrait { position: relative; aspect-ratio: .8; overflow: hidden; border-radius: var(--radius); background: radial-gradient(circle at 55% 40%,#4a4b4b,transparent 13%),radial-gradient(ellipse at 50% 70%,#26282a,transparent 37%),linear-gradient(145deg,#1b1c1e,#090a0b); box-shadow: inset 0 0 0 1px var(--line); }
.portrait-number { position: absolute; right: -8%; top: 10%; color: rgba(255,255,255,.04); font-size: 18vw; font-weight: 900; letter-spacing: -.12em; transform: rotate(90deg); }
.founder-signal { position: absolute; left: 9%; top: 10%; z-index: 2; }
.founder-signal span { display: block; font-size: clamp(48px,5vw,78px); line-height: .82; letter-spacing: -.075em; font-weight: 700; }
.founder-signal small { display: block; margin-top: 30px; color: #999; font: 500 10px/1.5 monospace; letter-spacing: .08em; }
.founder-code { position: absolute; left: 9%; right: 9%; bottom: 15%; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.founder-code i { padding: 14px 0; border-bottom: 1px solid var(--line); color: #aaa; font: 500 8px monospace; letter-spacing: .1em; font-style: normal; }
.founder-code i:nth-child(even) { text-align: right; }
.about-portrait > span { position: absolute; left: 28px; bottom: 26px; font: 600 9px/1.5 monospace; letter-spacing: .12em; }
.about-copy h2 { margin: 34px 0 45px; font-size: clamp(48px,6.5vw,100px); line-height: .92; letter-spacing: -.06em; font-weight: 580; }
.about-copy > p { max-width: 680px; margin: 0; color: #aaa; font-size: clamp(17px,1.5vw,22px); line-height: 1.6; }
.principles { margin-top: 60px; display: grid; gap: 0; border-top: 1px solid var(--line); }
.principles span { padding: 18px 0; border-bottom: 1px solid var(--line); color: #c6c7c5; font: 600 10px monospace; letter-spacing: .1em; }

.final-cta { min-height: 92vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; overflow: hidden; background: #d5a76c; color: #0a0b0c; }
.final-cta .section-index { color: rgba(10,11,12,.65); }
.final-cta h2 { position: relative; z-index: 1; margin: 45px 0 25px; font-size: clamp(70px,11vw,180px); line-height: .77; letter-spacing: -.08em; font-weight: 700; }
.final-cta h2 span { color: transparent; -webkit-text-stroke: 1px #0a0b0c; }
.final-cta p { max-width: 600px; font-size: 18px; line-height: 1.55; }
.cta-button { position: relative; z-index: 2; width: min(540px,90vw); margin-top: 45px; padding: 10px 12px 10px 28px; display: flex; align-items: center; justify-content: space-between; border-radius: 99px; background: #0a0b0c; color: white; font: 700 11px monospace; letter-spacing: .1em; }
.cta-button b { width: 64px; height: 64px; display: grid; place-content: center; border-radius: 50%; background: var(--acid); color: #0a0b0c; font-size: 24px; font-weight: 400; transition: transform .4s var(--ease); }
.cta-button:hover b { transform: rotate(45deg); }
.cta-orbit { position: absolute; width: 72vw; aspect-ratio: 1; border: 1px solid rgba(10,11,12,.15); border-radius: 50%; animation: spin 25s linear infinite; }
.cta-orbit::before,.cta-orbit::after { content:""; position:absolute; width:14px; height:14px; border-radius:50%; background:#0a0b0c; }
.cta-orbit::before { left: 12%; top: 18%; }.cta-orbit::after { right: 7%; bottom: 25%; }

footer { padding: 50px max(5vw,28px); display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 30px; align-items: end; color: #777; font: 600 9px/1.5 monospace; letter-spacing: .1em; }
.footer-brand { color: var(--text); font: 800 54px/1 sans-serif; letter-spacing: -.08em; }
.footer-links { display: flex; flex-direction: column; gap: 8px; color: #bbb; }

.reveal { opacity: 0; transform: translateY(35px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .site-header { height: 62px; top: 10px; }
  nav { position: fixed; inset: 70px 0 auto; padding: 34px 24px; display: grid; gap: 24px; border: 1px solid var(--line); border-radius: 22px; background: rgba(10,11,12,.97); opacity: 0; transform: translateY(-15px); pointer-events: none; transition: .35s var(--ease); }
  nav.open { opacity: 1; transform: none; pointer-events: auto; }
  nav a { font-size: 24px; }
  .header-cta { display: none; }.menu-button { display: block; }
  .hero { padding-top: 135px; min-height: auto; padding-bottom: 90px; }
  .hero h1 { width: 100%; font-size: clamp(52px,13vw,96px); margin: 28px 0 0; }
  .hero-bottom { width: 100%; margin-top: 32px; }
  .hero-bottom p { width: 100%; font-size: 17px; }
  .hero-object { position: relative; z-index: 2; width: 100%; max-width: 480px; aspect-ratio: 1.05; margin: 36px auto 0; right: auto; top: auto; opacity: 1; }
  .proof-strip { grid-template-columns: 1fr 1fr; }.proof-item:last-of-type { grid-column: 1/-1; min-height: 220px; }.proof-item { min-height: 230px; }
  .manifest { grid-template-columns: 1fr; min-height: 70vh; }.manifest-text { font-size: clamp(40px,10vw,68px); }.manifest-note { margin-top: 50px; }
  .section-head { grid-template-columns: 1fr; }.section-head h2 { grid-column: 1; }
  .service-row { grid-template-columns: 45px 1fr auto; padding: 28px 0; }
  .service-row p { grid-column: 2; }.service-icon { grid-column: 3; grid-row: 1; }
  .projects { grid-template-columns: 1fr; }.project:nth-child(3),.project:nth-child(4) { grid-column: auto; }.project-visual,.project-monada .project-visual { min-height: 540px; }
  .project-shuningo .project-visual { grid-template-columns: 1fr; }.go-stage { min-height: 520px; }.go-board { width: min(72vw,500px); }.shuningo-copy { min-height: 570px; }
  .process-grid { grid-template-columns: 1fr; }.process-card.featured { transform: none; }
  .about-grid { grid-template-columns: 1fr; }.about-portrait { max-width: 620px; width: 100%; justify-self: center; }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .section-pad { padding: 90px 20px; }
  .hero { padding-left: 20px; padding-right: 20px; padding-top: 110px; min-height: auto; padding-bottom: 70px; }
  .hero h1 { margin-top: 24px; font-size: clamp(44px, 13.5vw, 68px); line-height: .92; }
  .hero-bottom { width: 100%; align-items: stretch; gap: 22px; margin-top: 24px; }
  .hero-bottom p { width: 100%; font-size: 15px; }
  .round-link { width: 100%; padding-bottom: 12px; font-size: 9px; }
  .round-link b { font-size: 10px; }
  .hero-object { position: relative; width: 100%; max-width: 360px; aspect-ratio: 1.05; margin: 28px auto 0; right: auto; top: auto; opacity: 1; }
  .float-label, .signal-card { display: none; }
  .proof-strip { grid-template-columns: 1fr; }.proof-item,.proof-item:last-of-type { grid-column: auto; min-height: 190px; }.proof-item { flex-direction: row; align-items: end; }.proof-item p { text-align: right; }
  .section-head { margin-bottom: 55px; }.section-head h2 { font-size: 14vw; }
  .service-row { grid-template-columns: 35px 1fr auto; gap: 12px; }.service-row h3 { font-size: 24px; }.service-row p { font-size: 13px; }.service-icon { width: 42px; height: 42px; }
  .project-visual,.project-monada .project-visual { min-height: 430px; }.project-footer { align-items: flex-end; }.project-footer h3 { max-width: 65%; }.project-footer span { font-size: 8px; }
  .project-shuningo .project-visual { min-height: 0; }.shuningo-copy { min-height: 500px; padding: 30px 24px; }.shuningo-copy strong { font-size: 13vw; }.go-stage { min-height: 420px; }.go-board { width: 82vw; }
  .garment-card { width: 125px; height: 160px; font-size: 50px; }.mn-mark { font-size: 115px; }.mn-mark small { display: block; margin: 20px 0 0; }
  .mforn-word { top: 18%; }.planet { width: 85vw; right: -18%; top: 17%; }.monada-word { top: 10%; }
  .process-card { min-height: 360px; }.about-copy h2 { font-size: 13vw; }
  .final-cta h2 { font-size: 21vw; }.final-cta p { font-size: 15px; }.cta-button { padding-left: 20px; }.cta-button b { width: 54px; height: 54px; }
  footer { grid-template-columns: 1fr; }.copyright { margin-top: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (pointer:fine) {
  body, a, button { cursor: none; }
}
@media (pointer:coarse) {
  .custom-cursor { display: none; }
}

/* Portfolio case studies */
.projects { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid rgba(10,11,12,.18); }
.project:nth-child(3),.project:nth-child(4) { grid-column: auto; }
.case-study { min-height: 720px; display: grid; grid-template-columns: minmax(0,1.35fr) minmax(380px,.65fr); color: #111210; background: #ebeae5; border-bottom: 1px solid rgba(10,11,12,.18); overflow: hidden; }
.case-study:nth-child(even) { grid-template-columns: minmax(380px,.65fr) minmax(0,1.35fr); }
.case-study:nth-child(even) .case-media { order: 2; }.case-study:nth-child(even) .case-info { order: 1; }
.case-media { position: relative; min-width: 0; padding: clamp(18px,2.2vw,34px); display: flex; background: #d5d3cb; overflow: hidden; }
.case-media::after { content: "LIVE PRODUCT"; position: absolute; left: clamp(30px,3vw,50px); top: clamp(30px,3vw,50px); z-index: 2; padding: 8px 11px; border-radius: 99px; color: #f2f1ec; background: rgba(8,9,10,.78); backdrop-filter: blur(8px); font: 700 8px monospace; letter-spacing: .12em; }
.case-media img { width: 100%; height: 100%; min-height: 650px; display: block; object-fit: cover; object-position: top center; border-radius: 4px; box-shadow: 0 30px 70px rgba(10,11,12,.18); transition: transform .9s var(--ease),filter .5s; }
.case-study:hover .case-media img { transform: scale(1.018); }
.case-info { min-width: 0; padding: clamp(34px,4vw,66px); display: flex; flex-direction: column; justify-content: space-between; gap: 55px; border-left: 1px solid rgba(10,11,12,.16); }
.case-study:nth-child(even) .case-info { border-left: 0; border-right: 1px solid rgba(10,11,12,.16); }
.case-top { display: flex; justify-content: space-between; gap: 20px; color: #6f716d; font: 650 8px/1.3 monospace; letter-spacing: .11em; }
.case-status { display: flex; align-items: center; gap: 8px; white-space: nowrap; }.case-status i { width: 6px; height: 6px; border-radius: 50%; background: #5a8d55; box-shadow: 0 0 0 4px rgba(90,141,85,.1); }
.case-domain { margin-bottom: 24px; color: #777872; font: 700 10px monospace; letter-spacing: .15em; }
.case-info h3 { margin: 0 0 30px; font-size: clamp(38px,3.2vw,66px); line-height: .92; letter-spacing: -.06em; font-weight: 580; }
.case-info p { max-width: 580px; margin: 0; color: #5f615d; font-size: clamp(15px,1.25vw,19px); line-height: 1.55; }
.case-bottom { display: grid; grid-template-columns: 1fr auto; gap: 35px; align-items: end; }
.case-bottom ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(10,11,12,.16); }
.case-bottom li { padding: 10px 0; border-bottom: 1px solid rgba(10,11,12,.16); color: #565854; font: 600 9px/1.25 monospace; letter-spacing: .06em; }
.case-bottom > span { padding-bottom: 10px; white-space: nowrap; font: 750 9px monospace; letter-spacing: .1em; }
.case-study:nth-child(2),.case-study:nth-child(4) { color: #ededE8; background: #111315; }
.case-study:nth-child(2) .case-media { background: #c9c3b9; }.case-study:nth-child(4) .case-media { background: #1a1c22; }
.case-study:nth-child(2) .case-info,.case-study:nth-child(4) .case-info { border-color: rgba(255,255,255,.14); }
.case-study:nth-child(2) .case-top,.case-study:nth-child(4) .case-top,.case-study:nth-child(2) .case-domain,.case-study:nth-child(4) .case-domain { color: #8e918f; }
.case-study:nth-child(2) .case-info p,.case-study:nth-child(4) .case-info p,.case-study:nth-child(2) .case-bottom li,.case-study:nth-child(4) .case-bottom li { color: #a9aba8; }
.case-study:nth-child(2) .case-bottom ul,.case-study:nth-child(2) .case-bottom li,.case-study:nth-child(4) .case-bottom ul,.case-study:nth-child(4) .case-bottom li { border-color: rgba(255,255,255,.14); }
.case-study:nth-child(3) { background: #e7e0d1; }.case-study:nth-child(3) .case-media { background: #d4cbb8; }
.case-study:nth-child(5) { background: #efeee9; color: #111210; }.case-study:nth-child(5) .case-media { background: #25282a; }

/* Founder portrait */
.about-portrait { position: relative; aspect-ratio: .78; overflow: hidden; border-radius: var(--radius); background: #111315; box-shadow: inset 0 0 0 1px var(--line); }
.founder-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; filter: saturate(.8) contrast(1.06); transition: transform 1.2s var(--ease),filter .6s; }
.about-portrait:hover .founder-photo { transform: scale(1.025); filter: saturate(1) contrast(1.03); }
.photo-gradient { position: absolute; inset: 0; background: linear-gradient(180deg,transparent 48%,rgba(5,6,7,.08) 66%,rgba(5,6,7,.88) 100%); }
.photo-caption { position: absolute; z-index: 2; left: 28px; bottom: 26px; display: grid; gap: 6px; }.photo-caption span { font-size: 24px; font-weight: 650; letter-spacing: -.04em; }.photo-caption small,.photo-index { color: #c8cac6; font: 650 8px monospace; letter-spacing: .13em; }
.photo-index { position: absolute; z-index: 2; right: 28px; bottom: 29px; }

@media (max-width: 1000px) {
  .case-study,.case-study:nth-child(even) { grid-template-columns: 1fr; }
  .case-study:nth-child(even) .case-media,.case-study:nth-child(even) .case-info { order: initial; }
  .case-media { min-height: auto; padding: 24px; align-items: center; justify-content: center; }
  .case-media img { min-height: auto; height: auto; max-height: 480px; object-fit: contain; }
  .case-info,.case-study:nth-child(even) .case-info { min-height: auto; border: 0; border-top: 1px solid rgba(10,11,12,.16); padding: 40px 32px; gap: 36px; }
}

@media (max-width: 560px) {
  .case-study { min-height: 0; }
  .case-media { min-height: auto; padding: 16px; background: #121417; }
  .case-media img { min-height: auto; height: auto; max-height: 260px; object-fit: contain; border-radius: 8px; box-shadow: 0 14px 40px rgba(0,0,0,0.45); }
  .case-media::after { left: 16px; top: 16px; font-size: 7px; padding: 6px 9px; }
  .case-info { min-height: auto; padding: 28px 20px; gap: 32px; }
  .case-top { font-size: 7px; }
  .case-domain { margin-bottom: 12px; }
  .case-info h3 { font-size: clamp(28px, 8vw, 36px); margin: 0 0 16px; }
  .case-info p { font-size: 14px; line-height: 1.5; }
  .case-bottom { grid-template-columns: 1fr; gap: 20px; }
  .case-bottom > span { justify-self: start; }
  .about-portrait { aspect-ratio: .82; }.founder-photo { object-position: 50% 17%; }
}

/* AI consultant */
.ai-consultant { position: fixed; z-index: 70; right: 24px; bottom: 22px; font-family: Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif; }
.ai-trigger { min-width: 210px; padding: 9px 15px 9px 9px; display: flex; align-items: center; gap: 11px; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; color: #eeefeb; background: rgba(12,13,15,.88); box-shadow: 0 18px 55px rgba(0,0,0,.35); backdrop-filter: blur(18px); transition: transform .35s var(--ease),border-color .35s; }
.ai-trigger:hover { transform: translateY(-3px); border-color: rgba(216,255,106,.55); }
.ai-trigger-icon { position: relative; width: 44px; height: 44px; display: grid; place-content: center; border-radius: 13px; color: #0a0b0c; background: var(--acid); }.ai-trigger-icon > i { position: absolute; right: -2px; top: -2px; width: 9px; height: 9px; border: 2px solid #111315; border-radius: 50%; background: #61d477; }.ai-trigger-icon svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.ai-trigger-copy { display: grid; gap: 3px; text-align: left; }.ai-trigger-copy strong { font-size: 12px; font-weight: 650; }.ai-trigger-copy small { color: #858885; font: 600 8px monospace; letter-spacing: .06em; }
.ai-panel { position: absolute; right: 0; bottom: 72px; width: min(370px,calc(100vw - 32px)); border: 1px solid rgba(255,255,255,.16); border-radius: 24px; color: #ecede9; background: rgba(12,13,15,.96); box-shadow: 0 30px 90px rgba(0,0,0,.55); backdrop-filter: blur(24px); overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(18px) scale(.96); transform-origin: right bottom; transition: .4s var(--ease); }
.ai-panel.open { opacity: 1; visibility: visible; transform: none; }
.ai-panel-head { padding: 17px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; border-bottom: 1px solid rgba(255,255,255,.1); }
.ai-avatar { position: relative; width: 44px; height: 44px; display: grid; place-content: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; font-size: 15px; font-weight: 800; letter-spacing: -.06em; }.ai-avatar i { position: absolute; right: 1px; top: 1px; width: 8px; height: 8px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 9px var(--acid); }
.ai-panel-head > div:nth-child(2) { display: grid; gap: 4px; }.ai-panel-head strong { font-size: 13px; }.ai-panel-head span { color: #7f827f; font: 600 8px monospace; letter-spacing: .05em; }
.ai-close { width: 34px; height: 34px; border: 0; border-radius: 50%; color: #a7aaa7; background: rgba(255,255,255,.06); font-size: 20px; }
.ai-panel-body { padding: 18px; }.ai-message { padding: 15px; border-radius: 15px 15px 15px 4px; color: #c4c6c2; background: rgba(255,255,255,.055); font-size: 13px; line-height: 1.55; }
.ai-suggestions { margin: 15px 0; display: flex; flex-wrap: wrap; gap: 7px; }.ai-suggestions span { padding: 8px 10px; border: 1px solid rgba(255,255,255,.11); border-radius: 99px; color: #969996; font: 600 8px monospace; }
.ai-telegram { padding: 9px 9px 9px 16px; display: flex; align-items: center; justify-content: space-between; border-radius: 99px; color: #090a0b; background: var(--acid); font: 750 9px monospace; letter-spacing: .09em; }.ai-telegram b { width: 38px; height: 38px; display: grid; place-content: center; border-radius: 50%; color: white; background: #0a0b0c; font-size: 17px; font-weight: 400; }.ai-panel-body > small { display: block; margin-top: 10px; color: #656865; text-align: center; font: 600 7px monospace; letter-spacing: .08em; }

@media (max-width:560px) {
  .ai-consultant { right: 14px; bottom: 14px; }.ai-trigger { min-width: 0; padding: 7px; border-radius: 17px; }.ai-trigger-copy { display: none; }.ai-trigger-icon { width: 46px; height: 46px; }.ai-panel { bottom: 68px; }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 80;
  max-width: min(440px, calc(100vw - 48px));
  padding: 16px 20px;
  border-radius: 20px;
  background: rgba(16,17,19,0.92);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
}
.cookie-banner.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.cookie-content {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-content p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #a7aaa7;
}
.cookie-content p a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-content p a:hover {
  color: var(--acid);
}
.cookie-btn {
  flex-shrink: 0;
  padding: 10px 18px;
  border: 0;
  border-radius: 99px;
  background: var(--text);
  color: #090a0b;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background .25s, transform .2s;
}
.cookie-btn:hover {
  background: var(--acid);
  transform: scale(1.03);
}

@media (max-width: 560px) {
  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 80px;
    max-width: none;
    padding: 14px 16px;
  }
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .cookie-btn {
    text-align: center;
  }
}
