:root {
  --paper: #fffaf5;
  --paper-2: #f5eee7;
  --ink: #0a0a0a;
  --graphite: #3e3e42;
  --muted: #706a64;
  --line: #e7ddd4;
  --white: #fafafa;
  --mint: #21ffc0;
  --orange: #ff6a00;
  --blue: #25a7f0;
  --sans: "PingFang SC", "HarmonyOS Sans SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --serif: "Songti SC", "Noto Serif SC", "STSong", serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --pointer-x: 0;
  --pointer-y: 0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body { margin: 0; color: var(--graphite); background: var(--paper); font-family: var(--sans); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }
::selection { color: var(--ink); background: var(--mint); }

.section-pad { padding: 124px max(30px, calc((100vw - 1540px) / 2)); }
.section-label { display: flex; align-items: center; gap: 12px; color: #817a73; font: 500 12px/1 var(--mono); letter-spacing: .04em; }
.section-label span { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid var(--line); border-radius: 50%; }
.section-label.light { color: rgba(250,250,250,.55); }
.section-label.light span { border-color: rgba(250,250,250,.2); }

.site-nav { position: fixed; inset: 22px 28px auto; z-index: 80; display: flex; align-items: center; justify-content: space-between; pointer-events: none; }
.site-nav > * { pointer-events: auto; }
.brand { position: relative; display: grid; width: 58px; height: 58px; place-items: center; border: 1px solid rgba(16,16,16,.12); border-radius: 50%; background: rgba(255,250,245,.88); box-shadow: 0 8px 28px rgba(60,45,30,.08); backdrop-filter: blur(12px); font: 700 13px var(--mono); }
.brand span { position: absolute; right: -5px; top: 3px; font-size: 7px; }
.site-nav nav { display: flex; gap: 4px; padding: 5px; border: 1px solid rgba(16,16,16,.1); border-radius: 999px; background: rgba(255,250,245,.88); backdrop-filter: blur(12px); }
.site-nav nav.dock-nav { height: 52px; align-items: center; overflow: visible; }
.site-nav nav.dock-nav a { position: relative; z-index: 1; display: grid; min-width: 58px; min-height: 38px; place-items: center; padding: 0 13px; border-radius: 999px; font-size: 13px; transform-origin: center bottom; transition: color .2s, background .2s, box-shadow .2s; }
.site-nav nav.dock-nav a:hover, .site-nav nav.dock-nav a:focus-visible { z-index: 2; background: #fff; box-shadow: 0 7px 18px rgba(55,42,30,.09); }
.menu-button { display: flex; align-items: center; gap: 12px; height: 48px; padding: 0 18px; border: 0; border-radius: 999px; color: var(--white); background: var(--ink); cursor: pointer; }
.menu-button i { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); }
.menu-button:focus-visible, a:focus-visible, button:focus-visible { outline: 2px solid var(--mint); outline-offset: 3px; }

.staggered-menu { display: contents; }
.sm-menu-toggle { position: relative; z-index: 96; min-width: 102px; justify-content: center; }
.sm-menu-toggle-copy { display: inline-block; min-width: 2em; }
.sm-menu-icon { position: relative; width: 12px; height: 12px; color: var(--mint); }
.sm-menu-icon > span { position: absolute; left: 50%; top: 50%; width: 11px; height: 2px; border-radius: 99px; background: currentColor; transform: translate(-50%,-50%); transition: transform .55s cubic-bezier(.19,1,.22,1); }
.sm-menu-icon > span:nth-child(2) { transform: translate(-50%,-50%) rotate(90deg); }
.staggered-menu.is-open .sm-menu-icon > span:first-child, body.menu-open .sm-menu-icon > span:first-child { transform: translate(-50%,-50%) rotate(135deg); }
.staggered-menu.is-open .sm-menu-icon > span:nth-child(2), body.menu-open .sm-menu-icon > span:nth-child(2) { transform: translate(-50%,-50%) rotate(225deg); }
.sm-menu-scrim { position: fixed; inset: 0; z-index: 84; border: 0; background: rgba(12,10,9,.2); backdrop-filter: blur(2px); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .35s, visibility .35s; }
.sm-menu-underlays { position: fixed; inset: 0 0 0 auto; z-index: 86; width: min(520px,44vw); pointer-events: none; }
.sm-menu-underlays span { position: absolute; inset: 0; background: #21ffc0; transform: translateX(105%); transition: transform .62s cubic-bezier(.19,1,.22,1); }
.sm-menu-underlays span:nth-child(2) { background: #ff765d; transition-delay: .06s; }
.sm-menu-panel { position: fixed; inset: 0 0 0 auto; z-index: 88; display: flex; width: min(500px,42vw); flex-direction: column; padding: 112px 36px 32px; color: #171717; background: #fffaf5; box-shadow: -24px 0 70px rgba(40,30,22,.13); visibility: hidden; pointer-events: none; transform: translateX(105%); transition: transform .68s .11s cubic-bezier(.19,1,.22,1), visibility .01s .79s; }
.staggered-menu.is-open .sm-menu-scrim, body.menu-open .sm-menu-scrim { opacity: 1; visibility: visible; pointer-events: auto; }
.staggered-menu.is-open .sm-menu-underlays span, body.menu-open .sm-menu-underlays span { transform: translateX(0); }
.staggered-menu.is-open .sm-menu-panel, body.menu-open .sm-menu-panel { visibility: visible; pointer-events: auto; transform: translateX(0); transition-delay: .11s,0s; }
.sm-menu-meta { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 24px; border-bottom: 1px solid rgba(22,22,22,.13); color: #756e67; font: 10px/1.3 var(--mono); letter-spacing: .08em; }
.sm-menu-links { display: grid; margin-top: 38px; }
.sm-menu-links a { --sm-index: 0; position: relative; display: grid; grid-template-columns: 34px 1fr auto; align-items: baseline; gap: 12px; overflow: hidden; padding: 17px 0; border-bottom: 1px solid rgba(22,22,22,.11); color: #201e1c; opacity: 0; transform: translateY(56px) rotate(3deg); transform-origin: left bottom; transition: color .25s, opacity .55s calc(.21s + var(--sm-index) * .075s), transform .7s calc(.21s + var(--sm-index) * .075s) cubic-bezier(.19,1,.22,1); }
.staggered-menu.is-open .sm-menu-links a, body.menu-open .sm-menu-links a { opacity: 1; transform: none; }
.sm-menu-links a:hover, .sm-menu-links a:focus-visible { color: #ff6248; }
.sm-menu-links small { color: #9a9189; font: 10px var(--mono); }
.sm-menu-links span { font-family: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", sans-serif; font-size: clamp(30px,3.35vw,46px); font-weight: 600; line-height: 1.08; letter-spacing: -.045em; }
.sm-menu-links em { color: #90877f; font: 10px var(--mono); text-transform: uppercase; }
.sm-menu-footer { display: grid; gap: 12px; margin-top: auto; padding-top: 22px; border-top: 1px solid rgba(22,22,22,.13); color: #766e67; font: 10px/1.5 var(--mono); }

.bubble-menu-root { position: relative; z-index: 99; }
.bubble-menu-toggle { position: relative; z-index: 102; display: flex; min-width: 92px; height: 50px; align-items: center; justify-content: center; gap: 10px; padding: 0 17px; border: 0; border-radius: 999px; color: var(--white); background: var(--ink); box-shadow: 0 10px 28px rgba(31,24,19,.12); cursor: pointer; }
.bubble-menu-toggle > span { font-family: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", sans-serif; font-size: 14px; font-weight: 500; letter-spacing: .04em; }
.bubble-menu-toggle i { position: relative; width: 14px; height: 14px; color: var(--mint); }
.bubble-menu-toggle b { position: absolute; left: 1px; top: 6px; width: 12px; height: 2px; border-radius: 99px; background: currentColor; transition: transform .45s cubic-bezier(.19,1,.22,1); }
.bubble-menu-toggle b:nth-child(2) { transform: rotate(90deg); }
.bubble-menu-root.is-open .bubble-menu-toggle b:first-child { transform: rotate(45deg); }
.bubble-menu-root.is-open .bubble-menu-toggle b:nth-child(2) { transform: rotate(-45deg); }
.bubble-menu-overlay { position: fixed; inset: 0; z-index: 98; display: none; place-items: center; padding: 112px 30px 38px; background: rgba(255,250,245,.96); backdrop-filter: blur(15px); opacity: 0; }
.bubble-menu-pills { display: grid; width: min(1160px,100%); grid-template-columns: repeat(6,minmax(0,1fr)); gap: 14px; padding: 0; border: 0; border-radius: 0; background: none; backdrop-filter: none; }
.site-nav .bubble-menu-pills { display: grid; }
.site-nav nav.bubble-menu-pills { padding: 0; border: 0; border-radius: 0; background: transparent; backdrop-filter: none; }
.bubble-menu-pill { --bubble-rotation: 0deg; --bubble-hover-bg: var(--mint); --bubble-hover-color: var(--ink); position: relative; display: flex; min-height: 128px; grid-column: span 2; align-items: center; justify-content: center; overflow: hidden; border: 1px solid rgba(40,34,29,.14); border-radius: 999px; color: #252225; background: #fffdfa; box-shadow: none; text-decoration: none; transform: rotate(var(--bubble-rotation)); transition: color .28s, background .28s, scale .3s cubic-bezier(.19,1,.22,1), transform .55s cubic-bezier(.34,1.56,.64,1); }
.bubble-menu-pill:nth-child(4) { grid-column: 2 / span 2; }
.bubble-menu-pill:nth-child(5) { grid-column: 4 / span 2; }
.bubble-menu-pill span { font-family: "PingFang SC", "Alibaba PuHuiTi", "HarmonyOS Sans SC", "Microsoft YaHei", sans-serif; font-size: clamp(25px,3vw,42px); font-weight: 600; letter-spacing: -.04em; }
.bubble-menu-pill small { position: absolute; right: 28px; top: 22px; color: currentColor; font: 9px var(--mono); opacity: .55; }
.bubble-menu-pill:hover, .bubble-menu-pill:focus-visible { color: var(--bubble-hover-color); background: var(--bubble-hover-bg); box-shadow: none; scale: 1.025; }

.text-type { display: inline-block; white-space: pre-line; }
.text-type__content { color: inherit; font: inherit; letter-spacing: inherit; }
.text-type__symbol { display: inline-grid; width: .94em; height: .94em; place-items: center; margin-left: .08em; font-family: "Segoe UI Symbol", "Arial Unicode MS", sans-serif !important; font-size: .82em; font-style: normal; font-weight: 400 !important; line-height: 1; letter-spacing: 0; vertical-align: .04em; transform: none; }
.text-type__cursor { display: inline-block; width: 5px; height: .78em; margin-left: .14em; border-radius: 1px; background: var(--mint); vertical-align: -.05em; transform-origin: center; animation: text-type-cursor-blink 1s steps(1,end) infinite; }
.text-type__symbol + .text-type__cursor { margin-left: .34em; }
@keyframes text-type-cursor-blink { 0%, 46% { opacity: 1; } 47%, 96% { opacity: 0; } 97%, 100% { opacity: 1; } }
.section-type { white-space: pre-line; }
.section-type-display { display: block; min-height: 2.3em; }
.section-type-about, .section-type-recent { min-height: 1.2em; }
.sm-menu-footer a { width: max-content; color: #211f1d; font-size: 13px; }

/* Hero mirrors the reference composition: two dense object clusters and a calm center. */
.hero { position: relative; height: 1080px; min-height: 1080px; overflow: visible; border-top: 5px solid #222; background: #fef9f4; isolation: isolate; touch-action: pan-y; }
.hero-copy { position: absolute; z-index: 12; left: 50%; top: 42%; width: min(620px, 50vw); text-align: center; transform: translate(-50%, -50%); transition: left .9s cubic-bezier(.19,1,.22,1), top .9s cubic-bezier(.19,1,.22,1), width .9s cubic-bezier(.19,1,.22,1); }
.hero-eyebrow { margin: 0 0 18px; color: #746e68; font: 500 12px var(--mono); letter-spacing: .07em; }
.hero h1 { margin: 0; color: #414042; font: clamp(64px, 6.4vw, 104px)/1.04 "Segoe Script", "Bradley Hand", "Comic Sans MS", cursive; font-weight: 400; letter-spacing: -.055em; white-space: nowrap; transform: rotate(-3deg); }
.hero-statement { display: grid; gap: 6px; margin: 28px 0 0; color: #635e59; font: 500 19px/1.2 var(--mono); letter-spacing: .025em; }
.hero-statement i { font-size: 12px; font-weight: 400; }
.hero-intro { margin: 22px auto 0; color: #69635d; font: 500 16px/1.65 var(--mono); letter-spacing: .015em; }
.hero-actions { display: flex; justify-content: center; gap: 10px; margin-top: 38px; }
.hero-actions a { display: flex; align-items: center; gap: 20px; min-height: 46px; padding: 0 19px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.6); font-size: 14px; transition: transform .25s, background .25s; }
.hero-actions a:first-child { color: var(--white); background: var(--ink); }
.hero-actions a:first-child span { color: var(--mint); }
.hero-actions a:hover { transform: translateY(-3px); }
.hero-status { position: absolute; left: 28px; bottom: 22px; z-index: 15; display: flex; align-items: center; gap: 9px; color: #746e68; font: 11px var(--mono); }
.hero-status i { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(33,255,192,.17); }
.scroll-hint { position: absolute; right: 28px; bottom: 20px; z-index: 15; display: flex; gap: 12px; color: #746e68; font: 11px var(--mono); }

.desk-collage { position: absolute; z-index: 4; top: 0; width: 620px; height: 878px; transition: transform .9s cubic-bezier(.19,1,.22,1), opacity .45s ease, visibility .45s; pointer-events: none; }
.desk-collage-left { left: 0; z-index: 4; transform-origin: left top; }
.desk-collage-right { right: 0; z-index: 7; width: 430px; transform-origin: right top; }
.desk-object { position: absolute; display: block; max-width: none; border: 0; pointer-events: auto; user-select: none; -webkit-user-drag: none; will-change: transform; }
.desk-static { pointer-events: none; }
.desk-paper { z-index: 0; left: -165px; top: 125px; width: 310px; }
.desk-lamp { z-index: 1; left: -35px; top: -45px; width: 430px; }
.desk-note { z-index: 3; left: 180px; top: 220px; width: 185px; }
.desk-notebook { z-index: 2; left: -240px; top: 330px; width: 720px; transform: rotate(-17deg); transform-origin: 50% 50%; }
.desk-pen { z-index: 5; left: 225px; top: 255px; width: 180px; height: 240px; object-fit: fill; }
.desk-coffee { z-index: 4; left: -55px; top: 357px; width: 220px; }
.desk-film { z-index: 5; left: 0; top: 548px; width: 215px; }
.desk-lighter { z-index: 6; left: 235px; top: 477px; width: 115px; }
.desk-cream { z-index: 6; left: 245px; top: 690px; width: 175px; }
.desk-cursor { z-index: 7; right: 319px; top: 105px; width: 80px; }
.desk-folder { position: absolute; z-index: 9; right: 212px; top: 401px; width: 200px; height: 160px; pointer-events: auto; transform: rotate(-8deg); transform-origin: 50% 50%; }
.desk-toolbar { z-index: 10; right: 23px; top: 443px; width: 115px; }
.desk-record { z-index: 5; right: 22px; top: 63px; display: block; width: 306px; height: 374px; padding: 20px 28px 16px; overflow: hidden; border: 1px solid rgba(40,35,32,.08); border-radius: 18px; background: rgba(255,250,245,.96); box-shadow: 0 18px 44px rgba(50,40,32,.06); cursor: pointer; transform-origin: 52% 46%; }
.desk-record-vinyl { position: relative; display: block; width: 218px; height: 218px; margin: 0 auto; animation: desk-vinyl-spin 18s linear infinite; transform-origin: 50% 50%; }
.desk-record-vinyl img { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 50%; }
.desk-record-vinyl img:last-child { inset: 31%; width: 38%; height: 38%; }
.desk-record-copy { display: grid; gap: 4px; margin-top: 12px; color: #746e68; text-align: center; font: 11px/1.35 var(--mono); }
.desk-record-copy strong { color: #4f4a45; font-weight: 500; }
.desk-record-line { position: relative; height: 2px; margin: 12px 0 6px; border-radius: 99px; background: #d7d1cb; }
.desk-record-line::after { content: ""; position: absolute; left: 54%; top: 50%; width: 10px; height: 10px; border-radius: 50%; background: #746e68; transform: translate(-50%,-50%); }
@keyframes desk-vinyl-spin { to { transform: rotate(360deg); } }
.desk-object:not(.desk-static) { transform-origin: 50% 50%; }
.desk-object:not(.desk-toolbar):not(.desk-static):hover { animation: desk-object-wiggle .62s cubic-bezier(.22,.8,.28,1); }
.desk-toolbar:hover { animation: desk-toolbar-breathe 1.05s cubic-bezier(.45,.05,.55,.95) infinite alternate; }
.desk-notebook.desk-static { pointer-events: auto; backface-visibility: hidden; transform-style: preserve-3d; }
.desk-coffee { backface-visibility: hidden; transform-style: preserve-3d; }
.desk-notebook.desk-static:hover { animation: desk-notebook-bloom 1.4s cubic-bezier(.42,0,.58,1); }
.desk-notebook.desk-static:hover ~ .desk-coffee { animation: desk-coffee-follow 1.4s cubic-bezier(.42,0,.58,1); }
@keyframes desk-object-wiggle {
  0%, 100% { transform: rotate(var(--resting-angle, 0deg)) scale(var(--object-scale, 1)); }
  24% { transform: rotate(calc(var(--resting-angle, 0deg) - 5.2deg)) scale(var(--object-scale, 1)); }
  52% { transform: rotate(calc(var(--resting-angle, 0deg) + 5.8deg)) scale(var(--object-scale, 1)); }
  78% { transform: rotate(calc(var(--resting-angle, 0deg) - 2.4deg)) scale(var(--object-scale, 1)); }
}
@keyframes desk-notebook-bloom {
  0%, 100% { transform: translate3d(0,0,0) rotate(-17deg) scale(1); }
  50% { transform: translate3d(0,0,0) rotate(-15.5deg) scale(1.045); }
}
@keyframes desk-coffee-follow {
  0%, 100% { transform: translate3d(0,0,0) rotate(0deg) scale(1); }
  50% { transform: translate3d(0,0,0) rotate(1.4deg) scale(1.045); }
}
@keyframes desk-toolbar-breathe {
  from { transform: scale(.96); }
  to { transform: scale(1.075); }
}
.rb-folder-host { --folder-scale: 1; }
.rb-folder-stage { width: 100px; height: 80px; transform: scale(var(--folder-scale)); transform-origin: left top; }
.rb-folder { width: 100px; height: 80px; cursor: pointer; filter: drop-shadow(0 7px 6px rgba(22,91,128,.2)); transition: transform .26s cubic-bezier(.22,.8,.28,1), filter .26s ease; }
.rb-folder:hover,
.rb-folder.open { transform: translateY(-8px); filter: drop-shadow(0 10px 8px rgba(22,91,128,.25)); }
.rb-folder__back { position: relative; width: 100px; height: 80px; border-radius: 0 10px 10px; background: var(--folder-back-color); }
.rb-folder__back::after { position: absolute; z-index: 0; bottom: 98%; left: 0; width: 34px; height: 11px; border-radius: 6px 6px 0 0; background: var(--folder-back-color); content: ""; }
.rb-paper { --magnet-x: 0px; --magnet-y: 0px; position: absolute; z-index: 2; bottom: 10%; left: 50%; display: grid; width: 40px; height: 40px; place-items: center; overflow: visible; border: 0; background: transparent; filter: drop-shadow(0 3px 3px rgba(25,48,60,.18)); transform: translate(-50%,10%); transition: transform .34s cubic-bezier(.22,.8,.28,1); }
.folder-app-icon { display: block; width: 38px; height: 38px; object-fit: contain; }
.rb-folder:not(.open):hover .rb-paper-1 { transform: translate(-120%,-70%) rotate(-15deg); }
.rb-folder:not(.open):hover .rb-paper-2 { transform: translate(10%,-70%) rotate(15deg); }
.rb-folder:not(.open):hover .rb-paper-3 { transform: translate(-50%,-100%) rotate(5deg); }
.rb-folder.open .rb-paper-1 { transform: translate(calc(-120% + var(--magnet-x)),calc(-70% + var(--magnet-y))) rotate(-15deg); }
.rb-folder.open .rb-paper-2 { transform: translate(calc(10% + var(--magnet-x)),calc(-70% + var(--magnet-y))) rotate(15deg); }
.rb-folder.open .rb-paper-3 { transform: translate(calc(-50% + var(--magnet-x)),calc(-100% + var(--magnet-y))) rotate(5deg); }
.rb-folder.open .rb-paper-1:hover { transform: translate(calc(-120% + var(--magnet-x)),calc(-70% + var(--magnet-y))) rotate(-15deg) scale(1.08); }
.rb-folder.open .rb-paper-2:hover { transform: translate(calc(10% + var(--magnet-x)),calc(-70% + var(--magnet-y))) rotate(15deg) scale(1.08); }
.rb-folder.open .rb-paper-3:hover { transform: translate(calc(-50% + var(--magnet-x)),calc(-100% + var(--magnet-y))) rotate(5deg) scale(1.08); }
.rb-folder__front { position: absolute; z-index: 3; inset: 0; border-radius: 5px 10px 10px; background: linear-gradient(145deg,color-mix(in srgb,var(--folder-color) 92%,white),var(--folder-color)); box-shadow: inset 0 1px rgba(255,255,255,.28); transform-origin: bottom; transition: transform .32s cubic-bezier(.22,.8,.28,1); }
.rb-folder:hover .rb-folder__front,
.rb-folder.open .rb-folder__front { transform: skew(15deg) scaleY(.6); }
.rb-folder:hover .rb-folder__front--right,
.rb-folder.open .rb-folder__front--right { transform: skew(-15deg) scaleY(.6); }
.rb-folder:focus-visible { outline: 2px solid #0a0a0a; outline-offset: 5px; border-radius: 10px; }
.airdrop-card-live { --card-scale: 1; position: absolute; z-index: 14; right: 185px; top: 580px; display: grid; grid-template-rows: auto 1fr auto; width: 210px; height: 235px; overflow: hidden; border: 1px solid rgba(16,16,16,.08); border-radius: 13px; background: #fff; box-shadow: 0 14px 35px rgba(60,45,30,.12); transform: rotate(8deg) scale(var(--card-scale)); transform-origin: center; transition: box-shadow .3s; }
.airdrop-card-live:hover { animation: airdrop-wiggle .65s cubic-bezier(.22,.8,.28,1); box-shadow: 0 20px 42px rgba(60,45,30,.17); }
@keyframes airdrop-wiggle {
  0%, 100% { transform: rotate(8deg) scale(var(--card-scale)); }
  28% { transform: rotate(2.8deg) scale(var(--card-scale)); }
  58% { transform: rotate(13.8deg) scale(var(--card-scale)); }
  82% { transform: rotate(5.6deg) scale(var(--card-scale)); }
}
.airdrop-heading { display: grid; gap: 2px; padding: 10px 10px 8px; text-align: center; }
.airdrop-heading strong { color: #171717; font-size: 12px; }
.airdrop-heading small { color: #777; font-size: 8px; line-height: 1.35; }
.airdrop-content { display: grid; min-height: 105px; place-items: center; padding: 10px; color: #fff; background: linear-gradient(135deg, #ff5b41, #ff78ab 48%, #755bff); text-align: center; font-size: 13px; font-weight: 600; letter-spacing: .08em; }
.airdrop-actions { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #eee; }
.airdrop-actions button { min-height: 34px; border: 0; color: #0a76ff; background: #fff; font-size: 11px; cursor: pointer; }
.airdrop-actions button + button { border-left: 1px solid #eee; font-weight: 600; }
.airdrop-actions button:hover, .airdrop-actions button:focus-visible { background: #f3f7ff; }

.about { position: relative; z-index: 2; background: var(--paper); }
.about-shell { padding-inline: max(46px, calc((100vw - 1720px) / 2)); }
.about-cooking { position: relative; display: flex; min-height: 535px; flex-direction: column; justify-content: flex-start; padding-top: 143px; padding-bottom: 82px; }
.about-cooking::before, .about-recent::before { position: absolute; z-index: 1; display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: #817a73; font: 500 12px/1 var(--mono); }
.about-cooking::after, .about-recent::after { position: absolute; z-index: 1; color: #817a73; font: 500 12px/1 var(--mono); letter-spacing: .04em; }
.about-cooking::before { top: 82px; left: max(46px, calc((100vw - 1720px) / 2)); content: "01"; }
.about-cooking::after { top: 91px; left: max(86px, calc((100vw - 1640px) / 2)); content: "ABOUT / 关于我"; }
.about-cooking h2, .about-recent > h2 { margin: 0; color: #464246; font: 700 clamp(22px, 2vw, 30px)/1.2 var(--mono); letter-spacing: .01em; }
.about-cooking h2 .text-type, .about-cooking h2 .text-type span { font: inherit; letter-spacing: inherit; }
.about-cooking .cooking-project { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; max-width: 1120px; margin: 46px 0 0; color: #746e68; font: 400 clamp(17px, 1.25vw, 21px)/1.6 var(--mono); letter-spacing: .01em; }
.cooking-sticker { display: inline-grid; width: 50px; height: 50px; margin-inline: 4px 1px; place-items: center; border: 1px solid rgba(50,44,40,.06); border-radius: 11px; color: #494441; background: #fff; box-shadow: 0 4px 14px rgba(63,46,38,.08); font: 27px/1 var(--mono); cursor: pointer; transform: translate3d(0,0,0) rotate(-7deg) scale(1); transform-origin: 50% 50%; backface-visibility: hidden; will-change: transform; }
.cooking-sticker:hover, .cooking-sticker:focus-visible { animation: cooking-sticker-pop 1.05s cubic-bezier(.42,0,.58,1); outline: none; }
.cooking-fuzzy { display: inline-flex; align-items: center; color: #292629; font: 600 clamp(21px, 1.55vw, 27px)/1.25 "Segoe Print", "Segoe Script", "KaiTi", cursive; letter-spacing: .01em; }
.cooking-fuzzy-canvas { display: block; margin-inline: -38px; color: #292629; font: inherit; cursor: crosshair; outline: none; }
.cooking-fuzzy-canvas:focus-visible { filter: drop-shadow(0 0 5px rgba(74,66,61,.22)); }
@keyframes cooking-sticker-pop {
  0%, 100% { transform: translate3d(0,0,0) rotate(-7deg) scale(1); }
  50% { transform: translate3d(0,0,0) rotate(10deg) scale(1.18); }
}
.about-cooking .cooking-description,
.about-cooking .cooking-status { max-width: 1280px; margin: 26px 0 0; color: #746e68; font: 400 clamp(17px, 1.25vw, 21px)/1.6 var(--mono); letter-spacing: .01em; }
.about-cooking .cooking-status { margin-top: 8px; }
.about-cooking .cooking-status span { display: inline-block; margin-left: .35em; transform: rotate(-8deg); }
.about-recent { position: relative; min-height: 980px; padding-top: 80px; padding-bottom: 150px; }
.about-recent::before { top: 24px; left: max(46px, calc((100vw - 1720px) / 2)); content: "02"; }
.about-recent::after { top: 33px; left: max(86px, calc((100vw - 1640px) / 2)); content: "PROJECTS / 精选项目"; }
#experience > .section-label span, #capabilities > .section-label span, #contact > .section-label span { font-size: 0; }
#experience > .section-label span::after, #capabilities > .section-label span::after, #contact > .section-label span::after { font-size: 12px; }
#experience > .section-label span::after { content: "03"; }
#capabilities > .section-label span::after { content: "04"; }
#contact > .section-label span::after { content: "05"; }
.about-recent > h2 { display: flex; align-items: center; gap: 14px; }
.about-recent > h2 > .text-type { font-size: .9em; }
.about-recent > h2 small { margin-left: 8px; color: #9a928a; font: 13px var(--sans); font-weight: 400; letter-spacing: .05em; }
.about-showcase { position: relative; min-height: 760px; margin-top: 54px; }
.about-list { display: grid; width: min(650px, 42vw); gap: 18px; }
.about-entry { display: grid; grid-template-columns: 100px 1fr; align-items: center; gap: 22px; min-height: 150px; padding: 24px; border: 1px solid #e5ddd5; border-radius: 20px; background: rgba(255,255,255,.2); outline: none; cursor: default; transition: transform .35s cubic-bezier(.19,1,.22,1), border-color .25s, background .25s, box-shadow .35s; }
.about-entry:hover, .about-entry:focus-visible { border-color: color-mix(in srgb, var(--row-accent) 55%, #e5ddd5); background: rgba(255,255,255,.62); box-shadow: 0 18px 48px rgba(70,54,42,.08); transform: translateX(12px); }
.about-entry-icon { width: 100px; height: 100px; object-fit: cover; border-radius: 14px; background: #fff; }
.about-entry > div { display: grid; gap: 14px; }
.about-entry strong { color: #56504b; font-family: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", sans-serif; font-size: clamp(19px, 1.4vw, 24px); font-weight: 600; line-height: 1.3; letter-spacing: -.02em; }
.about-entry span { color: #7f7770; font-family: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", sans-serif; font-size: 16px; font-weight: 400; line-height: 1.65; letter-spacing: .015em; }
.about-entry-preview figcaption { font-family: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", sans-serif; }
.about-entry-preview { position: absolute; z-index: 5; left: min(800px, 50vw); top: 80px; width: min(580px, 37vw); margin: 0; pointer-events: none; opacity: 0; transform: translate(36px, 12px) rotate(2deg) scale(.94); transition: opacity .28s, transform .55s cubic-bezier(.19,1,.22,1); }
.about-entry:nth-child(2) .about-entry-preview { top: 120px; transform: translate(36px, 12px) rotate(-2deg) scale(.94); }
.about-entry:nth-child(3) .about-entry-preview { top: 68px; width: min(580px, 37vw); }
.about-entry:nth-child(4) .about-entry-preview { top: 70px; }
.about-entry:hover .about-entry-preview, .about-entry:focus-visible .about-entry-preview { opacity: 1; transform: translate(0,0) rotate(-1deg) scale(1); }
.about-entry:nth-child(2):hover .about-entry-preview, .about-entry:nth-child(2):focus-visible .about-entry-preview { transform: translate(0,0) rotate(1deg) scale(1); }
.about-entry-preview img { width: 100%; max-height: 520px; object-fit: cover; object-position: top; border: 8px solid rgba(255,255,255,.84); border-radius: 20px; box-shadow: 0 26px 65px rgba(62,45,33,.16); }
.about-entry-preview-profile img { aspect-ratio: 4 / 5; object-position: center 18%; }
.about-entry-preview figcaption { width: max-content; max-width: 92%; margin: 10px 0 0 14px; padding: 9px 13px; border-radius: 999px; color: #6d655f; background: rgba(255,255,255,.88); font: 11px/1.4 var(--mono); box-shadow: 0 8px 22px rgba(62,45,33,.08); }
.about-cursors { position: absolute; inset: 0; overflow: clip; pointer-events: none; }
.about-cursors span { position: absolute; z-index: 8; display: grid; min-width: 118px; height: 54px; place-items: center; border-radius: 999px; color: #fff; font: 700 17px var(--sans); box-shadow: 0 12px 24px rgba(44,35,29,.14); }
.about-cursors i { position: absolute; left: -18px; top: -16px; width: 0; height: 0; border-top: 13px solid transparent; border-bottom: 13px solid transparent; border-right: 22px solid currentColor; transform: rotate(42deg); filter: drop-shadow(0 3px 3px rgba(0,0,0,.12)); }
.cursor-you { left: 78%; top: 85px; background: #272727; transform: translate(-50%,-50%); will-change: transform; }
.cursor-you i { color: #272727; }
.cursor-shiqi { right: 33%; top: 235px; background: #ff6348; will-change: transform; }
.cursor-shiqi i { color: #ff6348; }

/* Works: Jackie-Hu-inspired row browsing with pointer-following previews. */
.works { color: var(--white); background: var(--ink); }
.works-head { display: grid; grid-template-columns: 1.25fr .75fr; gap: 40px; padding-bottom: 84px; }
.works-head .section-label { grid-column: 1 / -1; }
.works-head h2 { margin: 76px 0 0; font-family: var(--serif); font-size: clamp(70px, 9vw, 142px); font-weight: 600; line-height: .98; letter-spacing: -.07em; }
.works-head > p { align-self: end; max-width: 470px; margin: 0 0 12px auto; color: rgba(250,250,250,.55); font-size: 17px; line-height: 1.8; }
.work-list { position: relative; padding: 0 30px 30px; --preview-x: 50%; --preview-y: 50%; }
.work-item { position: relative; z-index: 3; border-top: 1px solid rgba(250,250,250,.17); }
.work-item:last-of-type { border-bottom: 1px solid rgba(250,250,250,.17); }
.work-row { position: relative; z-index: 6; display: grid; grid-template-columns: 60px minmax(270px, 1.3fr) 1fr 150px 44px; align-items: center; width: 100%; min-height: 142px; padding: 0 10px; border: 0; color: var(--white); background: transparent; text-align: left; cursor: pointer; transition: padding .35s cubic-bezier(.19,1,.22,1), background .3s; }
.work-row:hover, .work-row:focus-visible { padding-left: 22px; background: rgba(255,255,255,.035); }
.work-row::before { content: ""; position: absolute; left: 0; top: 50%; width: 7px; height: 7px; border-radius: 50%; background: var(--project-accent); opacity: 0; transform: translateY(-50%) scale(0); transition: .3s; }
.work-row:hover::before, .work-row:focus-visible::before, .expanded .work-row::before { opacity: 1; transform: translateY(-50%) scale(1); }
.work-index, .work-period { color: rgba(250,250,250,.48); font: 11px var(--mono); }
.work-title { display: grid; gap: 7px; }
.work-title strong { font-family: var(--serif); font-size: clamp(30px, 3vw, 48px); font-weight: 600; letter-spacing: -.04em; }
.work-title small { color: rgba(250,250,250,.35); font: 10px var(--mono); letter-spacing: .08em; }
.work-tagline { color: rgba(250,250,250,.72); font-size: 17px; }
.work-arrow { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(250,250,250,.22); border-radius: 50%; font-size: 19px; transition: color .3s, background .3s, transform .3s; }
.work-row:hover .work-arrow, .expanded .work-arrow { color: var(--ink); background: var(--project-accent); border-color: transparent; transform: rotate(8deg); }
.floating-preview { position: absolute; z-index: 4; left: clamp(220px, var(--preview-x), calc(100% - 220px)); top: clamp(150px, var(--preview-y), calc(100% - 150px)); width: min(420px, 30vw); overflow: hidden; border: 8px solid #f6f1eb; border-radius: 14px; background: #111; box-shadow: 0 22px 55px rgba(0,0,0,.35); opacity: 0; pointer-events: none; transform: translate(-50%, -50%) rotate(-3deg) scale(.82); transition: opacity .22s, transform .45s cubic-bezier(.19,1,.22,1); }
.floating-preview.visible { opacity: .96; transform: translate(-50%, -50%) rotate(-3deg) scale(1); }
.floating-preview img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.floating-preview span { display: block; padding: 10px 12px; color: var(--ink); background: #f6f1eb; font: 9px var(--mono); }
.work-mobile-thumb { display: none; }
.project-stage { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; max-height: 0; padding: 0 18px; overflow: hidden; border-radius: 18px; color: var(--ink); background: var(--white); opacity: 0; transform: translateY(-16px); transition: max-height 1s cubic-bezier(.19,1,.22,1), opacity .35s, transform .55s cubic-bezier(.19,1,.22,1), padding .55s; }
.expanded .project-stage { max-height: 2200px; margin-bottom: 30px; padding: 28px; opacity: 1; transform: none; }
.stage-media { position: relative; min-height: 660px; overflow: hidden; border-radius: 13px; background: #111; }
.stage-media > img:first-child { width: 100%; height: 100%; object-fit: cover; }
.stage-alt { position: absolute; right: 22px; bottom: 22px; width: 43%; border: 5px solid #fff; border-radius: 11px; box-shadow: 0 14px 35px rgba(0,0,0,.28); transform: rotate(3deg); }
.stage-copy { display: flex; flex-direction: column; padding: 16px 10px 4px; }
.stage-meta { margin: 0; color: #777; font: 10px var(--mono); }
.stage-copy h3 { margin: 70px 0 24px; font-family: var(--serif); font-size: clamp(38px, 4.4vw, 70px); line-height: 1.12; letter-spacing: -.055em; }
.stage-overview { color: #65615d; font-size: 17px; line-height: 1.8; }
.stage-copy dl { margin: auto 0 30px; }
.stage-copy dl > div { display: grid; grid-template-columns: 90px 1fr; gap: 12px; padding: 14px 0; border-top: 1px solid #ddd; }
.stage-copy dl > div:last-child { border-bottom: 1px solid #ddd; }
.stage-copy dt { color: #777; font: 10px var(--mono); }
.stage-copy dd { margin: 0; font-size: 14px; line-height: 1.55; }
.stage-copy > button { display: flex; justify-content: space-between; align-items: center; min-height: 48px; padding: 0 18px; border: 0; border-radius: 999px; color: var(--white); background: var(--ink); cursor: pointer; }
.stage-copy > button span { color: var(--mint); }

/* Experience: editorial paper files, not resume paragraphs. */
.experience { position: relative; color: var(--graphite); background-color: #fef9f4; background-image: radial-gradient(rgba(84,70,59,.055) .7px, transparent .7px); background-size: 17px 17px; }
.experience.section-pad { padding-bottom: 52px; }
.experience-head { display: grid; grid-template-columns: .95fr 1.05fr; align-items: end; gap: 70px; margin: 64px 0 58px; }
.experience-head h2, .capabilities-head h2 { max-width: 680px; margin: 0; font-family: "PingFang SC", "Alibaba PuHuiTi", "HarmonyOS Sans SC", "Microsoft YaHei", sans-serif; font-size: clamp(38px, 4.2vw, 60px); font-weight: 600; line-height: 1.15; letter-spacing: -.045em; }
.experience-head > p { max-width: 560px; margin: 0 0 8px; color: #776f68; font-family: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", sans-serif; font-size: 16px; line-height: 1.85; }
.experience-list { position: relative; }
.scroll-stack-scroller { position: relative; width: 100%; overflow: visible; }
.scroll-stack-inner { position: relative; padding: 20px 0 46px; }
.scroll-stack-card { position: relative; z-index: 1; width: 100%; transform-origin: top center; will-change: transform, filter; backface-visibility: hidden; transform-style: preserve-3d; }
.scroll-stack-card:nth-child(2) { z-index: 2; }
.scroll-stack-card:nth-child(3) { z-index: 3; }
.scroll-stack-end { width: 100%; height: 1px; }
.experience-card { --experience-accent: var(--mint); position: relative; display: grid; grid-template-columns: 1fr; overflow: hidden; border: 1px solid rgba(67,54,45,.1); border-radius: 28px; background: #fffdfa; box-shadow: none; transform: none; transition: border-color .45s cubic-bezier(.19,1,.22,1); }
.experience-card::before { content: ""; position: absolute; left: 42px; top: 0; z-index: 2; width: 76px; height: 4px; border-radius: 0 0 999px 999px; background: var(--experience-accent); transition: width .65s cubic-bezier(.19,1,.22,1),opacity .3s ease; }
.experience-card:hover { border-color: rgba(67,54,45,.16); box-shadow: none; }
.experience-card { --metric-color: #00d1a7; }
.experience-card-alt { --metric-color: #2f63f2; }
.experience-card-kugou { --metric-color: #00bbff; }
.experience-card-alt, .experience-card-kugou { transform: none; }
.experience-card header { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: start; gap: 56px; padding: 38px 42px 24px; border: 0; border-radius: 0; background: transparent; }
.experience-card header small { display: flex; align-items: center; gap: 9px; color: #817970; font: 10px var(--mono); letter-spacing: .09em; }
.experience-card header small::before { content: ""; width: 6px; height: 6px; flex: 0 0 auto; border-radius: 50%; background: var(--experience-accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--experience-accent) 14%, transparent); }
.experience-card h3 { max-width: 760px; margin: 14px 0 7px; font-family: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", sans-serif; font-size: clamp(28px,2.35vw,38px); font-weight: 600; line-height: 1.24; letter-spacing: -.035em; }
.experience-card header p { margin: 0; color: #79716a; font: 12px/1.65 var(--mono); letter-spacing: .02em; }
.experience-meta { display: flex; align-items: center; justify-content: flex-end; flex-direction: row; flex-wrap: wrap; gap: 7px; color: #777069; font: 10px var(--mono); }
.experience-meta span { padding: 7px 10px; border: 0; border-radius: 999px; background: #f7f2ec; }
.experience-meta span:first-child { color: #393633; background: #f2ede6; }
.experience-body { display: grid; grid-template-columns: minmax(280px,.72fr) minmax(480px,1.28fr); align-items: end; gap: 64px; padding: 0 42px 38px; }
.experience-summary { max-width: 520px; margin: 0; color: #615b56; font-family: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", sans-serif; font-size: 16px; line-height: 1.82; letter-spacing: .01em; }
.experience-notes { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; margin: 0; padding: 0; list-style: none; counter-reset: exp-note; }
.experience-notes li { position: relative; min-height: 150px; padding: 42px 16px 16px; border: 1px solid rgba(77,61,49,.09); border-radius: 17px; color: #625b55; background: rgba(255,250,245,.62); font-family: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", sans-serif; font-size: 14px; line-height: 1.72; counter-increment: exp-note; }
.experience-notes li::before { content: "0" counter(exp-note); position: absolute; left: 16px; top: 14px; color: #8d837b; font: 10px var(--mono); }
.experience-results { align-self: end; }
.experience-results > p { margin: 0 0 17px; color: #918981; font: 9px var(--mono); letter-spacing: .12em; }
.metric-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: clamp(24px,3vw,54px); border: 0; }
.metric-grid-three { grid-template-columns: repeat(3,minmax(0,1fr)); }
.metric-grid-two { grid-template-columns: repeat(2,minmax(0,1fr)); }
.metric { display: flex; min-height: auto; flex-direction: column; justify-content: flex-start; gap: 11px; padding: 0; border: 0; border-radius: 0; background: transparent; }
.metric + .metric { padding-left: 0; }
.metric:nth-child(even), .metric:hover { transform: none; box-shadow: none; }
.metric strong { display: flex; align-items: baseline; flex-wrap: nowrap; color: #363334; font-family: "DIN Alternate", "Bahnschrift", "Arial Narrow", sans-serif; font-size: 48px; font-stretch: condensed; font-weight: 700; line-height: .9; letter-spacing: -.035em; font-variant-numeric: lining-nums tabular-nums; }
.count-up-text { display: inline-block; color: inherit; font: inherit; font-variant-numeric: inherit; }
.metric-unit { display: inline-block; max-width: none; margin-left: .04em; color: inherit; font-family: inherit; font-size: .58em; font-weight: 700; line-height: 1; transform: translateY(-.24em); }
.metric > span { max-width: 190px; color: #817970; font-family: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", sans-serif; font-size: 11px; line-height: 1.55; }
.metric-primary, .metric-dark { color: inherit; background: transparent; }
.metric-dark span { color: #817970; }
.metric-grid-three .metric-dark { grid-column: auto; }

.capabilities { min-height: 100svh; background: var(--paper); }
.capabilities.section-pad { padding-top: 70px; padding-bottom: 110px; }
.capabilities-head { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; margin: 86px 0 76px; }
.capabilities-head p { align-self: end; max-width: 390px; margin: 0 0 10px auto; color: var(--muted); font-size: 17px; line-height: 1.8; }
.capability-cards { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); grid-template-rows: repeat(5,92px); gap: 14px; }
.capability-cards article {
  --cap-accent: #21ffc0;
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  padding: 26px 28px 27px;
  border: 1px solid rgba(75,67,60,.14);
  border-radius: 24px;
  background: rgba(255,253,250,.94);
  box-shadow: none;
  transition: transform .42s cubic-bezier(.19,1,.22,1),border-color .32s ease,background .32s ease,opacity .3s ease;
}
.capability-cards article:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
.capability-cards article:nth-child(2) { --cap-accent: #8ca8ff; grid-column: 2; grid-row: 1 / span 2; }
.capability-cards article:nth-child(3) { --cap-accent: #f1a2c8; grid-column: 3 / span 2; grid-row: 1 / span 3; }
.capability-cards article:nth-child(4) { --cap-accent: #ffb86b; grid-column: 1 / span 2; grid-row: 3 / span 3; }
.capability-cards article:nth-child(5) { --cap-accent: #77c9e8; grid-column: 3; grid-row: 4 / span 2; }
.capability-cards article:nth-child(6) { --cap-accent: #b7d95a; grid-column: 4; grid-row: 4 / span 2; }
.capability-cards article:hover { transform: translateY(-4px); border-color: var(--cap-accent); background: #fffefa; }
.capability-cards:has(article:hover) article:not(:hover) { opacity: .7; }
.capability-cards article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 44px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: var(--cap-accent);
  opacity: .42;
  transition: width .65s cubic-bezier(.19,1,.22,1),opacity .3s ease;
}
.capability-cards article:hover::before { width: 122px; opacity: 1; }
.capability-cards header { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.capability-cards small,
.capability-cards em { color: #807871; font: 10px var(--mono); letter-spacing: .1em; }
.capability-cards small { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid rgba(75,67,60,.12); border-radius: 50%; background: rgba(255,255,255,.72); }
.capability-cards em { font-style: normal; }
.capability-visual { position: absolute; top: 60px; right: 28px; bottom: 72px; left: 28px; width: calc(100% - 56px); height: calc(100% - 132px); border-radius: 14px; object-fit: cover; object-position: center; opacity: .88; pointer-events: none; transition: opacity .35s ease, transform .55s cubic-bezier(.19,1,.22,1); }
.capability-card-prototype .capability-visual {
  top: auto;
  right: -9%;
  bottom: -22%;
  left: auto;
  width: 108%;
  height: 78%;
  padding: 0;
  border-radius: 0;
  background: transparent;
  object-fit: cover;
  opacity: .94;
  -webkit-mask-image: radial-gradient(ellipse 94% 90% at 76% 78%, #000 0 54%, rgba(0,0,0,.92) 66%, rgba(0,0,0,.42) 82%, transparent 100%);
  mask-image: radial-gradient(ellipse 94% 90% at 76% 78%, #000 0 54%, rgba(0,0,0,.92) 66%, rgba(0,0,0,.42) 82%, transparent 100%);
  object-position: center 46%;
  transform: rotate(-1.8deg);
}
.capability-cards article:hover .capability-visual { opacity: 1; transform: scale(1.015); }
.capability-card-prototype:hover .capability-visual { transform: rotate(-.8deg) scale(1.025); }
.capability-card-prototype .capability-copy { position: absolute; top: 74px; left: 28px; margin: 0; }
.capability-system-board {
  position: absolute;
  z-index: 0;
  top: 74px;
  right: 28px;
  left: 28px;
  display: grid;
  grid-template-columns: .72fr 1fr 1.9fr;
  gap: 10px;
}
.system-sample {
  min-width: 0;
  min-height: 116px;
  padding: 14px;
  border: 1px solid rgba(75,67,60,.11);
  border-radius: 16px;
  background: rgba(255,255,255,.36);
}
.system-sample > span {
  color: #8a8179;
  font: 9px/1 var(--mono);
  letter-spacing: .12em;
}
.system-sample-type strong {
  display: block;
  margin-top: 21px;
  color: #393633;
  font: 600 25px/1 "PingFang SC","Alibaba PuHuiTi","Microsoft YaHei",sans-serif;
  letter-spacing: -.035em;
}
.system-sample-type small {
  display: block;
  margin-top: 9px;
  color: #938a82;
  font: 8px/1 var(--mono);
  letter-spacing: .03em;
}
.system-sample-color div { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 5px; margin-top: 22px; }
.system-sample-color i {
  width: 100%;
  height: 42px;
  border: 1px solid rgba(75,67,60,.1);
  border-radius: 8px;
}
.system-sample-color i:nth-child(1) { background: #fee60a; }
.system-sample-color i:nth-child(2) { background: #37d8fc; }
.system-sample-color i:nth-child(3) { background: #725ef8; }
.system-sample-color i:nth-child(4) { background: #ffb342; }
.system-sample-color i:nth-child(5) { background: #54e631; }
.system-sample-component { padding: 10px 12px; }
.system-sample-component img {
  display: block;
  width: 100%;
  height: 88px;
  margin-top: 5px;
  object-fit: contain;
  object-position: center;
}
.capability-card-system .capability-copy { z-index: 2; }
.capability-copy { position: relative; z-index: 1; margin: auto 0 0; }
.capability-cards h3 { margin: 0 0 10px; font-family: "PingFang SC","Alibaba PuHuiTi","HarmonyOS Sans SC","Microsoft YaHei",sans-serif; font-size: clamp(20px,1.55vw,24px); font-weight: 600; line-height: 1.22; letter-spacing: -.025em; }
.capability-cards p { max-width: 34em; margin: 0; color: #625c56; font-size: 14px; line-height: 1.75; }
.capability-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 14px 0 0; padding: 0; list-style: none; }
.capability-tags li {
  padding: 6px 9px 5px;
  border: 1px solid rgba(75,67,60,.13);
  border-radius: 999px;
  color: #746d66;
  background: rgba(255,255,255,.52);
  font: 10px/1.1 var(--mono);
  letter-spacing: .025em;
  transition: border-color .28s ease,color .28s ease,background .28s ease;
}
.capability-cards article:hover .capability-tags li { border-color: color-mix(in srgb,var(--cap-accent) 58%,#8d857d); color: #403b37; background: rgba(255,255,255,.8); }

.scroll-stack-card.is-stack-active .experience-card {
  border-color: color-mix(in srgb,var(--experience-accent) 32%,#9a928a);
}
.scroll-stack-card.is-stack-active .experience-card::before,
.experience-card:hover::before { width: 152px; opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .text-type__cursor { animation: none; opacity: 1; }
  .capability-cards article { transition: none; }
  .capability-cards article:hover { transform: none; }
  .capability-cards article::before,
  .experience-card::before { transition: none; }
}

.contact { position: relative; display: flex; min-height: 100svh; flex-direction: column; overflow: hidden; padding: 80px 30px 30px; color: var(--graphite); background: var(--paper); }
.contact::before { content: ""; position: absolute; z-index: 0; right: -150px; top: 16%; width: 430px; height: 430px; border: 1px dashed rgba(62,62,66,.09); border-radius: 50%; box-shadow: 0 0 0 52px rgba(33,255,192,.018), 0 0 0 104px rgba(33,255,192,.012); }
.contact > * { position: relative; z-index: 1; }
.contact-main { position: relative; max-width: 1180px; margin-top: auto; }
.falling-text-container { position: relative; width: 100%; overflow: hidden; outline: none; cursor: pointer; }
.falling-text-target { position: relative; z-index: 2; width: 100%; height: 100%; }
.falling-line { display: flex; align-items: baseline; flex-wrap: wrap; column-gap: .32em; color: #464246; }
.falling-word { display: inline-block; user-select: none; white-space: nowrap; }
.falling-text-canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.falling-text-canvas canvas { display: block; }
.contact-falling { height: clamp(320px,42vh,430px); }
.contact-falling-kicker { margin-bottom: 24px; font: 400 clamp(16px,1.15vw,19px)/1.6 var(--mono); letter-spacing: .01em; }
.contact-falling-headline { font: 500 clamp(36px,4.35vw,68px)/1.18 var(--mono); letter-spacing: -.03em; }
.contact-falling-headline + .contact-falling-headline { margin-top: .13em; }
.contact-falling.is-falling .falling-line { display: block; margin: 0; }
.contact-click-doodle { position: absolute; z-index: 5; right: 8px; bottom: 8px; display: block; width: 116px; pointer-events: none; transform: rotate(-4deg); transform-origin: 50% 100%; animation: contact-click-nudge 1.85s ease-in-out infinite; }
.contact-click-doodle img { display: block; width: 100%; height: auto; filter: saturate(.82) contrast(.96); }
.contact-main:has(.contact-falling.is-falling) .contact-click-doodle { opacity: 0; transition: opacity .2s; }
.contact-main:hover .contact-click-doodle, .contact-main:focus-within .contact-click-doodle { animation-duration: .82s; }
@keyframes contact-click-nudge { 0%,100% { translate: 0 0; rotate: 0deg; } 45% { translate: 1px -4px; rotate: 4deg; } 72% { translate: -1px 1px; rotate: -2deg; } }
.email { display: flex; align-items: center; width: max-content; max-width: 100%; gap: 16px; margin-top: 34px; padding: 2px 3px 5px 1px; border: 0; color: var(--graphite); background: transparent; text-align: left; cursor: pointer; }
.email-sticker { position: relative; display: grid; width: 66px; height: 60px; flex: 0 0 auto; place-items: center; border: 2.2px solid #3f3a37; border-radius: 47% 53% 45% 55% / 53% 44% 56% 47%; color: #3f3a37; background: rgba(255,255,255,.72); box-shadow: 3px 3px 0 var(--mint); transform: rotate(-6deg); transition: transform .55s cubic-bezier(.19,1,.22,1), box-shadow .35s; }
.email-sticker i { position: relative; display: block; width: 28px; height: 20px; border: 2.3px solid currentColor; border-radius: 2px 3px 3px 2px; transform: rotate(3deg); }
.email-sticker i::before { content: ""; position: absolute; top: -8px; left: 4px; width: 15px; height: 15px; border-right: 2.3px solid currentColor; border-bottom: 2.3px solid currentColor; transform: rotate(45deg); }
.email-sticker b { position: absolute; right: -7px; bottom: 0; font: 800 12px/1 "Segoe Script", cursive; letter-spacing: -.04em; transform: rotate(-8deg); }
.email:hover .email-sticker, .email:focus-visible .email-sticker { transform: rotate(4deg) scale(1.08); }
.email:hover .email-sticker, .email:focus-visible .email-sticker { box-shadow: 4px 4px 0 var(--mint); }
.email-copy { display: grid; gap: 5px; min-width: 0; padding: 0 0 7px; border-bottom: 1.5px solid rgba(63,58,55,.28); transition: border-color .25s; }
.email:hover .email-copy, .email:focus-visible .email-copy { border-color: #514c48; }
.email-copy small { color: #8d857e; font: 600 10px/1 var(--mono); letter-spacing: .08em; }
.email-copy strong { overflow-wrap: anywhere; color: #3f3a37; font: 400 clamp(17px,1.3vw,21px)/1.2 var(--mono); letter-spacing: -.02em; }
.email-arrow { display: grid; width: 34px; height: 34px; flex: 0 0 auto; place-items: center; border: 1.8px solid rgba(63,58,55,.28); border-radius: 50%; color: #3f3a37; background: transparent; font: 700 17px/1 var(--mono); transition: transform .35s, background .25s, border-color .25s; }
.email:hover .email-arrow, .email:focus-visible .email-arrow { border-color: var(--mint); background: var(--mint); transform: rotate(12deg); }
.contact-meta { display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 30px; align-items: end; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(62,55,49,.09); color: #8e867f; }
.contact-meta > div { display: grid; gap: 7px; }
.contact-meta small { color: #aca49d; font: 9px var(--mono); letter-spacing: .05em; }
.contact-meta p, .contact-meta a { margin: 0; font-size: 12px; }
.contact-meta > a { width: max-content; border-bottom: 1px solid rgba(62,55,49,.18); }
.footer-signature { position: absolute; z-index: 0; right: 5%; bottom: 10%; color: #3e3e42; font: clamp(54px,8vw,120px)/1 "Segoe Script", cursive; opacity: .055; transform: rotate(-7deg); }

.notice { position: fixed; left: 50%; bottom: 24px; z-index: 100; padding: 14px 18px; border-radius: 999px; color: var(--ink); background: var(--mint); box-shadow: 0 12px 38px rgba(0,0,0,.22); font: 12px var(--mono); opacity: 0; pointer-events: none; transform: translate(-50%, 25px); transition: .35s cubic-bezier(.19,1,.22,1); }
.notice.show { opacity: 1; transform: translate(-50%,0); }

@media (max-width: 1180px) {
  .hero { height: 960px; min-height: 960px; }
  .hero-copy { width: min(520px,46vw); }
  .desk-collage-left { left: -46px; height: 878px; transform: scale(.66); }
  .desk-collage-right { right: -46px; height: 878px; transform: scale(.66); }
  .desk-record { --object-scale: .84; right: 10px; transform: scale(var(--object-scale)); transform-origin: right top; }
  .airdrop-card-live { --card-scale: .72; right: 74px; top: 510px; transform-origin: right top; }
  .about-shell { padding-inline: 30px; }
  .about-cooking::before, .about-recent::before { left: 30px; }
  .about-cooking::after, .about-recent::after { left: 70px; }
  .about-list { width: 48vw; }
  .about-entry-preview { left: 53vw; width: 42vw; }
  .work-row { grid-template-columns: 50px 1.2fr 1fr 120px 44px; }
}

@media (max-width: 900px) {
  .site-nav nav { display: none; }
  .site-nav .bubble-menu-pills { display: grid; }
  .bubble-menu-overlay { padding: 96px 20px 24px; }
  .bubble-menu-pills { grid-template-columns: 1fr; gap: 9px; }
  .bubble-menu-pill, .bubble-menu-pill:nth-child(4), .bubble-menu-pill:nth-child(5) { min-height: 78px; grid-column: auto; transform: rotate(calc(var(--bubble-rotation) * .4)); }
  .bubble-menu-pill span { font-size: 27px; }
  .bubble-menu-pill small { right: 24px; top: 17px; }
  .sm-menu-panel { width: min(500px,calc(100vw - 24px)); }
  .sm-menu-underlays { width: min(520px,calc(100vw - 16px)); }
  .section-pad { padding: 100px 24px; }
  .hero { height: 900px; min-height: 900px; }
  .hero-copy { top: 38%; width: min(500px,52vw); }
  .desk-collage-left { left: -68px; height: 878px; transform: scale(.54); opacity: .92; }
  .desk-collage-right { right: -68px; height: 878px; transform: scale(.54); opacity: .92; }
  .desk-record { --object-scale: .72; right: -8px; transform: scale(var(--object-scale)); transform-origin: right top; }
  .airdrop-card-live { --card-scale: .56; right: 16px; top: 505px; transform-origin: right top; }
  .about-cooking { min-height: 500px; padding-top: 118px; padding-bottom: 72px; }
  .about-cooking::before { top: 82px; }
  .about-cooking::after { top: 91px; }
  .about-recent::before { top: 14px; }
  .about-recent::after { top: 23px; }
  .about-cooking .cooking-project { margin-top: 44px; }
  .about-recent { min-height: auto; padding-top: 60px; padding-bottom: 110px; }
  .about-showcase { min-height: auto; }
  .about-list { width: 100%; }
  .about-entry { grid-template-columns: 90px 1fr; }
  .about-entry-icon { width: 90px; height: 90px; }
  .about-entry-preview, .about-entry:nth-child(2) .about-entry-preview, .about-entry:nth-child(3) .about-entry-preview, .about-entry:nth-child(4) .about-entry-preview { position: relative; left: auto; top: auto; grid-column: 1 / -1; width: 100%; max-height: 0; overflow: hidden; opacity: 0; transform: none; transition: max-height .65s cubic-bezier(.19,1,.22,1), opacity .3s, margin .4s; }
  .about-entry:hover .about-entry-preview, .about-entry:focus-visible .about-entry-preview, .about-entry:nth-child(2):hover .about-entry-preview, .about-entry:nth-child(2):focus-visible .about-entry-preview { max-height: 620px; margin-top: 8px; opacity: 1; transform: none; }
  .about-cursors { display: none; }
  .experience-head { grid-template-columns: 1fr; margin: 54px 0 52px; }
  .experience-head > p { margin-left: 0; }
  .experience-card { grid-template-columns: 1fr; }
  .experience-card header { grid-template-columns: 1fr; min-height: auto; gap: 20px; border: 0; border-radius: 0; }
  .experience-body { grid-template-columns: 1fr; }
  .experience-notes { grid-template-columns: 1fr; }
  .experience-notes li { min-height: auto; }
  .metric-grid, .metric-grid-three { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .experience-meta { align-items: flex-start; justify-content: flex-start; }
  .works-head { grid-template-columns: 1fr; }
  .works-head > p { margin-left: 0; }
  .floating-preview { display: none; }
  .work-row { grid-template-columns: 48px 1fr 100px 40px; min-height: 120px; }
  .work-tagline { display: none; }
  .work-mobile-thumb { display: block; overflow: hidden; max-height: 0; border-radius: 14px; opacity: 0; transition: max-height .6s cubic-bezier(.19,1,.22,1), opacity .3s, margin .4s; }
  .work-item.expanded .work-mobile-thumb { max-height: 480px; margin: 0 10px 16px; opacity: 1; }
  .work-mobile-thumb img { width: 100%; max-height: 480px; object-fit: cover; object-position: top; }
  .project-stage { grid-template-columns: 1fr; }
  .stage-media { min-height: 560px; }
  .capability-cards { grid-template-columns: repeat(2,minmax(0,1fr)); grid-template-rows: none; grid-auto-rows: minmax(250px,auto); }
  .capability-cards article:nth-child(n) { min-height: 250px; grid-column: auto; grid-row: auto; }
}

@media (max-width: 640px) {
  .site-nav { inset: 12px 14px auto; }
  .brand { width: 48px; height: 48px; }
  .bubble-menu-toggle { min-width: 86px; height: 46px; padding: 0 14px; }
  .bubble-menu-overlay { padding: 78px 14px 14px; }
  .bubble-menu-pill, .bubble-menu-pill:nth-child(4), .bubble-menu-pill:nth-child(5) { min-height: 68px; }
  .bubble-menu-pill span { font-size: 24px; }
  .menu-button { height: 46px; }
  .sm-menu-toggle { min-width: 94px; }
  .sm-menu-panel { width: 100vw; padding: 94px 22px 24px; }
  .sm-menu-underlays { width: 100vw; }
  .sm-menu-links { margin-top: 24px; }
  .sm-menu-links a { grid-template-columns: 28px 1fr auto; padding: 15px 0; }
  .sm-menu-links span { font-size: 32px; }
  .section-pad { padding: 82px 18px; }
  .hero { height: 850px; min-height: 850px; overflow: hidden; }
  .hero-copy { top: 37.5%; width: calc(100vw - 34px); }
  .about-cooking::before, .about-recent::before { left: 18px; }
  .about-cooking::after, .about-recent::after { left: 58px; }
  .about-cooking::before { top: 72px; }
  .about-cooking::after { top: 81px; }
  .hero-eyebrow { font-size: 10px; }
  .hero h1 { font-size: clamp(54px, 16vw, 72px); }
  .hero-statement { margin-top: 22px; font-size: 15px; }
  .hero-statement i { font-size: 10px; }
  .hero-intro { margin-top: 24px; font-size: 14px; line-height: 1.65; }
  .hero-actions { gap: 8px; margin-top: 34px; }
  .hero-actions a { gap: 9px; padding: 0 14px; font-size: 13px; }
  .desk-collage-left { left: -88px; height: 878px; transform: scale(.46); opacity: .78; }
  .desk-collage-right { right: -76px; height: 878px; transform: scale(.46); opacity: .78; }
  .airdrop-card-live { display: none; }
  .hero-status { display: none; }
  .scroll-hint { right: 15px; bottom: 24px; font-size: 9px; }
  .about-shell { padding-inline: 18px; }
  .about-cooking { min-height: auto; padding-top: 76px; padding-bottom: 66px; }
  .about-cooking .cooking-project { gap: 8px; margin-top: 44px; font-size: 15px; line-height: 1.7; }
  .cooking-sticker { width: 43px; height: 43px; font-size: 23px; }
  .cooking-fuzzy, .cooking-fuzzy-canvas { font-size: 20px; }
  .about-cooking .cooking-description, .about-cooking .cooking-status { margin-top: 24px; font-size: 15px; line-height: 1.75; }
  .about-cooking .cooking-status { margin-top: 7px; }
  .about-recent { padding-top: 48px; padding-bottom: 82px; }
  .about-recent > h2 { flex-wrap: wrap; font-size: 21px; }
  .about-recent > h2 small { flex-basis: 100%; margin: 2px 0 0; }
  .about-showcase { margin-top: 36px; }
  .about-entry { grid-template-columns: 72px 1fr; gap: 15px; min-height: 118px; padding: 16px; border-radius: 16px; }
  .about-entry:hover, .about-entry:focus-visible { transform: none; }
  .about-entry-icon { width: 72px; height: 72px; border-radius: 11px; }
  .about-entry > div { gap: 8px; }
  .about-entry strong { font-size: 17px; }
  .about-entry span { font-size: 13px; }
  .about-entry-preview img { border-width: 5px; border-radius: 14px; }
  .about-entry-preview figcaption { width: auto; max-width: 100%; margin-left: 0; border-radius: 12px; }
  .experience-head { margin: 44px 0 36px; }
  .experience-head h2 { font-size: 38px; }
  .experience.section-pad { padding-bottom: 46px; }
  .capabilities.section-pad { padding-top: 58px; }
  .scroll-stack-inner { display: grid; gap: 42px; padding: 0; }
  .scroll-stack-card { margin-bottom: 0 !important; transform: none !important; filter: none !important; }
  .experience-card { padding: 0; border-radius: 22px; }
  .experience-card::before { left: 22px; width: 58px; height: 3px; }
  .experience-card header { gap: 18px; padding: 28px 22px 20px; border-radius: 0; }
  .experience-card h3 { margin-top: 13px; font-size: 26px; }
  .experience-body { gap: 28px; padding: 0 22px 26px; }
  .experience-notes { gap: 9px; }
  .experience-notes li { padding: 40px 14px 14px; font-size: 13px; }
  .metric-grid, .metric-grid-three { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px 18px; }
  .metric-grid-three .metric:last-child { grid-column: 1 / -1; padding-left: 0; border: 0; }
  .metric { min-height: auto; padding: 0; }
  .metric + .metric { padding-left: 0; }
  .metric strong { font-size: 42px; }
  .works-head h2 { margin-top: 58px; font-size: 62px; }
  .work-list { padding: 0 15px 15px; }
  .work-row { grid-template-columns: 34px 1fr 35px; min-height: 110px; padding: 0 4px; }
  .work-period { display: none; }
  .work-title strong { font-size: 26px; }
  .work-title small { font-size: 8px; }
  .work-arrow { width: 34px; height: 34px; }
  .work-item.expanded .work-mobile-thumb { margin-inline: 0; }
  .expanded .project-stage { margin-bottom: 15px; padding: 15px; }
  .stage-media { min-height: 390px; }
  .stage-copy { padding: 12px 2px 2px; }
  .stage-copy h3 { margin-top: 44px; font-size: 40px; }
  .stage-overview { font-size: 16px; }
  .stage-copy dl > div { grid-template-columns: 72px 1fr; }
  .capabilities-head { grid-template-columns: 1fr; margin: 58px 0 70px; }
  .capabilities-head h2 { font-size: 40px; }
  .capabilities-head p { margin-left: 0; }
  .capability-cards { grid-template-columns: 1fr; grid-template-rows: none; grid-auto-rows: minmax(220px,auto); gap: 12px; }
  .capability-cards article:nth-child(n) { min-height: 220px; grid-column: auto; grid-row: auto; padding: 22px 20px 20px; }
  .capability-cards h3 { font-size: 24px; }
  .capability-system-board { top: 60px; right: 20px; left: 20px; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 7px; }
  .system-sample { min-height: 72px; padding: 9px; border-radius: 12px; }
  .system-sample > span { font-size: 7px; }
  .system-sample-type strong { margin-top: 12px; font-size: 18px; }
  .system-sample-type small { margin-top: 5px; font-size: 6px; }
  .system-sample-color div { gap: 3px; margin-top: 12px; }
  .system-sample-color i { height: 24px; border-radius: 5px; }
  .system-sample-component { padding: 6px 7px; }
  .system-sample-component img { height: 58px; margin-top: 2px; }
  .contact { min-height: 820px; padding: 70px 18px 24px; }
  .contact-falling { height: 300px; }
  .contact-falling-kicker { margin-bottom: 18px; font-size: 14px; line-height: 1.55; }
  .contact-falling-headline { font-size: clamp(28px,7.6vw,40px); line-height: 1.22; letter-spacing: -.025em; }
  .text-type__cursor { width: 4px; }
  .contact-click-doodle { right: 2px; bottom: 5px; width: 100px; transform-origin: right bottom; }
  .email { width: max-content; gap: 12px; margin-top: 32px; }
  .email-sticker { width: 58px; height: 54px; }
  .email-arrow { width: 30px; height: 30px; font-size: 15px; }
  .contact-meta { grid-template-columns: 1fr; gap: 24px; }
  .contact-meta > a { width: max-content; margin-top: 15px; }
  .footer-signature { right: -2%; bottom: 8%; font-size: 58px; opacity: .05; }
}

@media (hover: none) {
  .desk-object { animation: none !important; }
  .floating-preview { display: none; }
}

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