:root {
  color-scheme: dark;
  --bg: #000;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --text: #f2f2f2;
  --muted: rgba(255, 255, 255, 0.58);
  --line: rgba(255, 255, 255, 0.14);
  --blue: #006bff;
  --gap: clamp(1rem, 1.6vw, 1.5rem);
  --section-action-content-gap: clamp(3.25rem, 6.8vh, 4.5rem);
  --font-body: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Arial Black", "Microsoft YaHei", Arial, sans-serif;
  --hero-text-width: 18rem;
  --hero-letter-spacing: .04em;
}

* { box-sizing: border-box; }

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-x: none;
  background: #000;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 320px;
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-x: none;
  touch-action: pan-y;
  background: #000;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

main > section {
  position: relative;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(-120px, -120px, 0);
  will-change: transform, opacity;
}

html.has-custom-cursor,
html.has-custom-cursor * { cursor: none !important; }

.cursor.is-visible { opacity: 1; visibility: visible; }

.cursor-label {
  position: absolute;
  top: 0;
  left: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
  white-space: nowrap;
}

.cursor-arrow { position: absolute; top: 0; left: 0; width: 18px; height: 22px; overflow: visible; }
.cursor-arrow path { fill: #fff; stroke: #000; stroke-width: 1.2; stroke-linejoin: round; }

@media (pointer: coarse), (max-width: 768px) { .cursor { display: none; } }

.reference-showcase-section { min-height: 100svh; overflow: hidden; background: #000; color: #f2f2ef; }
.reference-showcase-section::after { display: none; }
.reference-showcase-ticker { position: absolute; top: clamp(7.5rem, 14.5vh, 10rem); left: 0; right: 0; z-index: 1; overflow: hidden; padding: 12px 0 24px; opacity: .08; filter: blur(8px); transform: translateY(18px); transition: opacity .95s cubic-bezier(.2,.7,.1,1), filter .95s cubic-bezier(.2,.7,.1,1), transform .95s cubic-bezier(.2,.7,.1,1); mask-image: linear-gradient(90deg, transparent, #000 4% 96%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 4% 96%, transparent); }
.reference-showcase-ticker::before, .reference-showcase-ticker::after { position: absolute; left: 0; right: 0; z-index: 2; height: 24px; content: ""; pointer-events: none; }
.reference-showcase-ticker::before { top: 0; background: linear-gradient(to bottom, #000, transparent); }
.reference-showcase-ticker::after { bottom: 0; background: linear-gradient(to top, #000, transparent); }
.reference-showcase-section.is-visible .reference-showcase-ticker { opacity: 1; filter: blur(0); transform: translateY(0); }
.reference-showcase-track { display: flex; align-items: center; gap: 12px; width: max-content; animation: reference-showcase-ticker 42s linear infinite; will-change: transform; }
.reference-showcase-ticker:hover .reference-showcase-track { animation-play-state: running; }
.reference-showcase-card { position: relative; flex: 0 0 300px; aspect-ratio: 16 / 9; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.09); border-radius: 4px; background: #111113; box-shadow: 0 12px 34px rgba(0,0,0,.18); transform: translateZ(0) scale(1); transition: transform .45s cubic-bezier(.2,.72,.18,1), border-color .35s, box-shadow .45s; }
.reference-showcase-card::after { position: absolute; inset: 0; content: ""; pointer-events: none; background: linear-gradient(rgba(3,3,4,.03), rgba(3,3,4,.16)); box-shadow: inset 0 0 0 1px rgba(255,255,255,.02); transition: opacity .35s; }
.reference-showcase-card img, .reference-showcase-card video { display: block; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) saturate(.05) brightness(.76) contrast(1.04); transform: scale(1.012); transition: filter .45s, transform .55s cubic-bezier(.2,.72,.18,1); }
.reference-showcase-section:not(.is-visible) .reference-showcase-card img, .reference-showcase-section:not(.is-visible) .reference-showcase-card video { filter: blur(8px) grayscale(1) saturate(.05) brightness(.76) contrast(1.04); }
.reference-showcase-card:hover, .reference-showcase-card.is-touch-active { z-index: 2; border-color: rgba(156,187,255,.34); box-shadow: 0 20px 50px rgba(0,0,0,.42), 0 0 34px rgba(76,118,209,.13); transform: translateY(-4px) scale(1.045); }
.reference-showcase-card:hover::after, .reference-showcase-card.is-touch-active::after { opacity: .15; }
.reference-showcase-card:hover img, .reference-showcase-card.is-touch-active img, .reference-showcase-card:hover video, .reference-showcase-card.is-touch-active video { filter: grayscale(0) saturate(1) brightness(1) contrast(1); transform: scale(1.025); }
@keyframes reference-showcase-ticker { to { transform: translateX(calc(-50% - 6px)); } }
@keyframes reference-showcase-letter-reveal { from { opacity: 0; filter: blur(7px); transform: translateY(.16em); } to { opacity: 1; filter: blur(0); transform: translateY(0); } }
@keyframes reference-showcase-card-reveal { from { opacity: .08; } to { opacity: 1; } }
.reference-showcase-title-panel { position: absolute; inset: 0; z-index: 2; display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: end; gap: clamp(48px,8vw,150px); min-height: 100svh; padding: clamp(40px,5vh,64px) 30px clamp(48px,6.8vh,70px); pointer-events: none; }
.reference-showcase-title, .reference-showcase-arrow { pointer-events: auto; }
.reference-showcase-title { position: relative; display: flex; flex-direction: column; align-items: flex-start; justify-self: start; width: max-content; max-width: 100%; overflow: visible; color: #f2f2ef; font-size: clamp(42px,4.2vw,70px); font-weight: 600; line-height: 1.03; letter-spacing: -.045em; row-gap: .12em; white-space: nowrap; opacity: .08; filter: blur(8px); transform: translateY(24px); transition: opacity .88s cubic-bezier(.2,.7,.1,1), filter .88s cubic-bezier(.2,.7,.1,1), transform .88s cubic-bezier(.2,.7,.1,1); }
.reference-showcase-title.is-pixel-active .reference-showcase-word { opacity: 0; }
.reference-showcase-letter { display: inline-block; opacity: 0; filter: blur(7px); transform: translateY(.16em); }
.reference-showcase-section.is-visible .reference-showcase-letter { animation: reference-showcase-letter-reveal .72s cubic-bezier(.2,.7,.1,1) forwards; animation-delay: calc(var(--reference-showcase-letter-index) * 18ms); }
.reference-showcase-section.is-visible .reference-showcase-card { animation: reference-showcase-card-reveal .9s cubic-bezier(.2,.7,.1,1) var(--reference-showcase-reveal-delay) both; }
.reference-showcase-pixel-layer { position: absolute; top: 0; left: 0; z-index: 2; display: block; max-width: none; opacity: 0; pointer-events: none; transition: opacity .12s ease; }
.reference-showcase-title.is-pixel-active .reference-showcase-pixel-layer { opacity: 1; }
.reference-showcase-section.is-visible .reference-showcase-title { opacity: 1; filter: blur(0); transform: translateY(0); }
.reference-showcase-title-line { display: flex; align-items: baseline; justify-content: flex-start; gap: .2em; min-height: 1.03em; }
.reference-showcase-title-line:first-child .reference-showcase-word { width: min(900px, 100%); }
.reference-showcase-title-line--visual { gap: .36em; }
.reference-showcase-word { --reference-showcase-x: 0px; --reference-showcase-y: 0px; --reference-showcase-r: 0deg; display: inline-block; transform: translate3d(var(--reference-showcase-x),var(--reference-showcase-y),0) rotate(var(--reference-showcase-r)); transform-origin: 50%; will-change: transform; transition: transform .68s cubic-bezier(.18,.78,.16,1); }
.reference-showcase-dots { position: relative; z-index: 3; display: inline-flex; align-self: center; align-items: center; gap: .11em; margin-left: .06em; transform: translateY(.02em); }
.reference-showcase-dots i { width: .28em; height: .28em; border-radius: 50%; background: #ff58aa; box-shadow: 0 0 18px rgba(255,88,170,.25); transition: transform .5s cubic-bezier(.2,.78,.18,1); will-change: transform; }
.reference-showcase-dots i:nth-child(2) { background: #1268ff; box-shadow: 0 0 18px rgba(18,104,255,.3); }
.reference-showcase-dots i:nth-child(3) { background: #9cff3b; box-shadow: 0 0 18px rgba(156,255,59,.25); }
.reference-showcase-title:hover .reference-showcase-dots i:first-child, .reference-showcase-title:focus-visible .reference-showcase-dots i:first-child { transform: translate(-7px,-4px); }
.reference-showcase-title:hover .reference-showcase-dots i:nth-child(2), .reference-showcase-title:focus-visible .reference-showcase-dots i:nth-child(2) { transform: translateY(5px); }
.reference-showcase-title:hover .reference-showcase-dots i:nth-child(3), .reference-showcase-title:focus-visible .reference-showcase-dots i:nth-child(3) { transform: translate(7px,-3px); }
.reference-showcase-arrow { position: relative; display: grid; place-items: center; width: clamp(80px,6.4vw,108px); aspect-ratio: 1; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; color: #f2f2ef; background: radial-gradient(circle,rgba(121,159,255,.07),transparent 68%); box-shadow: inset 0 0 0 7px #000, 0 0 0 1px rgba(255,255,255,.035); transform: rotate(0deg); transform-origin: 50%; will-change: transform; transition: transform .8s cubic-bezier(.18,.78,.16,1), border-color .35s, background .35s, box-shadow .45s; }
.reference-showcase-arrow::after { position: absolute; top: 12%; right: 12%; width: 7px; height: 7px; content: ""; border-radius: 50%; background: #d8e8ff; box-shadow: 0 0 16px rgba(120,181,255,.75); }
.reference-showcase-arrow i { position: relative; display: block; width: 52%; aspect-ratio: 1; }
.reference-showcase-arrow i::before { position: absolute; top: 50%; left: 3%; width: 88%; height: 2px; content: ""; background: currentColor; transform: rotate(45deg); }
.reference-showcase-arrow i::after { position: absolute; right: 8%; bottom: 8%; width: 33%; aspect-ratio: 1; content: ""; border-right: 2px solid; border-bottom: 2px solid; }
.reference-showcase-arrow:hover, .reference-showcase-arrow:focus-visible { border-color: rgba(155,194,255,.62); background: radial-gradient(circle,rgba(107,149,255,.16),transparent 66%); box-shadow: inset 0 0 0 7px #000, 0 0 42px rgba(86,139,255,.15); transform: rotate(180deg); }
@media (max-width: 900px) { .reference-showcase-card { flex-basis: 260px; } .reference-showcase-title { font-size: clamp(38px,5.8vw,56px); } .reference-showcase-arrow { width: 82px; } }
@media (max-width: 560px) { .reference-showcase-ticker { top: 18vh; } .reference-showcase-card { flex-basis: 232px; } .reference-showcase-track { animation: reference-showcase-ticker 42s linear infinite; } .reference-showcase-title-panel { grid-template-columns: 1fr; align-content: end; gap: 54px; padding: 72px 30px 62px; } .reference-showcase-title { width: calc(100vw - 60px); max-width: calc(100vw - 60px); font-size: clamp(24px,7.2vw,38px); line-height: .95; row-gap: .16em; white-space: normal; } .reference-showcase-title-line:first-child .reference-showcase-word { width: auto; } .reference-showcase-title-line { flex-wrap: wrap; } .reference-showcase-title-line--visual { gap: .32em; } .reference-showcase-arrow { justify-self: end; width: 74px; } }

main > section:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 5;
  height: clamp(4.5rem, 10vh, 8rem);
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,.72) 58%, #000 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 36%, #000 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 36%, #000 100%);
}

.hero::after,
#section2::after,
#noth-mask-reveal::after,
.software-tools-section::after {
  display: none;
}

body.is-light {
  --day-text: #00ffea;
  --day-muted: rgba(0, 255, 234, .7);
}

body.is-light main > section:not(.hero) :where(
  h1, h2, h3, h4, strong, label,
  a, button, input, textarea,
  .time-label, .volume-value
) ,
body.is-light :where(.contact-modal, .message-modal, .lanyard-card) :where(
  h1, h2, h3, h4, strong, label,
  a, button, input, textarea
) {
  color: var(--day-text) !important;
}

body.is-light main > section:not(.hero) :where(
  p, small,
  .section-copy, .section-subtitle,
  .portfolio-card-copy p, .visual-project-copy p,
  .message-form-status, .profile-message
) ,
body.is-light :where(.contact-modal, .message-modal, .lanyard-card) :where(
  p, small, .message-form-status, .profile-message
) {
  color: var(--day-muted) !important;
}

body.is-light main > section:not(.hero) :where(input, textarea)::placeholder,
body.is-light :where(.contact-modal, .message-modal, .lanyard-card) :where(input, textarea)::placeholder {
  color: var(--day-muted);
}

a, button { color: inherit; font: inherit; }
a { text-decoration: none; }
button, a, [role="button"] { cursor: pointer; }
button { border: 0; }

.liquid-glass-window,
.hero-button,
.section-actions a,
.section-actions button,
.portfolio-card a,
.detail-button,
.row-arrows button,
.visual-detail-arrows button,
.detail-back {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1.2rem 3.5rem rgba(0,0,0,.28);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: transform 220ms cubic-bezier(.2,1,.22,1), border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.hero-button:hover,
.section-actions a:hover,
.section-actions button:hover,
.portfolio-card a:hover,
.detail-button:hover,
.row-arrows button:hover,
.visual-detail-arrows button:hover,
.detail-back:hover {
  transform: none;
  border-color: rgba(255,255,255,.36);
  background: rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.26), inset 0 0 0 1px rgba(255,255,255,.06);
}

.top-nav-overlay {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  pointer-events: none;
}

body.has-nav-backdrop .top-nav-overlay::before {
  position: absolute;
  inset: 0 .85rem auto 0;
  z-index: 0;
  height: clamp(5.75rem, 11vh, 8rem);
  content: "";
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,.08), rgba(0,0,0,.025) 42%, transparent 100%);
  backdrop-filter: blur(18px) saturate(115%);
  -webkit-backdrop-filter: blur(18px) saturate(115%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 28%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 28%, transparent 100%);
}

body.has-nav-backdrop .top-nav,
body.has-nav-backdrop .top-nav-tools {
  z-index: 1;
}

.top-nav {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 3rem), 90rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.35rem, 1.8vw, 2.15rem);
  font-family: "Microsoft YaHei", Arial, sans-serif;
  font-weight: 600;
  font-size: .82rem;
  color: #fff;
  pointer-events: auto;
}

.top-nav-brand {
  display: inline-flex;
  align-items: center;
  width: clamp(5rem, 5.5vw, 6rem);
  padding: 0 !important;
}

.top-nav-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.top-nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(1.15rem, 1.7vw, 1.8rem);
  min-width: 0;
  white-space: nowrap;
}

.top-nav a {
  position: relative;
  padding: .4rem 0;
}

.top-nav a.is-click-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .12rem;
  height: 1px;
  background: currentColor;
}

.top-nav-brand.is-click-active::after {
  display: none;
}

.top-nav-tools {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .55rem;
  pointer-events: auto;
  max-width: none;
  white-space: nowrap;
}

.top-nav-chat,
.account-login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  white-space: nowrap;
}

.top-nav-chat {
  gap: .45rem;
  padding: 0 .88rem;
  color: #050505;
  background: #f4f4f4;
  transition: background 160ms ease, transform 160ms ease;
}

.top-nav-chat-arrow { width: .9rem; height: .9rem; overflow: visible; }
.top-nav-chat-arrow path { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.top-nav-chat:hover,
.top-nav-chat:focus-visible {
  background: #fff;
  transform: translateY(-1px);
}

.account-login-button {
  padding: 0;
  border: 0;
  color: rgba(255,255,255,.9);
  background: transparent;
}

.account-login-button:hover,
.account-login-button:focus-visible {
  background: transparent;
}

.icon-button {
  position: relative;
  width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  background: transparent;
  color: #fff;
  flex: 0 0 auto;
}

.icon-button[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  top: calc(100% + .45rem);
  transform: translateX(-50%);
  padding: .22rem .42rem;
  border-radius: 999px;
  background: rgba(0,0,0,.38);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.72);
  font-size: 10px;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.icon-button[data-tooltip]:hover::after {
  opacity: 1;
}

.account-chat-toggle[data-tooltip] {
  position: relative;
}

.account-chat-toggle[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  top: calc(100% + .45rem);
  transform: translateX(-50%);
  padding: .22rem .42rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.38);
  color: rgba(255,255,255,.72);
  font-size: 10px;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.account-chat-toggle[data-tooltip]:hover::after {
  opacity: 1;
}

.floating-chat-toggle {
  position: fixed;
  right: clamp(1rem, 2.2vw, 2rem);
  bottom: clamp(1rem, 2.2vw, 2rem);
  z-index: 184;
  display: grid;
  place-items: center;
  width: 3.35rem;
  height: 3.35rem;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  color: #101010;
  background: rgba(248,248,246,.94);
  box-shadow: 0 12px 30px rgba(0,0,0,.24), 0 2px 8px rgba(0,0,0,.16);
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.floating-chat-toggle:hover,
.floating-chat-toggle:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0,0,0,.3), 0 2px 8px rgba(0,0,0,.18);
}

.floating-chat-toggle svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.floating-chat-arrow { display: none; }

.floating-chat-toggle[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 0;
  bottom: calc(100% + .55rem);
  padding: .28rem .5rem;
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  background: rgba(0,0,0,.58);
  font-size: 10px;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.floating-chat-toggle[data-tooltip]:hover::after,
.floating-chat-toggle[data-tooltip]:focus-visible::after { opacity: 1; }

.floating-chat-badge {
  position: absolute;
  top: -.18rem;
  right: -.18rem;
  display: grid;
  place-items: center;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 .18rem;
  border: 2px solid rgba(248,248,246,.94);
  border-radius: 999px;
  color: #fff;
  background: #ef6b72;
  font-size: 9px;
  line-height: 1;
}

body.message-chat-open .floating-chat-toggle {
  opacity: 1;
  pointer-events: auto;
}

body.message-chat-open .floating-chat-toggle > svg:first-child { display: none; }
body.message-chat-open .floating-chat-toggle .floating-chat-arrow { display: block; }
}

.language-toggle {
  font-size: 10px;
  font-weight: 700;
}

.theme-toggle svg {
  grid-area: 1 / 1;
}

body:not(.is-light) .theme-toggle .icon-sun,
body.is-light .theme-toggle .icon-moon {
  display: none;
}

.icon-button svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.account-email {
  position: relative;
  max-width: min(15rem, 22vw);
  border: 0;
  padding: .18rem 0 .28rem;
  overflow: hidden;
  color: rgba(255,255,255,.72);
  background: transparent;
  font-size: 11px;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

.account-email::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255,255,255,.76);
  opacity: 0;
  transform: scaleX(.35);
  transform-origin: center;
  transition: opacity 160ms ease, transform 160ms ease;
}

.account-email:hover,
.account-email.is-active {
  color: rgba(255,255,255,.94);
}

.account-email:hover::after,
.account-email.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.account-chat-toggle,
.account-menu-toggle {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: rgba(255,255,255,.72);
  background: transparent;
  cursor: pointer;
}

.account-control-group {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 2.2rem;
  padding: 0 .2rem 0 .78rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  flex: 0 0 auto;
  transition: border-color 160ms ease, background 160ms ease;
}

.account-control-group:focus-within,
.account-control-group:hover {
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.14);
}

.account-chat-toggle {
  width: 1.55rem;
  height: 1.65rem;
}

.account-chat-toggle svg {
  width: .95rem;
  height: .95rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.account-menu-toggle {
  width: .72rem;
  height: 1.65rem;
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 1;
}

.account-menu {
  position: absolute;
  top: calc(100% + .55rem);
  left: 50%;
  right: auto;
  z-index: 126;
  display: grid;
  gap: .25rem;
  min-width: 8.6rem;
  padding: .42rem;
  border-radius: .7rem;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -.35rem);
  transition: opacity 160ms ease, transform 160ms ease;
}

.account-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.account-menu button {
  width: 100%;
  border-radius: .5rem;
  padding: .48rem .58rem;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.055);
  font-size: 11px;
  text-align: left;
  cursor: pointer;
}

.account-menu button:hover {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.95);
}

.hero {
  -webkit-user-select: none;
  user-select: none;
  position: relative;
  height: 100vh;
  min-height: 42rem;
  overflow: hidden;
  background: #000;
}

.hero-media,
.hero-video,
.video-fallback,
.video-shade {
  position: absolute;
  inset: 0;
}

.video-fallback {
  background: #000 url("assets/section1/hero-poster.webp") center / cover no-repeat;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
}

body.video-ready .hero-video { opacity: 1; }

.video-shade {
  background:
    radial-gradient(circle at 54% 22%, rgba(255,255,255,.12), transparent 28%),
    linear-gradient(180deg, rgba(0,0,0,.42), rgba(0,0,0,.1) 35%, rgba(0,0,0,.82)),
    linear-gradient(90deg, rgba(0,0,0,.46), transparent 48%, rgba(0,0,0,.3));
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.hero-left {
  position: absolute;
  left: 3rem;
  bottom: 2.45rem;
  width: var(--hero-text-width);
  pointer-events: auto;
}

.hero-name {
  margin: 0 0 .45rem;
  font-family: var(--font-display);
  font-size: 80px;
  line-height: .82;
  letter-spacing: var(--hero-letter-spacing);
}

.liquid-text,
.hero-kicker,
.hero-subtitle,
.hero-manifesto {
  color: rgba(255, 255, 255, .16);
  background:
    radial-gradient(circle at 22% 18%, rgba(255,255,255,.48), rgba(255,255,255,.035) 34%, rgba(255,255,255,.16) 62%, rgba(255,255,255,.05) 82%),
    linear-gradient(180deg, rgba(255,255,255,.32), rgba(255,255,255,.04) 48%, rgba(255,255,255,.18));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .3);
  text-shadow:
    0 1px 0 rgba(255,255,255,.16),
    0 -1px 0 rgba(255,255,255,.08),
    0 14px 32px rgba(0,0,0,.46);
  filter: drop-shadow(0 0 .28rem rgba(255,255,255,.08));
}

.hero-kicker {
  display: block;
  width: 100%;
  margin: 0 0 .25rem;
  font-family: var(--font-display);
  font-size: var(--hero-kicker-size, 46px);
  line-height: .9;
  letter-spacing: var(--hero-letter-spacing);
  white-space: nowrap;
}

.hero-subtitle {
  width: 100%;
  margin: 0 0 1.45rem;
  font-size: 17.2px;
  letter-spacing: var(--hero-letter-spacing);
  white-space: nowrap;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr 1.92fr;
  gap: .65rem;
  width: 100%;
}

.hero-button {
  height: 2.8rem;
  border-radius: .45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-size: .82rem;
  background-color: rgba(0,0,0,.24);
  color: rgba(255,255,255,.72);
}

.hero-center-copy {
  position: absolute;
  left: 50%;
  bottom: 2.4rem;
  transform: translateX(-50%);
  margin: 0;
  color: #777;
  font-size: .86rem;
  font-weight: 500;
}

.hero-manifesto {
  position: absolute;
  right: 3rem;
  bottom: 2rem;
  margin: 0;
  text-align: right;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: .84;
  letter-spacing: .04em;
}

.heat-section {
  position: relative;
  height: 500vh;
  background: #000;
}

.heat-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.section2-logo {
  position: absolute;
  z-index: 24;
  left: 50%;
  top: 50%;
  width: clamp(7.5rem, 12vw, 11.25rem);
  transform: translate(-50%, -50%);
  filter: none;
  animation: none;
  transition: opacity 120ms linear;
}

.section2-trail-layer,
.section2-random-layer,
.section2-stack {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section2-random-layer { z-index: 18; }
.section2-trail-layer { z-index: 22; }
.section2-stack { z-index: 30; overflow: hidden; }

.trail-img,
.random-pop {
  position: absolute;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0;
  will-change: transform, opacity, filter;
}

.random-pop { z-index: 18; filter: grayscale(1); }

.section2-stack-item {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100vw;
  height: 100vh;
  margin: 0;
  opacity: 1;
  transform: translate(-50%, -50%) scale(.05);
  transform-origin: center;
  overflow: hidden;
  clip-path: circle(0% at 50% 50%);
}

.section2-stack-item:not(.is-liquid-reveal) {
  width: 100vw;
  height: 100vh;
  aspect-ratio: auto;
  border-radius: 0;
}

.section2-stack-item.is-visible {
  clip-path: inset(0 round 0);
}

.section2-stack-item.is-liquid-reveal {
  clip-path: var(--liquid-clip, circle(0% at 50% 50%));
}

.section2-stack-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.section2-stack-item.is-png-stack {
  width: 100vw;
  height: 100vh;
  aspect-ratio: auto;
  border-radius: 0;
  background: #000;
}

.section2-stack-item.is-png-stack img {
  object-fit: contain;
  background: #000;
}

.section2-folder {
  position: absolute;
  z-index: 40;
  left: 50%;
  top: 50%;
  width: 128px;
  height: 128px;
  padding: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.05);
  filter: none;
}

.section2-folder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section2-folder:hover {
  filter: drop-shadow(0 0 .62rem rgba(225,245,255,.94)) drop-shadow(0 0 1.65rem rgba(66,150,255,.62));
}

.section2-folder::after {
  content: "PROJECTS";
  position: absolute;
  left: 50%;
  top: calc(100% + .85rem);
  transform: translateX(-50%);
  color: rgba(214,220,228,.5);
  font-size: .68rem;
  letter-spacing: .18em;
  white-space: nowrap;
}

.section2-folder:hover::after {
  color: rgba(230,244,255,.92);
  text-shadow: 0 0 .75rem rgba(120,185,255,.5);
}

.noth-manifest-section,
.experience-section,
.portfolio-section,
.software-tools-section,
.deep-section,
.noth-mask-section,
.explore-other-section,
.micah-finale,
.visual-project-detail {
  background: #000;
  color: #fff;
}

body:not(.section2-unlocked) #noth-manifest-video,
body:not(.section2-unlocked) #experience,
body:not(.section2-unlocked) #portfolio,
body:not(.section2-unlocked) #animation-videos,
body:not(.section2-unlocked) #aigc-videos,
body:not(.section2-unlocked) #visual-design,
body:not(.section2-unlocked) #visual-project-detail,
body:not(.section2-unlocked) #expanded-fields,
body:not(.section2-unlocked) #noth-mask-reveal,
body:not(.section2-unlocked) #explore-other,
body:not(.section2-unlocked) #micah-finale {
  display: none;
}

.experience-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.noth-manifest-section {
  position: relative;
  height: 260vh;
  background: #000;
}

.noth-manifest-sticky,
.noth-mask-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.noth-manifest-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  isolation: isolate;
  --manifest-progress: 0;
  --manifest-video-width: 100vw;
  --manifest-video-height: 100vh;
  --manifest-video-y: 50%;
  --manifest-image-opacity: 0;
  --manifest-reflect-opacity: 0;
  --manifest-reflect-width: 100vw;
  --manifest-reflect-height: 38vh;
  --manifest-reflect-glow-opacity: 0;
  --manifest-reflect-halo-opacity: 0;
}

.noth-manifest-video {
  position: absolute;
  left: 50%;
  top: var(--manifest-video-y);
  width: var(--manifest-video-width);
  height: var(--manifest-video-height);
  object-fit: cover;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,calc(.03 + var(--manifest-progress) * .09));
  box-shadow: 0 2rem 6rem rgba(0,0,0,calc(.2 + var(--manifest-progress) * .28));
}

.noth-manifest-video.is-clean {
  border: clamp(0px, calc(var(--manifest-progress) * .55vw), 10px) solid rgba(27,29,29,.86);
  border-radius: 0;
  outline: 0;
  box-shadow:
    0 1.8rem 4rem rgba(0,0,0,calc(.25 + var(--manifest-progress) * .28)),
    inset 0 0 0 1px rgba(255,255,255,calc(var(--manifest-progress) * .08));
  transform: translate(-50%, -50%);
  z-index: 3;
}

.noth-manifest-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: var(--manifest-image-opacity);
  transform: scale(calc(1.04 - var(--manifest-progress) * .04));
  filter: saturate(.95) contrast(1.02);
  pointer-events: none;
}

.noth-manifest-stage.is-video-loading .noth-manifest-image {
  opacity: 1 !important;
}

.noth-manifest-video.is-reflect {
  top: var(--manifest-reflect-y, 82%);
  width: var(--manifest-reflect-width);
  height: var(--manifest-reflect-height);
  border: 0;
  outline: 0;
  box-shadow: none;
  background: transparent;
  border-radius: 0;
  opacity: var(--manifest-reflect-opacity);
  object-fit: cover;
  object-position: center bottom;
  filter: blur(18px) saturate(1.18) contrast(.92) brightness(1.62);
  transform: translate(-50%, -50%) scaleY(-.66);
  transform-origin: 50% 50%;
  z-index: 4;
  mix-blend-mode: screen;
  -webkit-mask-image:
    linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,.72) 22%, rgba(0,0,0,.64) 58%, rgba(0,0,0,.22) 84%, rgba(0,0,0,0) 100%),
    radial-gradient(ellipse 48% 58% at 50% 46%, rgba(0,0,0,.92) 0%, rgba(0,0,0,.66) 46%, rgba(0,0,0,.24) 74%, rgba(0,0,0,0) 98%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,.72) 22%, rgba(0,0,0,.64) 58%, rgba(0,0,0,.22) 84%, rgba(0,0,0,0) 100%),
    radial-gradient(ellipse 48% 58% at 50% 46%, rgba(0,0,0,.92) 0%, rgba(0,0,0,.66) 46%, rgba(0,0,0,.24) 74%, rgba(0,0,0,0) 98%);
  mask-composite: intersect;
}

.noth-manifest-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 88.8%;
  z-index: 2;
  width: var(--manifest-reflect-width);
  height: 32vh;
  pointer-events: none;
  opacity: var(--manifest-reflect-halo-opacity);
  transform: translate(-50%, -50%);
  background:
    radial-gradient(ellipse 42% 42% at 50% 42%, rgba(240,253,255,.58) 0%, rgba(151,221,245,.32) 42%, rgba(77,174,220,.12) 70%, rgba(255,255,255,0) 94%),
    radial-gradient(ellipse 30% 20% at 50% 70%, rgba(255,255,255,.46) 0%, rgba(200,244,255,.16) 58%, rgba(255,255,255,0) 90%);
  filter: blur(26px);
  mix-blend-mode: screen;
}

.noth-manifest-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 89.5%;
  z-index: 2;
  width: var(--manifest-reflect-width);
  height: 30vh;
  pointer-events: none;
  opacity: var(--manifest-reflect-glow-opacity);
  transform: translate(-50%, -50%);
  background:
    radial-gradient(ellipse 44% 42% at center, rgba(255,255,255,.42) 0%, rgba(196,238,248,.22) 46%, rgba(113,202,230,.08) 72%, rgba(255,255,255,0) 94%);
  filter: blur(34px);
  mix-blend-mode: screen;
}

.noth-manifest-audio {
  position: absolute;
  left: 50%;
  bottom: clamp(1.4rem, 5vh, 3.2rem);
  z-index: 6;
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 999px;
  color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.noth-manifest-audio svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.noth-manifest-audio.is-muted svg path:nth-child(n+2) {
  opacity: .18;
}

.noth-manifest-shade {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 85%, rgba(255,255,255,0), rgba(0,0,0,0) 18%, rgba(0,0,0,calc(.06 + var(--manifest-progress) * .08)) 58%, rgba(0,0,0,calc(.12 + var(--manifest-progress) * .1)) 100%),
    radial-gradient(circle at var(--manifest-x, 50%) var(--manifest-y, 44%), rgba(210,235,255,calc(.08 + var(--manifest-progress) * .06)), transparent 18rem),
    linear-gradient(180deg, rgba(0,0,0,calc(.06 + var(--manifest-progress) * .08)), rgba(0,0,0,calc(.08 + var(--manifest-progress) * .1)));
}

.noth-mask-section {
  -webkit-user-select: none;
  user-select: none;
  position: relative;
  height: var(--noth-story-section-height, 430vh);
  background: #000;
}

.noth-mask-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}

.noth-mask-video,
.noth-mask-image,
.noth-mask-canvas,
.noth-mask-vignette,
.noth-story-blackout,
.noth-story-layer,
.noth-story-footer {
  position: absolute;
  inset: 0;
}

.noth-mask-video {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 901px) {
  .noth-mask-sticky:not(.is-mask-canvas-ready) .noth-mask-video {
    opacity: .52;
    filter: grayscale(1) saturate(0) contrast(.86) brightness(1.08);
  }

  .noth-mask-sticky:not(.is-mask-canvas-ready) .noth-mask-canvas {
    opacity: 0;
  }

  .noth-mask-sticky.is-mask-canvas-ready .noth-mask-video {
    opacity: 0;
    filter: none;
  }

  .noth-mask-sticky.is-mask-canvas-ready .noth-mask-canvas {
    opacity: 1;
  }
}

.noth-mask-image {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
}

.noth-mask-canvas {
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 1;
  mix-blend-mode: normal;
  pointer-events: none;
}

.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-enclosure,
.hero-video::-webkit-media-controls-panel,
.hero-video::-webkit-media-controls-play-button,
.hero-video::-webkit-media-controls-overlay-play-button,
.hero-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.noth-mask-vignette {
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mask-x, 50%) var(--mask-y, 50%), transparent 0 18rem, rgba(0,0,0,.08) 38rem),
    linear-gradient(180deg, #000 0%, rgba(0,0,0,.82) 6%, rgba(0,0,0,.28) 15%, transparent 28%, transparent 70%, rgba(0,0,0,.36) 84%, rgba(0,0,0,.88) 95%, #000 100%);
}

.noth-reference-image-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.noth-reference-image {
  position: absolute;
  display: block;
  opacity: var(--reference-image-opacity, 0);
  object-fit: cover;
  transform: translate3d(0, var(--reference-image-y, 112%), 0) scale(var(--reference-image-scale, 1));
  will-change: transform, opacity;
  filter: none;
}

.noth-reference-image--sausage {
  left: 24.6%;
  bottom: -5%;
  width: min(29vw, 34rem);
  aspect-ratio: 1.11;
}

.noth-reference-image--balloon {
  left: 62%;
  bottom: 31%;
  width: min(14vw, 16rem);
  aspect-ratio: .645;
}

.noth-story-layer {
  z-index: 5;
  pointer-events: none;
  color: rgba(255,255,255,.9);
  font-family: var(--font-body);
}

.noth-story-fragment {
  position: absolute;
  left: var(--story-x);
  top: var(--story-y);
  max-width: 12rem;
  margin: 0;
  font-size: clamp(.56rem, .78vw, .82rem);
  line-height: 1.05;
  letter-spacing: 0;
  opacity: var(--story-fragment-opacity, 0);
  transform: translate3d(-50%, var(--story-fragment-y, -14rem), 0) scale(var(--story-fragment-scale, 1));
  will-change: transform, opacity;
  text-shadow: 0 0 18px rgba(255,255,255,.18);
}

.noth-story-character {
  display: inline-block;
  min-width: .015em;
  white-space: pre;
  opacity: var(--story-character-opacity, 0);
  transform: translate3d(var(--story-character-x, 0px), var(--story-character-y, -2rem), 0) rotate(var(--story-character-rotation, 0deg));
  will-change: transform, opacity;
}

.noth-story-fragment.is-left {
  text-align: left;
}

.noth-story-fragment.is-right {
  text-align: left;
}

.noth-story-fragment.is-center {
  text-align: center;
}

.noth-story-focus {
  position: absolute;
  left: 50%;
  top: 36%;
  display: grid;
  gap: .12rem;
  width: min(18rem, 62vw);
  color: rgba(255,255,255,.94);
  font-size: clamp(.9rem, 1.25vw, 1.25rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
  opacity: var(--story-focus-opacity, 0);
  transform: translate3d(-50%, calc(-50% + var(--story-focus-y, -13rem)), 0) scale(var(--story-focus-scale, 1));
  will-change: transform, opacity;
  text-shadow: 0 0 22px rgba(255,255,255,.16);
}

.noth-story-focus > span {
  display: block;
}

.noth-story-blackout {
  z-index: 5;
  pointer-events: none;
  opacity: var(--story-blackout-opacity, 0);
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0) calc(18% - var(--story-blackout-rise, 0%)),
      rgba(0,0,0,.46) calc(48% - var(--story-blackout-rise, 0%)),
      rgba(0,0,0,.9) calc(76% - var(--story-blackout-rise, 0%)),
      #000 100%);
  will-change: opacity;
}

.noth-story-footer {
  z-index: 12;
  isolation: isolate;
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: end;
  gap: clamp(2rem, 8vw, 9rem);
  padding: 0 clamp(1.25rem, 3vw, 3.8rem) clamp(2.2rem, 6vh, 4.8rem);
  color: rgb(255,255,255);
  opacity: var(--story-footer-progress, 0) !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, calc((1 - var(--story-footer-progress, 0)) * 8rem), 0);
  mask-image: none !important;
  -webkit-mask-image: none !important;
  will-change: auto;
}

.noth-story-footer-copy {
  align-self: end;
}

.noth-story-footer-copy p {
  margin: 0;
  font-size: clamp(2.6rem, 6.2vw, 7rem);
  font-weight: 700;
  line-height: .86;
  letter-spacing: 0;
  color: rgb(255,255,255) !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

.noth-story-footer-copy button {
  margin-top: clamp(1.1rem, 2.2vh, 1.8rem);
  padding: .58rem 1.05rem;
  border: 1px solid rgb(255,255,255);
  border-radius: 999px;
  color: rgb(255,255,255) !important;
  background: rgb(18,18,18);
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.noth-story-footer-copy button:hover {
  color: rgb(255,255,255);
  border-color: rgb(255,255,255);
  background: rgb(28,28,28);
}

.noth-story-footer-links {
  align-self: end;
  display: grid;
  gap: .46rem;
  min-width: 8rem;
}

.noth-story-footer-links a {
  position: relative;
  width: max-content;
  color: rgb(255,255,255) !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
  text-decoration: none;
  font-size: clamp(.92rem, 1.2vw, 1.1rem);
  letter-spacing: 0;
  transition: color 180ms ease;
}

.noth-story-footer-links a:visited {
  color: rgb(255,255,255) !important;
}

body.is-light #noth-mask-reveal .noth-story-footer-copy p,
body.is-light #noth-mask-reveal .noth-story-footer-copy button,
body.is-light #noth-mask-reveal .noth-story-footer-links a,
body.is-light #noth-mask-reveal .noth-story-footer-links a:visited {
  color: #00ffea !important;
}

.noth-story-footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.18rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.noth-story-footer-links a:hover {
  color: #fff;
}

.noth-story-footer-links a:hover::after {
  transform: scaleX(1);
}

.noth-mask-section.is-footer-active .noth-story-footer {
  visibility: visible;
  pointer-events: auto;
}

.section-progress {
  position: absolute;
  right: 2.5rem;
  bottom: 2.5rem;
  width: 10rem;
  height: 2px;
  background: rgba(255,255,255,.18);
}

.section-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: #fff;
}

.experience-section { height: 800vh; }

.experience-menu {
  position: absolute;
  left: 5rem;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 1rem;
  width: 16rem;
}

.experience-menu button {
  text-align: left;
  background: transparent;
  color: rgba(255,255,255,.28);
  font-weight: 500;
  letter-spacing: .03em;
}

.experience-menu button.is-active {
  color: #fff;
}

.experience-menu button.is-active::before {
  content: "→ ";
  display: inline-block;
  animation: arrowPulse 1.4s ease-in-out infinite;
}

.experience-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  pointer-events: none;
}

.experience-stage img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: min(46vw, 720px);
  max-height: 72vh;
  object-fit: contain;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
  filter: none;
}

.experience-missing {
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.45);
  font-size: .82rem;
}

.experience-copy {
  position: absolute;
  right: 5rem;
  top: 50%;
  width: 24rem;
  transform: translateY(-50%);
}

.experience-copy h2 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 50px;
  line-height: 1.08;
}

.experience-copy p {
  color: var(--muted);
  line-height: 1.85;
  text-align: justify;
}

.portfolio-section,
.deep-section {
  min-height: 100vh;
  padding: 4.75rem 2rem 4rem;
}

.portfolio-section {
  margin-top: 8vh;
}

.software-tools-section {
  --software-accent: #7eb5ff;
  min-height: 100vh;
  padding: clamp(5rem, 10vh, 8rem) clamp(1rem, 5vw, 5rem) 6rem;
  background: #000;
}
.software-tools-page { position: fixed; inset: 0; z-index: 80; overflow-y: auto; overflow-x: hidden; }
.software-tools-page[hidden] { display: none !important; }
html.software-page-open, body.software-page-open { width: 100%; height: 100%; overflow: hidden !important; }
.software-tools-shell { width: min(1240px, 100%); margin: 0 auto; }
.software-tools-hero { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); align-items: center; gap: clamp(2.5rem, 7vw, 8rem); min-height: min(740px, 84vh); }
.software-tools-hero-copy { max-width: 34rem; }
.software-tools-eyebrow { margin: 0 0 1.15rem; color: var(--software-accent); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.software-tools-hero h2 { max-width: 9ch; margin: 0; font-family: var(--font-display); font-size: clamp(3.25rem, 6.5vw, 6.5rem); line-height: 1.1; letter-spacing: .012em; text-wrap: balance; }
html[lang="en"] .software-tools-hero h2 { max-width: 13ch; font-size: clamp(2.8rem, 5vw, 5rem); line-height: 1.08; }
.software-tools-lead { max-width: 430px; margin: 2rem 0 0; color: rgba(255,255,255,.62); font-size: clamp(1rem, 1.35vw, 1.2rem); line-height: 1.7; }
.software-tools-value-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 1.65rem; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); text-align: center; }
.software-tools-value-strip span { display: grid; place-items: center; gap: .24rem; min-width: 0; padding: .75rem .5rem; }
.software-tools-value-strip span + span { border-left: 1px solid rgba(255,255,255,.14); }
.software-tools-value-strip strong { color: #fff; font-size: .82rem; letter-spacing: .02em; }
.software-tools-value-strip small { color: rgba(255,255,255,.48); font-size: .68rem; line-height: 1.35; }
.software-tools-actions { justify-content: flex-start; gap: .7rem; margin-top: 2.3rem; }
.software-tool-action { display: inline-flex; align-items: center; gap: .55rem; min-height: 2.8rem; padding: .72rem 1rem; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: rgba(255,255,255,.9); background: rgba(255,255,255,.07); transition: border-color 180ms ease, background 180ms ease, transform 180ms ease; }
.software-tool-action:hover { border-color: rgba(126,181,255,.7); background: rgba(126,181,255,.12); transform: translateY(-2px); }
.software-tool-action svg { width: 1rem; height: 1rem; flex: 0 0 auto; fill: currentColor; }
.software-tool-action--download svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.software-tools-hero-media { margin: 0; padding: clamp(.55rem, 1vw, .9rem); border: 1px solid rgba(255,255,255,.16); border-radius: 16px; background: #10131a; box-shadow: 0 2rem 5rem rgba(0,0,0,.35), 0 0 5rem rgba(52,110,211,.1); transform: rotate(1.2deg); }
.software-tools-hero-media img { display: block; width: 100%; height: auto; border-radius: 10px; }
.software-tools-hero-media figcaption { padding: .75rem .3rem .1rem; color: rgba(255,255,255,.46); font-size: .72rem; letter-spacing: .02em; }
.software-tools-case, .software-tools-process { margin-top: clamp(5rem, 12vh, 9rem); }
.software-tools-section-heading { max-width: 45rem; margin-bottom: 2rem; }
.software-tools-section-heading h3 { max-width: 17ch; margin: 0; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 4.3rem); line-height: 1.12; letter-spacing: .012em; text-wrap: balance; }
#software-process .software-tools-section-heading { max-width: none; }
#software-process .software-tools-section-heading h3 { max-width: none; text-wrap: wrap; white-space: nowrap; }
#software-video .software-tools-section-heading h3 { max-width: none; white-space: nowrap; letter-spacing: .025em; }
html[lang="en"] #software-process .software-tools-section-heading h3,
html[lang="en"] #software-video .software-tools-section-heading h3 { font-size: clamp(1.65rem, 2.7vw, 3.2rem); letter-spacing: .012em; }
.software-tools-section-heading p:not(.software-tools-eyebrow) { max-width: 38rem; margin: 1.2rem 0 0; color: rgba(255,255,255,.56); line-height: 1.7; }
.software-tools-case-grid, .software-tools-bottom-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 1px; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.13); }
.software-tools-panel { min-height: 100%; padding: clamp(1.25rem, 2.4vw, 2.25rem); background: #0c0e13; }
.software-tools-panel-label { display: block; margin-bottom: 1.25rem; color: var(--software-accent); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.software-tools-panel p { margin: 0; color: rgba(255,255,255,.72); line-height: 1.72; }
.software-tools-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.software-tools-tags span { padding: .4rem .65rem; border: 1px solid rgba(126,181,255,.26); border-radius: 999px; color: rgba(208,228,255,.84); font-size: .72rem; }
.software-tools-list { display: grid; gap: 1.2rem; margin: 0; padding: 0; list-style: none; }
.software-tools-list li { display: grid; gap: .28rem; color: rgba(255,255,255,.72); line-height: 1.55; }
.software-tools-list strong { color: #fff; font-size: 1rem; }
.software-tools-list li span { color: rgba(255,255,255,.5); font-size: .88rem; }
.software-tools-list--compact { gap: .8rem; }
.software-tools-list--compact li { display: block; padding-left: 1rem; border-left: 1px solid rgba(126,181,255,.44); font-size: .92rem; }
.software-tools-flow { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.software-tools-flow > div { min-height: 12rem; padding: 1.25rem 1rem; border-right: 1px solid rgba(255,255,255,.12); }
.software-tools-flow > div:last-child { border-right: 0; }
.software-tools-flow b { display: block; margin-bottom: 3rem; color: var(--software-accent); font-size: .72rem; letter-spacing: .1em; }
.software-tools-flow strong { display: block; margin-bottom: .7rem; color: #fff; font-size: .98rem; }
.software-tools-flow span { display: block; color: rgba(255,255,255,.5); font-size: .82rem; line-height: 1.55; }
.software-tools-bottom-grid { grid-template-columns: .85fr 1.15fr; margin-top: 1px; }
.software-tools-conclusion .section-actions { justify-content: flex-start; margin-top: 1.7rem; }
.software-tools-panel:hover { background: #11151d; }
@media (prefers-reduced-motion: reduce) { .software-tools-hero-media { transform: none; } }
.software-video-block { margin-top: clamp(5rem, 12vh, 9rem); }
.software-video-window { overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 14px; background: #111318; box-shadow: 0 2rem 5rem rgba(0,0,0,.38), 0 0 4rem rgba(52,110,211,.08); }
.software-video-titlebar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 2.8rem; padding: 0 .9rem; border-bottom: 1px solid rgba(255,255,255,.1); background: #17191f; color: rgba(255,255,255,.72); }
.software-video-traffic-lights { display: flex; gap: .42rem; justify-self: start; }
.software-video-traffic-lights i { width: .68rem; height: .68rem; border-radius: 50%; background: #ff5f57; box-shadow: inset 0 0 0 1px rgba(0,0,0,.15); }
.software-video-traffic-lights i:nth-child(2) { background: #febc2e; }
.software-video-traffic-lights i:nth-child(3) { background: #28c840; }
.software-video-title { font-size: .76rem; letter-spacing: .015em; white-space: nowrap; }
.software-video-meta { justify-self: end; color: rgba(255,255,255,.32); font-size: .6rem; letter-spacing: .12em; }
.software-video-stage { position: relative; aspect-ratio: 16 / 9; background: #050608; }
.software-video-stage video { display: block; width: 100%; height: 100%; object-fit: cover; }
.software-video-play { position: absolute; left: 50%; top: 50%; display: grid; place-items: center; width: 4.6rem; height: 4.6rem; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: rgba(6,8,12,.48); box-shadow: 0 1rem 3rem rgba(0,0,0,.35); transform: translate(-50%, -50%); transition: opacity 180ms ease, transform 180ms ease, background 180ms ease; }
.software-video-play span, .software-video-toggle span { display: block; width: 0; height: 0; margin-left: .2rem; border-top: .5rem solid transparent; border-bottom: .5rem solid transparent; border-left: .75rem solid #fff; }
.software-video-play:hover { background: rgba(45,105,205,.5); transform: translate(-50%, -50%) scale(1.05); }
.software-video-window.is-playing .software-video-play { opacity: 0; pointer-events: none; transform: translate(-50%, -50%) scale(.88); }
.software-video-loading { position: absolute; left: 50%; top: 50%; display: none; padding: .55rem .85rem; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; background: rgba(0,0,0,.62); color: rgba(255,255,255,.8); font-size: .7rem; transform: translate(-50%, -50%); }
.software-video-window.is-loading .software-video-loading { display: block; }
.software-video-controls { display: grid; grid-template-columns: auto auto minmax(5rem, 1fr) auto minmax(4rem, 7rem); align-items: center; gap: .7rem; min-height: 3.5rem; padding: .55rem .8rem .7rem; border-top: 1px solid rgba(255,255,255,.1); background: #111318; }
.software-video-control { position: relative; display: grid; place-items: center; width: 2rem; height: 2rem; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; background: rgba(255,255,255,.06); color: #fff; }
.software-video-toggle span { border-top-width: .32rem; border-bottom-width: .32rem; border-left-width: .48rem; }
.software-video-window.is-playing .software-video-toggle span { width: .48rem; height: .72rem; margin: 0; border: 0; border-left: .16rem solid #fff; border-right: .16rem solid #fff; }
.software-video-time { min-width: 5.2rem; color: rgba(255,255,255,.56); font-size: .68rem; font-variant-numeric: tabular-nums; }
.software-video-progress, .software-video-volume { width: 100%; accent-color: var(--software-accent); }
.software-video-mute svg { width: 1rem; height: 1rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.65; }
.software-video-mute.is-muted svg { opacity: .52; }
.software-video-mute.is-muted::after { content: ''; position: absolute; width: 1.1rem; height: 1px; background: currentColor; transform: rotate(-42deg); }

.section-header {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 1.35rem;
  margin: 0 auto var(--section-action-content-gap);
}

.section-header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5vw, 5rem);
  line-height: 1.08;
  letter-spacing: .08em;
}

#portfolio .section-header h2 {
  font-size: 50px;
}

.section-header.compact h2 {
  font-size: 50px;
  letter-spacing: .04em;
}

.section-header p {
  margin: 0;
  max-width: 46rem;
  color: var(--muted);
  font-size: .92rem;
}

.section-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-actions a,
.section-actions button {
  min-height: 2.75rem;
  border-radius: 999px;
  padding: .72rem 1.25rem;
  color: #fff;
  font-weight: 500;
}

#portfolio .section-actions a,
#portfolio .section-actions button,
#animation-videos .section-actions a,
#aigc-videos .section-actions a,
#visual-design .section-actions a,
#expanded-fields .section-actions a {
  width: auto;
  min-width: 4.65rem;
  min-height: 2.05rem;
  height: 2.05rem;
  padding: 0 .86rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  line-height: 1;
  white-space: nowrap;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 92rem;
  margin: 0 auto;
}

.portfolio-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 1.4rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  display: flex;
  flex-direction: column;
}

.portfolio-card-media {
  position: relative;
  height: 21rem;
  overflow: hidden;
  border-radius: 1.4rem 1.4rem .7rem .7rem;
  background: #080808;
}

.portfolio-card-media img,
.portfolio-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.portfolio-card-media.has-video {
  cursor: pointer;
}

.portfolio-card-media .play-badge {
  pointer-events: none;
  opacity: 1;
  transition: opacity 160ms ease;
}

.portfolio-card-media:hover .play-badge {
  opacity: 1;
}

.portfolio-card-media.is-playing .play-badge {
  opacity: 0;
}

.portfolio-card-media:hover .video-controls {
  opacity: 1;
  pointer-events: auto;
}

.portfolio-card-copy {
  position: relative;
  z-index: 2;
  padding: 1rem 1rem 1.05rem;
}

.portfolio-card h3 { margin: 0 0 .45rem; font-size: .92rem; }
.portfolio-card p {
  margin: 0 0 .85rem;
  min-height: 3.45rem;
  color: rgba(255,255,255,.62);
  font-size: .68rem;
  line-height: 1.55;
  overflow: hidden;
}
.portfolio-card-footer { display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.portfolio-card a { display: inline-flex; border-radius: 999px; padding: .52rem .82rem; background: rgba(255,255,255,.1); font-size: .72rem; }
.portfolio-card-pager { display: inline-flex; gap: .45rem; }
.portfolio-card-pager button,
.visual-card-pager button {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.78);
  display: grid;
  place-items: center;
  padding: 0;
  line-height: 1;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.portfolio-card-pager button:hover,
.visual-card-pager button:hover,
.row-arrows button:hover,
.visual-detail-arrows button:hover {
  transform: none;
  border-color: rgba(255,255,255,.38);
  background: rgba(255,255,255,.13);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

.aigc-video-stage {
  position: relative;
  max-width: 92rem;
  margin: 0 auto;
  min-height: 64rem;
}

.aigc-video-card {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--card-w, 16rem);
  height: var(--card-h, 9rem);
  overflow: hidden;
  border-radius: 1.1rem;
  border: 1px solid rgba(255,255,255,.12);
  background: #070707;
  box-shadow: 0 1.4rem 4rem rgba(0,0,0,.36);
  cursor: pointer;
  will-change: transform;
  transition: transform 360ms cubic-bezier(.2, 1, .22, 1), width 240ms ease, height 240ms ease;
}

.portfolio-card::before,
.aigc-video-card::before,
.visual-project-card::before,
.field-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(12rem 12rem at var(--edge-x, 50%) var(--edge-y, 50%), rgba(0,214,255,.8), transparent 35%),
    radial-gradient(12rem 12rem at calc(var(--edge-x, 50%) + 2rem) calc(var(--edge-y, 50%) - 1rem), rgba(255,80,255,.55), transparent 42%),
    radial-gradient(14rem 14rem at var(--edge-x, 50%) var(--edge-y, 50%), rgba(255,255,255,.6), transparent 58%);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  padding: 1px;
  transition: opacity 180ms ease;
}

.portfolio-card:hover::before,
.aigc-video-card:hover::before,
.visual-project-card:hover::before,
.field-card:hover::before { opacity: 1; }

.aigc-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 380ms cubic-bezier(.18,1.2,.22,1);
}

.aigc-video-card.is-playing video {
  object-fit: contain;
  background: #000;
}

.video-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 9;
  width: min(34%, 18rem);
  max-height: 34%;
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
  user-select: none;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 .35rem 1.4rem rgba(0,0,0,.32));
}

.portfolio-card-media .video-watermark {
  width: min(18%, 5.5rem);
  max-height: 18%;
  opacity: 0;
}

.portfolio-card-media.is-playing .video-watermark,
.aigc-video-card.is-playing .video-watermark,
.visual-detail-slide.is-active.has-video .video-watermark {
  opacity: .82;
}

.aigc-video-card:hover video {
  transform: scale(1.045);
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  transition: opacity 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.portfolio-card-media:hover .play-badge,
.aigc-video-card:hover .play-badge {
  border-color: rgba(255,255,255,.38);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 0 1rem rgba(255,255,255,.18);
  background: rgba(255,255,255,.2);
}

.aigc-video-card .play-badge {
  left: .68rem;
  top: .68rem;
  width: 1.38rem;
  height: 1.38rem;
  transform: none;
  opacity: .82;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.16);
  backdrop-filter: blur(6px);
  transition: opacity 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.aigc-video-card:hover .play-badge {
  opacity: 1;
}

.aigc-video-card.is-playing .play-badge {
  opacity: 0;
}

.play-badge::before {
  content: "";
  position: absolute;
  left: 52%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-left: .55rem solid #fff;
  border-top: .36rem solid transparent;
  border-bottom: .36rem solid transparent;
}

.video-load-progress {
  --video-load-progress: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 12;
  display: grid;
  justify-items: center;
  gap: .42rem;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 140ms ease;
}

.is-video-loading .video-load-progress { opacity: 1; }

.video-load-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  background: rgba(0,0,0,.72);
  box-shadow: 0 .45rem 1.5rem rgba(0,0,0,.38);
}

.video-load-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(#31a8ff calc(var(--video-load-progress) * 1turn), rgba(255,255,255,.14) 0);
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 0);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 0);
}

.video-load-progress.is-indeterminate .video-load-ring::before {
  background: conic-gradient(from 30deg, transparent 0 68%, #31a8ff 88% 100%);
  animation: video-load-spin 800ms linear infinite;
}

.video-load-ring b {
  position: relative;
  z-index: 1;
  font-size: .68rem;
  font-weight: 600;
}

.video-load-label {
  padding: .22rem .48rem;
  border-radius: 999px;
  background: rgba(0,0,0,.68);
  font-size: .62rem;
  white-space: nowrap;
}

@keyframes video-load-spin { to { transform: rotate(1turn); } }

.aigc-video-card .play-badge::before {
  border-left-width: .34rem;
  border-top-width: .22rem;
  border-bottom-width: .22rem;
}

.video-controls {
  position: absolute;
  inset: auto .8rem .8rem .8rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: .55rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.aigc-video-card.is-playing:hover .video-controls,
.aigc-video-card.is-playing:hover .close-video {
  opacity: 1;
  pointer-events: auto;
}

.video-controls input[type="range"] { flex: 1; accent-color: #fff; }
.time-label { font-size: .72rem; color: rgba(255,255,255,.75); }

.volume-wrap {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.mute-button,
.close-video {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(0,0,0,.38);
}

.mute-button svg,
.close-video svg {
  width: 1rem;
  height: 1rem;
}

.mute-button {
  position: relative;
}

.mute-button.is-muted::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.25rem;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%) rotate(-42deg);
  box-shadow: 0 0 0 1px rgba(0,0,0,.25);
}

.close-video {
  position: absolute;
  right: .8rem;
  top: .8rem;
  z-index: 12;
  opacity: 0;
}

.volume-popover {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 2.45rem;
  display: none;
  height: 7.6rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  transform: translateX(-50%);
}

.volume-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1.85rem;
  width: 2.4rem;
  height: .8rem;
  transform: translateX(-50%);
}

.volume-wrap:hover .volume-popover,
.volume-wrap:focus-within .volume-popover { display: flex; flex-direction: column; align-items: center; gap: .45rem; }
.volume-popover input { writing-mode: bt-lr; appearance: slider-vertical; width: 1rem; height: 5.5rem; accent-color: #fff; }
.volume-value { font-size: .58rem; color: rgba(255,255,255,.72); line-height: 1; }

.visual-projects {
  display: grid;
  gap: 3.4rem;
  max-width: 92rem;
  margin-left: auto;
  margin-right: auto;
}

.visual-project-row {
  position: relative;
  overflow: hidden;
  padding-top: 3.8rem;
}

.visual-project-track {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: .25rem;
}

.visual-project-track::-webkit-scrollbar { display: none; }

.visual-project-track {
  cursor: grab;
  touch-action: pan-y;
}

.visual-project-card {
  flex: 0 0 min(25rem, 78vw);
  position: relative;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.035);
  scroll-snap-align: start;
  cursor: grab;
  touch-action: pan-y;
}

.visual-project-card.is-vertical { flex-basis: min(18rem, 72vw); }

.visual-project-media {
  position: relative;
  height: 15.2rem;
  overflow: hidden;
  border-radius: 1.1rem;
  background: #080808;
}

.visual-project-track.is-dragging,
.visual-project-track.is-dragging .visual-project-card {
  cursor: grabbing;
  scroll-snap-type: none;
}

.visual-project-card.is-vertical .visual-project-media { height: 22rem; }

.visual-project-slider {
  display: flex;
  height: 100%;
  transition: transform 900ms ease-in-out;
}

.visual-project-slide {
  flex: 0 0 100%;
  position: relative;
  height: 100%;
}

.visual-project-slide img,
.visual-project-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-user-drag: none;
  user-select: none;
}

.visual-image-watermark {
  position: absolute;
  left: var(--wm-x, 50%);
  top: var(--wm-y, 50%);
  z-index: 3;
  width: clamp(1.8rem, 7%, 4.2rem);
  max-width: 9%;
  max-height: 9%;
  object-fit: contain;
  opacity: .32;
  pointer-events: none;
  user-select: none;
  transform: translate(-50%, -50%) rotate(var(--wm-rotate, 0deg)) scale(var(--wm-scale, 1));
  mix-blend-mode: screen;
  filter: drop-shadow(0 .18rem .75rem rgba(0,0,0,.35));
}

.visual-detail-slide > img:not(.visual-image-watermark):not(.video-watermark) {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  -webkit-user-drag: none;
  user-select: none;
}

.visual-detail-slide > video,
.field-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-user-drag: none;
  user-select: none;
}

.visual-project-copy {
  padding: 1rem .85rem 1.05rem;
  overflow: hidden;
  cursor: auto;
}

.visual-project-copy h3 {
  margin: 0 0 .55rem;
  font-size: .88rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.visual-project-copy h3:empty,
.visual-project-copy p:empty {
  visibility: hidden;
}

.visual-project-copy p {
  margin: 0 0 1rem;
  color: rgba(255,255,255,.55);
  font-size: .66rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.detail-button {
  padding: .52rem .82rem;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: .7rem;
}

.visual-project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.visual-card-pager {
  display: inline-flex;
  gap: .45rem;
}

.row-arrows {
  position: absolute;
  right: 0;
  top: .55rem;
  display: flex;
  gap: .5rem;
  z-index: 4;
}

.row-arrows button,
.visual-detail-arrows button {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
}

.visual-project-detail {
  min-height: 100vh;
  padding: 4rem 2rem;
}

body.visual-detail-open {
  overflow: hidden;
}

.detail-back {
  display: block;
  margin: 0 auto 2rem;
  border-radius: 999px;
  padding: .72rem 1.2rem;
  background: rgba(255,255,255,.08);
  color: #fff;
}

.detail-back:hover { border: 1px solid rgba(255,255,255,.22); }

.visual-detail-carousel {
  position: relative;
  max-width: 72rem;
  height: min(68vh, 44rem);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 1.2rem;
  background: #080808;
}

.visual-detail-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 600ms ease;
}

.visual-detail-slide.is-active { opacity: 1; }

.visual-detail-arrows {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.visual-detail-progress {
  display: flex;
  gap: .55rem;
  width: min(34rem, 70vw);
  margin: 1.35rem auto 0;
}

.visual-detail-progress span {
  position: relative;
  height: 2px;
  flex: 1;
  overflow: hidden;
  background: rgba(255,255,255,.18);
}

.visual-detail-progress span::before {
  content: "";
  position: absolute;
  inset: 0;
  transform-origin: left center;
  transform: scaleX(var(--progress, 0));
  background: #fff;
}

.expanded-fields-stage {
  display: flex;
  align-items: stretch;
  gap: clamp(.7rem, 1.1vw, 1rem);
  height: clamp(21rem, 46vh, 30rem);
  overflow: hidden;
  max-width: 92rem;
  margin-left: auto;
  margin-right: auto;
}

.field-card {
  --field-expanded-width: 42rem;
  flex: 1 1 0;
  min-width: clamp(2.7rem, 5vw, 5.2rem);
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.12);
  background: #070707;
  transition:
    flex-basis 2800ms ease-in-out,
    flex-grow 2800ms ease-in-out,
    border-color 180ms ease,
    background 180ms ease;
}

.expanded-fields-stage.is-hovering .field-card { flex: 1 1 0; }
.expanded-fields-stage .field-card:hover { flex: 0 0 var(--field-expanded-width); }

.field-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) saturate(0) contrast(.94) brightness(.9);
  opacity: .78;
  transition: filter 420ms ease, opacity 420ms ease;
}

.field-card:hover img {
  filter: grayscale(0) saturate(1.08) contrast(1.02) brightness(1);
  opacity: 1;
}

.explore-other-section {
  --section10-side-gutter: clamp(1rem, 2vw, 2.5rem);
  position: relative;
  min-height: 205vh;
  overflow: visible;
  padding: clamp(7rem, 13vh, 9rem) 0 0;
  background: #000;
}

.explore-content {
  position: sticky;
  top: clamp(4rem, 8vh, 6rem);
  z-index: 2;
  width: 100vw;
  text-align: center;
  transform: translate3d(0, calc(var(--finale-content-shift, 0px) * -1), 0);
  will-change: transform;
}

.brand-scroller-stack {
  --brand-gap: 1.35rem;
  --brand-half-gap: .675rem;
  --brand-duration: 72s;
  display: grid;
  gap: 1.25rem;
  width: 100vw;
}

.brand-scroller {
  display: flex;
  width: 100vw;
  max-width: none;
  margin: 0;
  padding: .45rem 0;
  overflow: hidden;
  color: #fff;
  background: #000;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  transform: translateZ(0);
  isolation: isolate;
}

.brand-marquee-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: var(--brand-gap);
  animation: brand-marquee var(--brand-duration) linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

.brand-scroller.is-reverse .brand-marquee-group {
  animation-name: brand-marquee-reverse;
}

.brand-track {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-start;
  gap: var(--brand-gap);
  min-width: max-content;
}

.brand-track img {
  display: block;
  width: clamp(4.25rem, 6vw, 5.75rem);
  height: clamp(4.25rem, 6vw, 5.75rem);
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .86;
}

.section11-media-row {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(.8rem, 1.4vw, 1.35rem);
  width: auto;
  margin: clamp(3.5rem, 8vh, 6rem) var(--section10-side-gutter) 0;
  will-change: transform;
}

.section11-media-row video,
.section11-media-row img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  filter: grayscale(1) saturate(0);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

@keyframes brand-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-50% - var(--brand-half-gap)), 0, 0); }
}

@keyframes brand-marquee-reverse {
  from { transform: translate3d(calc(-50% - var(--brand-half-gap)), 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

.micah-finale {
  position: relative;
  z-index: 1;
  height: 130vh;
  margin-top: -18vh;
  overflow: clip;
  background: transparent;
}

.micah-finale-layer {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  margin: 0;
  overflow: visible;
  user-select: none;
  pointer-events: none;
  opacity: var(--finale-opacity, 0);
  z-index: 1;
}

.micah-finale-layer .finale-word {
  position: absolute;
  left: var(--finale-svg-left, 0px);
  bottom: 0;
  display: block;
  width: var(--finale-svg-width, 100vw);
  height: var(--finale-svg-height, 40vh);
  overflow: visible;
  transform-origin: bottom left;
  transform: scaleY(var(--finale-scale-y, .045));
  will-change: transform;
}

.micah-finale-layer .finale-word text {
  font-family: var(--font-display);
  font-size: clamp(9rem, 26vw, 38rem);
  font-weight: 900;
  letter-spacing: 0;
  fill: rgba(255,255,255,.92);
  font-stretch: 86%;
  font-variation-settings: "wdth" 86, "opsz" 64;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.58);
  opacity: 0;
  pointer-events: none;
}

.contact-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.contact-window {
  position: relative;
  width: min(28rem, calc(100vw - 2rem));
  border-radius: 1rem;
  padding: 3.7rem 1.2rem 1.2rem;
  letter-spacing: .02em;
}

.close-button {
  float: right;
  border-radius: 999px;
  padding: .34rem .58rem;
  background: rgba(255,255,255,.08);
  font-size: 10px;
  line-height: 1;
}

.lanyard-close-fixed {
  position: fixed;
  left: 4.15rem;
  top: 4.15rem;
  float: none;
  z-index: 193;
  width: auto;
}

.contact-window > .close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  float: none;
}

.contact-window > .contact-close-button {
  display: inline-grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  padding: 0;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.075);
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.contact-window > .contact-close-button:hover {
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.96);
}

.contact-window h2 {
  margin: 1.4rem 0 .75rem;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: .04em;
}
.contact-window p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}
.contact-window label,
.contact-window small {
  display: block;
  margin: .65rem 0 .45rem;
  color: rgba(255,255,255,.62);
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: .08em;
}

.contact-window small:empty {
  display: none;
}

.contact-window small.is-error {
  color: #ff5d5d;
}
.contact-password-title {
  margin: 0 0 .82rem;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: .04em;
  text-align: left;
}
.password-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: .5rem; }
.password-row input {
  min-width: 0;
  min-height: 2.35rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: .45rem;
  padding: 0 .75rem;
  background: rgba(255,255,255,.07);
  color: #fff;
  font-size: 10px;
  text-overflow: ellipsis;
}
.password-row button {
  border-radius: .45rem;
  padding: 0 .85rem;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 12px;
}

.contact-entry-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .55rem;
  margin-top: .9rem;
}

.contact-entry-actions button {
  min-height: 2.45rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: .65rem;
  background: rgba(255,255,255,.075);
  color: rgba(255,255,255,.78);
  font-size: 11px;
  letter-spacing: .04em;
  cursor: pointer;
}

.contact-entry-actions button:hover {
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.12);
}

.message-modal {
  position: fixed;
  inset: 0;
  z-index: 182;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.62);
  opacity: 0;
  pointer-events: none;
}

.message-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.message-window {
  width: min(28rem, calc(100vw - 2rem));
  border-radius: 1rem;
  padding: 1.2rem;
}

.message-modal.is-chat-panel {
  place-items: end;
  padding: 1.25rem clamp(1rem, 2.2vw, 2rem) calc(clamp(1rem, 2.2vw, 2rem) + 4.1rem);
  background: transparent;
  pointer-events: none;
}

.message-modal.is-chat-panel .message-window {
  width: min(24rem, calc(100vw - 2rem));
  height: min(40rem, calc(100vh - 9rem));
  max-height: calc(100vh - 6rem);
  overflow: auto;
  pointer-events: auto;
  box-shadow: 0 18px 48px rgba(0,0,0,.34);
  padding-top: 1.2rem;
}

.message-modal.is-chat-panel .message-view[data-message-view-panel="chat"] h2 {
  margin-top: 0;
  margin-bottom: .55rem;
  line-height: 1.15;
}

.message-modal.is-chat-panel .message-window > .close-button {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  float: none;
}


.message-view {
  display: none;
  clear: both;
}

.message-view.is-active {
  display: block;
}

.message-view h2 {
  margin: 1.2rem 0 .55rem;
  font-size: 16px;
  letter-spacing: .04em;
}

.message-view p {
  margin: 0 0 1rem;
  color: rgba(255,255,255,.6);
  font-size: 11px;
  line-height: 1.8;
}

.message-form-status {
  min-height: 1.1rem;
  margin: -.2rem 0 .1rem;
  color: rgba(185,220,255,.86);
  font-size: 11px;
  line-height: 1.5;
}

.message-form-status.is-error {
  color: rgba(255,130,130,.9);
}

.message-form {
  display: grid;
  gap: .65rem;
}

.message-form input,
.message-guest-fields input,
.message-compose textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: .55rem;
  padding: .72rem .8rem;
  background: rgba(255,255,255,.07);
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
}

.message-form input.is-field-error {
  border-color: rgba(255,105,105,.72);
  background: rgba(255,55,55,.1);
  color: rgba(255,235,235,.96);
}

.message-form input.is-field-error::placeholder {
  color: rgba(255,120,120,.95);
}

.message-compose {
  display: block;
  margin-top: .8rem;
}

.message-guest-fields {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: .58rem;
  margin-bottom: .58rem;
}

.message-guest-fields[hidden] {
  display: none;
}

.message-guest-fields input {
  min-width: 0;
}

.message-input-shell {
  position: relative;
}

.message-input-shell textarea {
  min-height: 6.2rem;
  padding: .78rem .9rem;
  resize: none;
}

.message-compose-tools {
  display: flex;
  align-items: center;
  gap: .9rem;
  color: rgba(255,255,255,.58);
  line-height: 1;
  pointer-events: auto;
}

.message-compose-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: .46rem;
}

.message-tool-symbol {
  position: relative;
  width: auto;
  height: auto;
  min-height: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
}

.message-tool-symbol:hover {
  color: rgba(255,255,255,.9);
}

.message-tool-symbol[data-tool-label]::after {
  content: attr(data-tool-label);
  position: absolute;
  left: 50%;
  top: calc(100% + .45rem);
  z-index: 3;
  transform: translateX(-50%);
  padding: .22rem .42rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(0,0,0,.46);
  color: rgba(255,255,255,.78);
  font-size: 10px;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.message-tool-symbol[data-tool-label]:hover::after {
  opacity: 1;
}

.message-send-symbol {
  width: auto;
  height: auto;
  min-height: 0;
  border: 0;
  border-radius: 0;
  padding: .1rem .2rem;
  background: transparent;
  color: rgba(255,255,255,.5);
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
}

.message-send-symbol.is-ready {
  color: #2f8cff;
}

.message-emoji-panel {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: .62rem;
  margin-top: .6rem;
  max-height: none;
  overflow: visible;
  padding: .72rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: .62rem;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}

.message-emoji-panel[hidden] {
  display: none;
}

.message-emoji-panel button {
  min-height: 2.75rem;
  border: 0;
  border-radius: .38rem;
  padding: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.message-emoji-panel button:hover {
  background: rgba(255,255,255,.1);
}

.message-password-field,
.message-code-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .5rem;
}

.message-password-field button,
.message-code-row button,
.message-submit,
.message-compose button,
.message-link {
  border: 1px solid rgba(255,255,255,.13);
  border-radius: .55rem;
  background: rgba(255,255,255,.09);
  color: rgba(255,255,255,.82);
  font-size: 11px;
  cursor: pointer;
}

.message-password-field button {
  width: 2.65rem;
}

.message-code-row button {
  padding: 0 .72rem;
  white-space: nowrap;
}

.message-submit,
.message-compose button {
  min-height: 2.2rem;
}

.message-compose .message-tool-symbol,
.message-compose .message-send-symbol,
.message-compose .message-emoji-panel button {
  min-height: 0;
  border: 0;
  background: transparent;
}

.message-compose .message-tool-symbol {
  color: rgba(255,255,255,.54);
  font-size: 21px;
}

.message-compose .message-send-symbol {
  color: rgba(255,255,255,.5);
  font-size: 18px;
}

.message-compose .message-send-symbol.is-ready {
  color: #2f8cff;
}

.message-link {
  margin-top: .8rem;
  padding: .55rem .85rem;
  background: transparent;
}

.message-thread {
  display: grid;
  gap: .65rem;
  align-content: start;
  min-height: 16rem;
  max-height: 21rem;
  overflow: auto;
  padding: .35rem;
}

.message-entry {
  min-width: 0;
}

.message-bubble-meta {
  display: block;
  margin: .35rem 0 0 2.25rem;
  color: rgba(255,255,255,.48);
  font-size: 10px;
  line-height: 1.3;
}

.message-optional-note {
  margin: 0 0 .55rem;
  color: rgba(255,255,255,.56);
  font-size: 10px;
  line-height: 1.5;
}

.message-optional-note[hidden] {
  display: none;
}

.message-login-notice {
  width: 100%;
  margin: 0 0 .65rem;
  border: 1px solid rgba(47,140,255,.22);
  border-radius: .65rem;
  padding: .58rem .68rem;
  background: rgba(47,140,255,.08);
  color: rgba(205,225,255,.86);
  font-size: 11px;
  line-height: 1.55;
  text-align: left;
  cursor: default;
}

.message-bubble {
  width: fit-content;
  min-width: 0;
  min-height: 0;
  max-width: 78%;
  border: 1px solid rgba(82,152,255,.42);
  border-radius: .75rem;
  padding: .65rem .75rem;
  color: rgba(255,255,255,.96);
  background: #1f73ff;
  font-size: 12px;
  line-height: 1.65;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.profile-name-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .5rem;
}

.profile-name-row button {
  min-width: 3.6rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: .55rem;
  background: rgba(255,255,255,.09);
  color: rgba(255,255,255,.82);
  font-size: 11px;
  cursor: pointer;
}

.profile-message {
  min-height: 1.1rem;
  color: rgba(185,220,255,.88);
  font-size: 11px;
  line-height: 1.5;
}

.profile-message.is-error {
  color: rgba(255,130,130,.9);
}

.message-bubble.is-visitor {
  justify-self: end;
  border-color: rgba(61,210,168,.42);
  background: #18b77f;
}

.message-bubble.is-admin {
  position: relative;
  margin-left: 0;
  background: #1459c9;
}

.message-welcome-bubble {
  max-width: none;
  white-space: nowrap;
}

.profile-form strong {
  color: rgba(255,255,255,.84);
  font-size: 13px;
  font-weight: 500;
}

.profile-form label {
  color: rgba(255,255,255,.62);
  font-size: 11px;
  line-height: 1;
}

.profile-switch {
  min-height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: .6rem;
  padding: 0 .75rem;
  background: rgba(255,255,255,.055);
}

.profile-switch input {
  width: auto;
  accent-color: #2f8cff;
}

.profile-delete {
  min-height: 2.35rem;
  border: 1px solid rgba(255,120,120,.22);
  border-radius: .55rem;
  background: rgba(255,80,80,.08);
  color: rgba(255,190,190,.88);
  font-size: 11px;
  cursor: pointer;
}

.lanyard-card {
  position: fixed;
  z-index: 190;
  left: 2rem;
  right: auto;
  top: 1rem;
  width: 22rem;
  height: auto;
}

.lanyard-anchor {
  position: fixed;
  left: calc(100vw - 13rem);
  top: 0;
  width: .2rem;
  height: .2rem;
  background: transparent;
  opacity: 0;
}

.lanyard-rope {
  position: fixed;
  inset: 0;
  z-index: 189;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  overflow: visible;
}

.lanyard-rope path {
  fill: none;
  stroke: rgba(255,255,255,.72);
  stroke-width: 2.2;
  stroke-linecap: round;
  filter: drop-shadow(0 0 .3rem rgba(255,255,255,.14));
}

.lanyard-panel {
  position: relative;
  z-index: 2;
  width: 22rem;
  margin-top: 5rem;
  border-radius: 1rem;
  padding: 1rem;
  user-select: none;
  cursor: grab;
  will-change: transform;
}

.lanyard-clip {
  position: absolute;
  left: 50%;
  top: -2.45rem;
  width: 3.8rem;
  height: 2.55rem;
  transform: translateX(-50%);
  pointer-events: none;
}

.lanyard-clip::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: .72rem;
  height: 1.6rem;
  transform: translateX(-50%);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.36);
  background: linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.05));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lanyard-clip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 3.8rem;
  height: 1.05rem;
  transform: translateX(-50%);
  border-radius: .45rem .45rem .2rem .2rem;
  border: 1px solid rgba(255,255,255,.22);
  background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.045));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
}

.lanyard-panel:active {
  cursor: grabbing;
}

.lanyard-head {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0;
  margin: .15rem 0 1.55rem;
}

.lanyard-visual {
  width: 100%;
  height: 7.4rem;
  border-radius: .9rem;
  background: rgba(255,255,255,.1);
  overflow: hidden;
}

.lanyard-visual img,
.lanyard-visual video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lanyard-list {
  display: grid;
  gap: 1rem;
}

.lanyard-message-link {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: clamp(.9rem, 2vh, 1.1rem) auto .1rem;
  padding: .15rem 0;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  color: rgba(255,255,255,.62);
  font: inherit;
  font-size: .7rem;
  line-height: 1.5;
  cursor: pointer;
}

.lanyard-message-link:hover,
.lanyard-message-link:focus-visible {
  border-bottom-color: rgba(255,255,255,.55);
  color: rgba(255,255,255,.92);
  outline: none;
}

.contact-row {
  display: grid;
  grid-template-columns: 1.5rem auto minmax(0, 1fr) 3rem 1.25rem 1.25rem;
  align-items: center;
  gap: .45rem;
  font-size: .78rem;
}

.contact-row strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-row.is-locked strong {
  color: rgba(255,255,255,.5);
  letter-spacing: .08em;
}

.contact-row.is-locked .copy-button,
.contact-row.is-locked .qr-button,
.contact-row.is-locked .link-button {
  color: rgba(255,255,255,.36);
}

.contact-row img {
  width: 1.2rem;
  height: 1.2rem;
  object-fit: contain;
}

.contact-row a {
  display: grid;
  place-items: center;
}

.copy-button,
.qr-button,
.link-button {
  background: transparent;
  color: rgba(255,255,255,.55);
  min-width: 0;
  padding: 0;
  justify-self: center;
}

.copy-button {
  width: 3rem;
  text-align: center;
  justify-self: end;
}

.link-button svg,
.qr-button svg {
  width: .92rem;
  height: .92rem;
}

.contact-action-placeholder {
  width: .92rem;
  height: .92rem;
}

.qr-preview {
  margin-top: 1rem;
  text-align: center;
}

.qr-preview img {
  width: 9rem;
  height: 9rem;
  object-fit: contain;
  border-radius: .65rem;
  background: #fff;
}

.is-missing {
  opacity: 0;
}

.visual-missing-label,
.portfolio-missing {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.42);
  font-size: .82rem;
  pointer-events: none;
}

@keyframes logoBreath {
  0%, 100% { opacity: .88; filter: drop-shadow(0 0 1.2rem rgba(255,255,255,.18)); }
  50% { opacity: 1; filter: drop-shadow(0 0 2.6rem rgba(255,255,255,.34)); }
}

@keyframes arrowPulse {
  0%, 100% { transform: translateX(-5px); }
  50% { transform: translateX(0); }
}

@media (max-width: 900px) {
  .top-nav-overlay {
    width: 100%;
    height: 5.15rem;
    overflow: visible;
  }

  .top-nav {
    width: calc(100% - 1.5rem);
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: .55rem .85rem;
    font-size: .68rem;
  }

  .top-nav-brand { grid-column: 1; grid-row: 1; width: 5rem; }

  .top-nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: .95rem;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    touch-action: pan-x;
  }

  .top-nav-links::-webkit-scrollbar { display: none; }
  .top-nav-links a { flex: 0 0 auto; }

  .top-nav-tools {
    grid-column: 2;
    grid-row: 1;
    gap: .25rem;
  }

  .account-menu {
    z-index: 1005;
    top: calc(100% + .45rem);
    left: 50%;
    right: auto;
    max-height: min(18rem, calc(100svh - 6rem));
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .icon-button { width: 1.45rem; height: 1.55rem; }
  .top-nav-chat,
  .account-login-button { min-height: 1.9rem; font-size: .65rem; }
  .top-nav-chat { padding-inline: .7rem; }
  .account-control-group { min-height: 1.9rem; padding: 0 .15rem 0 .62rem; }
  .account-login-button { padding: 0; }
  .account-menu-toggle { width: .62rem; height: 1.55rem; }
  .account-email { display: none !important; }

  .hero {
    height: 100dvh;
    min-height: 38rem;
  }

  .hero-left {
    left: 1rem;
    right: 1rem;
    bottom: max(1rem, env(safe-area-inset-bottom));
    width: min(21rem, calc(100vw - 2rem));
  }

  .hero-name { font-size: clamp(3.5rem, 15vw, 5rem); }
  .hero-kicker { font-size: clamp(2rem, 9vw, 2.9rem); }
  .hero-subtitle { font-size: clamp(.65rem, 3.1vw, .9rem); }
  .hero-actions { grid-template-columns: minmax(0, 1fr) minmax(0, 1.55fr); }
  .hero-button { height: 2.55rem; font-size: .74rem; }
  .hero-manifesto {
    right: 1rem;
    bottom: clamp(13rem, 30vh, 16rem);
    max-width: 10.5rem;
    font-size: clamp(.82rem, 3.8vw, 1.1rem);
    line-height: .9;
  }
  .hero-center-copy {
    top: 5.75rem;
    bottom: auto;
    width: calc(100vw - 2rem);
    text-align: center;
    font-size: .68rem;
  }

  .heat-section { height: 500svh; }
  .heat-sticky,
  .noth-manifest-sticky,
  .noth-mask-sticky { height: 100svh; }
  .trail-img,
  .random-pop { width: 112px; height: 112px; }
  .section2-folder { width: 6rem; height: 6rem; }

  .noth-manifest-stage.is-video-loading .noth-manifest-image {
    filter: saturate(.78) contrast(1.02) brightness(.72);
  }

  .experience-menu {
    left: .85rem;
    right: .85rem;
    top: 4.5rem;
    width: auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, auto);
    gap: .55rem .65rem;
    overflow: visible;
    transform: none;
    touch-action: pan-y;
  }

  .experience-menu::-webkit-scrollbar { display: none; }
  .experience-menu button {
    min-width: 0;
    padding: .18rem 0;
    overflow: hidden;
    font-size: .68rem;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .experience-section { height: 800svh; }
  .experience-sticky { height: 100svh; touch-action: pan-y; }
  .experience-stage {
    inset: 8.15rem .85rem auto;
    height: min(52svh, 30rem);
  }
  .experience-stage img { max-width: 88vw; max-height: min(52svh, 30rem); }
  .experience-copy {
    left: .9rem;
    right: .9rem;
    top: calc(8.15rem + min(52svh, 30rem) + .8rem);
    bottom: auto;
    z-index: 4;
    width: auto;
    min-height: 7.25rem;
    padding: .7rem 0 0;
    border-top: 1px solid rgba(255,255,255,.12);
    transform: none;
  }
  .experience-copy h2 { margin-bottom: .45rem; font-size: clamp(1.35rem, 6.5vw, 1.85rem); }
  .experience-copy p { margin: 0; color: rgba(255,255,255,.72); font-size: .75rem; line-height: 1.55; text-align: left; }
  .experience-progress { right: .9rem; bottom: .65rem; width: 7rem; }

  .portfolio-section,
  .deep-section { padding: 5.25rem .85rem 2rem; }
  .section-header { gap: .85rem; margin-bottom: clamp(1.5rem, 4vh, 2.2rem); }
  .section-header h2,
  #portfolio .section-header h2,
  .section-header.compact h2 { font-size: clamp(2rem, 9vw, 3rem); }
  .section-header p { font-size: .75rem; line-height: 1.55; }
  .section-actions { flex-wrap: wrap; gap: .5rem; }
  .portfolio-grid { grid-template-columns: 1fr; gap: 1rem; }
  .portfolio-card-media { height: auto; aspect-ratio: 16 / 9; }
  .software-tools-section { padding: 5.25rem .85rem 2.5rem; }
  .software-tools-hero { grid-template-columns: 1fr; gap: 2.5rem; min-height: auto; }
  .software-tools-hero h2 { max-width: 10ch; font-size: clamp(3rem, 15vw, 5.5rem); line-height: 1.08; letter-spacing: .008em; }
  html[lang="en"] .software-tools-hero h2 { max-width: 15ch; font-size: clamp(2.4rem, 12vw, 4.4rem); }
  .software-tools-hero-media { transform: none; }
  .software-tools-value-strip span { padding: .7rem .4rem; }
  #software-process .software-tools-section-heading h3 { white-space: normal; }
  .software-video-titlebar { grid-template-columns: auto 1fr; gap: .75rem; }
  .software-video-title { overflow: hidden; text-overflow: ellipsis; }
  .software-video-meta { display: none; }
  #software-video .software-tools-section-heading h3 { white-space: normal; }
  .software-video-controls { grid-template-columns: auto auto minmax(0, 1fr) auto 4.5rem; gap: .45rem; padding-inline: .55rem; }
  .software-video-time { min-width: 4.5rem; font-size: .6rem; }
  .software-video-play { width: 3.8rem; height: 3.8rem; }
  .software-tools-case-grid, .software-tools-bottom-grid { grid-template-columns: 1fr; }
  .software-tools-flow { grid-template-columns: 1fr; }
  .software-tools-flow > div { min-height: auto; padding: 1.1rem 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .software-tools-flow > div:last-child { border-bottom: 0; }
  .software-tools-flow b { margin-bottom: .7rem; }

  .aigc-video-stage { width: 100%; max-width: none; min-height: 0; }
  .aigc-video-card { border-radius: .65rem; }
  .aigc-video-card:hover video { transform: none; }
  .aigc-video-stage.is-mobile-layout .aigc-video-card.is-playing .video-controls,
  .aigc-video-stage.is-mobile-layout .aigc-video-card.is-playing .close-video {
    opacity: 1;
    pointer-events: auto;
  }
  .aigc-video-stage.is-mobile-layout .video-controls { inset: auto .45rem .45rem .45rem; gap: .35rem; }
  .aigc-video-stage.is-mobile-layout .time-label { font-size: .58rem; }

  .visual-projects {
    width: 100%;
    min-width: 0;
    gap: 2.5rem;
    overflow: visible;
  }
  .visual-project-row {
    width: 100%;
    min-width: 0;
    overflow: visible;
    max-width: 100%;
    padding-top: 3.5rem;
    isolation: isolate;
  }
  .visual-project-track {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    min-width: 0;
    max-width: 100%;
    padding-top: 0;
    overscroll-behavior-inline: contain;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }
  .visual-project-card,
  .visual-project-card.is-vertical {
    flex: 0 0 min(84vw, 23rem);
    touch-action: pan-y;
  }
  .visual-project-media { height: auto; aspect-ratio: 16 / 9; }
  .visual-project-card.is-vertical .visual-project-media { height: auto; aspect-ratio: 3 / 4; }
  .row-arrows {
    display: flex !important;
    top: .45rem;
    right: .25rem;
    left: auto;
    z-index: 20;
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
  }
  .row-arrows button {
    display: grid;
    place-items: center;
    width: 2.1rem;
    height: 2.1rem;
    color: #fff;
    opacity: 1;
    pointer-events: auto;
  }

  .visual-project-detail { padding: 4.75rem .75rem 1.25rem; }
  .detail-back { margin-bottom: 1rem; }
  .visual-detail-carousel { width: 100%; height: min(64dvh, 34rem); }
  .visual-detail-progress { width: min(88vw, 28rem); }

  .expanded-fields-stage {
    height: min(64dvh, 31rem);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .expanded-fields-stage::-webkit-scrollbar { display: none; }
  .field-card,
  .expanded-fields-stage.is-hovering .field-card,
  .expanded-fields-stage .field-card:hover {
    flex: 0 0 min(76vw, 22rem);
    scroll-snap-align: center;
  }

  .noth-story-fragment { font-size: .65rem; }
  .noth-mask-section { overflow-x: clip; }
  .noth-reference-image--sausage {
    left: 7%;
    bottom: 10%;
    width: 76vw;
  }
  .noth-reference-image--balloon {
    left: 62%;
    bottom: 28%;
    width: 28vw;
  }
  .noth-mask-sticky:not(.is-mask-canvas-ready) .noth-mask-video {
    opacity: .52;
    filter: grayscale(1) saturate(0) contrast(.86) brightness(1.08);
  }
  .noth-mask-sticky.is-mask-canvas-ready .noth-mask-video {
    opacity: 0;
    filter: grayscale(1) saturate(0) contrast(.86) brightness(1.08);
  }
  .noth-mask-canvas {
    display: block;
    opacity: .9;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 90%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 90%, transparent 100%);
  }
  .noth-mask-vignette {
    background:
      radial-gradient(circle at var(--mask-x, 50%) var(--mask-y, 50%), transparent 0 10rem, rgba(0,0,0,.08) 24rem),
      linear-gradient(180deg, #000 0%, rgba(0,0,0,.86) 5%, rgba(0,0,0,.2) 15%, transparent 25%, transparent 72%, rgba(0,0,0,.32) 84%, rgba(0,0,0,.9) 96%, #000 100%);
  }
  .noth-story-footer {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.25rem;
    padding: 0 1rem 1.5rem;
  }
  .noth-story-footer-copy p { font-size: clamp(2.2rem, 12vw, 4.4rem); }
  .noth-story-footer-links { align-self: end; }

  .explore-other-section { padding-top: 5.5rem; }
  .explore-content { top: 4rem; }
  .brand-scroller-stack { --brand-duration: 260s; gap: .75rem; }
  .brand-track img { width: 4rem; height: 4rem; }
  .section11-media-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem;
    margin: 2.5rem .85rem 0;
  }

  .micah-finale-layer .finale-word text { font-size: clamp(7rem, 32vw, 16rem); }

  .contact-window,
  .message-window { width: min(28rem, calc(100vw - 1rem)); }
  html.message-modal-open,
  body.message-modal-open {
    overflow: hidden;
    overscroll-behavior: none;
  }
  .message-modal.is-chat-panel {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: .5rem .5rem calc(.85rem + 3rem + .65rem);
    overflow: hidden;
    overscroll-behavior: contain;
  }
  .message-modal.is-chat-panel .message-window {
    width: 100%;
    max-width: calc(100vw - 1rem);
    height: min(40rem, calc(100dvh - 5.5rem));
    max-height: calc(100dvh - 4.75rem);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    touch-action: pan-y;
  }
  .floating-chat-toggle {
    right: .85rem;
    bottom: .85rem;
    width: 3rem;
    height: 3rem;
  }
  .message-modal.is-chat-panel input,
  .message-modal.is-chat-panel textarea { font-size: 16px; }
  .message-thread { min-height: 11rem; max-height: 36dvh; }
  .message-emoji-panel {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-content: start;
    max-height: none;
    gap: .4rem;
    padding: .48rem;
  }

  .lanyard-card {
    left: 1rem;
    top: .5rem;
    width: min(22rem, calc(100vw - 2rem));
    transform: none;
  }
  .lanyard-panel {
    width: 100%;
    margin-top: 4.25rem;
    touch-action: none;
    overscroll-behavior: contain;
  }
  .lanyard-close-fixed { left: 1rem; top: 3.65rem; }
}

@media (max-width: 600px) {
  .top-nav { right: .65rem; gap: .8rem; font-size: .65rem; }
  .top-nav-tools { right: .35rem; }
  .top-nav a { padding-inline: .05rem; }

  .hero-manifesto { bottom: 11.5rem; font-size: .95rem; }
  .hero-center-copy { font-size: .62rem; }

  .noth-manifest-audio { width: 2.25rem; height: 2.25rem; bottom: 1rem; }
  .noth-story-fragment { max-width: 8rem; }
  .noth-story-focus { width: min(17rem, 86vw); font-size: .85rem; }
  .noth-story-footer { grid-template-columns: 1fr; align-content: end; }
  .noth-story-footer-links { grid-auto-flow: column; justify-content: start; }

  .visual-project-copy { padding: .8rem; }
  .visual-project-copy p { min-height: 2.7rem; }
  .visual-detail-arrows { margin-top: .85rem; }

  .contact-window { padding: 3.25rem .85rem .85rem; }
  .message-window { padding: .9rem; }
  .message-code-row { grid-template-columns: minmax(0, 1fr) auto; }
  .message-emoji-panel { grid-template-columns: repeat(5, minmax(0, 1fr)); max-height: none; }
  .message-emoji-panel button { min-height: 2.35rem; font-size: 25px; }

  .lanyard-panel { padding: .72rem; border-radius: .85rem; }
  .lanyard-head { margin-bottom: 1rem; }
  .lanyard-visual { height: 5.5rem; border-radius: .7rem; }
  .lanyard-list { gap: .72rem; }
  .contact-row {
    grid-template-columns: 1.25rem auto minmax(0, 1fr) 2.55rem 1.1rem 1.1rem;
    gap: .32rem;
    font-size: .66rem;
  }
}

@media (max-width: 430px) {
  .top-nav {
    left: .65rem;
    right: .65rem;
    gap: .9rem;
    padding-right: .15rem;
  }

  .top-nav-tools {
    right: .45rem;
  }

  .account-menu {
    min-width: 8.25rem;
    max-width: calc(100vw - 1rem);
  }
}
body.graphic-page-open {
  overflow: hidden;
}

.graphic-page {
  position: fixed;
  inset: 0;
  z-index: 80;
  overflow: hidden;
  background: #000;
  color: #f7f7f7;
}

.graphic-page[hidden] {
  display: none !important;
}

.graphic-lock[hidden],
.graphic-viewer[hidden] {
  display: none !important;
}

.graphic-page-shell {
  position: relative;
  width: 100%;
  height: 100%;
  padding: clamp(5.5rem, 8vh, 7.5rem) clamp(1.5rem, 4vw, 4rem) clamp(1.5rem, 4vh, 3rem);
  display: grid;
  place-items: center;
}

.graphic-page.is-unlocked {
  background-color: #000;
  background-image: url("assets/页面无缝背景.png");
  background-repeat: repeat;
  background-size: min(44rem, 96vw) auto;
}

.graphic-page.is-unlocked::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.08), transparent 36%),
    rgba(0, 0, 0, 0.38);
}

.graphic-close {
  position: absolute;
  top: clamp(5.25rem, 8vh, 7rem);
  right: clamp(1.25rem, 3vw, 3rem);
  z-index: 3;
  min-width: 4.75rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  cursor: pointer;
}

.graphic-lock,
.graphic-viewer {
  position: relative;
  z-index: 2;
}

.graphic-lock {
  width: min(34rem, calc(100vw - 2.5rem));
  display: grid;
  gap: 1.35rem;
  justify-items: stretch;
  padding: clamp(1.6rem, 4vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(22px);
}

.graphic-lock-copy {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0;
}

.graphic-password-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
}

.graphic-password-input,
.graphic-password-submit {
  min-height: 3rem;
  border-radius: 999px;
  font: inherit;
}

.graphic-password-input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0 1.1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.graphic-password-input:focus {
  border-color: rgba(255, 255, 255, 0.52);
}

.graphic-password-submit {
  border: 0;
  padding: 0 1.5rem;
  color: #050505;
  background: #f4f4f4;
  cursor: pointer;
}

.graphic-password-message {
  min-height: 1.2em;
  color: #ff6b6b;
}

.graphic-viewer {
  width: min(78rem, 100%);
  height: min(80vh, 58rem);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .graphic-page-shell {
    padding: 6rem 1rem 1.2rem;
  }

  .graphic-close {
    top: 5.2rem;
    right: 1rem;
    min-width: 4.2rem;
    height: 2.2rem;
  }

  .graphic-password-form {
    grid-template-columns: 1fr;
  }

  .graphic-viewer {
    height: calc(100dvh - 8rem);
  }
}

/* Graphic portfolio viewer rebuild */
.graphic-page {
  --graphic-sidebar-width: clamp(24rem, 34vw, 42vw);
  --graphic-thumb-size: 104px;
  --graphic-thumb-columns: 3;
  --graphic-thumb-gap: clamp(0.9rem, 1vw, 1.1rem);
  overflow-x: hidden;
  overflow-y: hidden;
  background: #000;
}

html.graphic-page-open,
body.graphic-page-open {
  width: 100%;
  height: 100%;
  overflow: hidden !important;
}

.graphic-page-shell {
  display: block;
  place-items: initial;
  height: 100dvh;
  overflow: hidden !important;
  padding: clamp(5rem, 7vh, 6.5rem) clamp(1rem, 2vw, 2rem) clamp(1rem, 2vh, 1.6rem);
}

.graphic-page.is-unlocked {
  background-color: #000;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.68)),
    url("assets/页面无缝背景.png");
  background-repeat: no-repeat, repeat;
  background-size: auto, min(64rem, 120vw) auto;
  background-position: center, center top;
}

.graphic-page.is-unlocked::before {
  background: radial-gradient(circle at 52% 28%, rgba(255, 255, 255, 0.08), transparent 34%);
}

.graphic-page.is-unlocked {
  background-color: #000;
  background-image: url("assets/%E9%A1%B5%E9%9D%A2%E6%97%A0%E7%BC%9D%E8%83%8C%E6%99%AF.png");
  background-repeat: repeat;
  background-size: auto;
  background-position: center top;
}

.graphic-page.is-unlocked::before {
  content: none;
  display: none;
}

.graphic-page.is-unlocked {
  background-color: #000;
  background-image: none;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
}

.graphic-page.is-unlocked .graphic-viewer:not([hidden]) {
  display: grid !important;
  opacity: 1;
  visibility: visible;
}

.graphic-close {
  position: static;
  justify-self: start;
  min-width: 0;
  width: fit-content;
  height: 1.85rem;
  padding: 0 0.7rem;
  font-size: 0.72rem;
  line-height: 1;
}

.graphic-lock {
  width: min(27rem, calc(100vw - 2.5rem));
  min-height: calc(100dvh - clamp(6rem, 10vh, 8rem));
  align-content: center;
  justify-items: stretch;
  gap: 1.75rem;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: opacity 260ms ease, transform 260ms ease;
}

.graphic-lock.is-fading {
  opacity: 0;
  transform: translate3d(0, -0.8rem, 0);
  pointer-events: none;
}

.graphic-lock-copy {
  text-align: center;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  line-height: 1.55;
}

/* Shian case practice page */
html.practice-page-open,
body.practice-page-open { width: 100%; height: 100%; overflow: hidden !important; }

.practice-page { --practice-accent: #8ec5ff; position: fixed; inset: 0; z-index: 80; overflow-y: auto; overflow-x: hidden; background: #000; background-image: none; color: var(--text); }
.practice-page[hidden] { display: none !important; }
.practice-page-shell { position: relative; width: min(1240px, 100%); margin: 0 auto; padding: clamp(5rem, 10vh, 8rem) clamp(1rem, 5vw, 4.5rem) 4rem; }
.practice-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(17rem, .72fr); align-items: center; gap: clamp(2rem, 8vw, 7rem); min-height: calc(100dvh - 7rem); }
.practice-hero-copy { max-width: 40rem; }
.practice-eyebrow { margin: 0 0 1rem; color: var(--practice-accent); font-size: .68rem; font-weight: 700; letter-spacing: .16em; line-height: 1.4; text-transform: uppercase; }
.practice-hero h2 { max-width: none; margin: 0; font-family: var(--font-display); font-size: clamp(2.15rem, 4vw, 4rem); line-height: 1.12; letter-spacing: .01em; text-wrap: balance; }
.practice-lead { max-width: 35rem; margin: 1.6rem 0 0; color: rgba(255,255,255,.62); font-size: clamp(.95rem, 1.2vw, 1.1rem); line-height: 1.8; }
.practice-capability-list { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.7rem; }
.practice-capability-list span { padding: .42rem .7rem; border: 1px solid rgba(142,197,255,.28); border-radius: 999px; color: rgba(220,237,255,.82); font-size: .72rem; }
.practice-image-slot { min-height: 7.5rem; display: grid; place-content: center; gap: .3rem; padding: 1rem; border: 1px dashed rgba(142,197,255,.36); border-radius: 12px; background: transparent; color: rgba(255,255,255,.72); text-align: center; transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease; }
.practice-image-slot > img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.practice-image-slot.has-image { padding: 0; border-style: solid; }
.practice-image-slot span { color: var(--practice-accent); font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.practice-image-slot small { color: rgba(255,255,255,.44); font-size: .72rem; line-height: 1.45; }
.practice-image-slot--hero { min-height: 15rem; transform: rotate(1.2deg); box-shadow: 0 1.8rem 4rem rgba(0,0,0,.28); aspect-ratio: 16 / 9; }
.practice-section-heading { max-width: 45rem; margin: clamp(4.5rem, 11vh, 8rem) 0 2.3rem; }
.practice-section-heading--compact { margin: 0 0 1.8rem; }
.practice-section-heading h3 { max-width: none; margin: 0; font-family: var(--font-display); font-size: clamp(1.8rem, 3.2vw, 3.4rem); line-height: 1.18; letter-spacing: .01em; text-wrap: balance; }
.practice-section-heading > p:last-child { max-width: 38rem; margin: 1rem 0 0; color: rgba(255,255,255,.54); line-height: 1.7; }
.practice-section-heading:has(+ .practice-flow) { margin-top: clamp(2.8rem, 6vh, 4.5rem); margin-bottom: 1.4rem; }
.practice-section-heading:has(+ .practice-flow) > p:last-child { margin-top: .65rem; }
.practice-flow { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); gap: clamp(1.6rem, 2.8vw, 2.6rem); isolation: isolate; }
.practice-flow-connections { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.practice-flow-line { fill: none; stroke: url(#practice-flow-line); stroke-width: 2.2; stroke-linecap: round; stroke-dasharray: 10 8; animation: practice-flow-dash 3.2s linear infinite; }
@keyframes practice-flow-dash { to { stroke-dashoffset: -90; } }
.practice-flow-step { position: relative; z-index: 1; min-width: 0; min-height: 0; padding: .78rem .95rem .9rem; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; }
.practice-flow-step:nth-of-type(4) { grid-column: 1; grid-row: 2; }
.practice-flow-step:nth-of-type(5) { grid-column: 2; grid-row: 2; }
.practice-flow-step:nth-of-type(6) { grid-column: 3; grid-row: 2; }
.practice-flow-step b { display: grid; place-items: center; width: 2.45rem; height: 2.45rem; border: 1px solid rgba(142,197,255,.78); border-radius: .55rem; color: var(--practice-accent); background: #000; box-shadow: 0 0 0 .35rem rgba(0,0,0,.9); font-size: 1rem; font-weight: 700; line-height: 1; }
.practice-flow-port { position: absolute; z-index: 3; top: 2.15rem; width: .52rem; height: .52rem; border: 1px solid var(--practice-accent); border-radius: 50%; background: #000; box-shadow: 0 0 0 .25rem rgba(142,197,255,.08); }
.practice-flow-port--in { left: -.27rem; }
.practice-flow-port--out { right: -.27rem; }
.practice-flow-step h4 { margin: 0; color: #fff; font-size: .96rem; line-height: 1.45; text-wrap: balance; }
.practice-flow-step h4 { margin-top: .72rem; }
.practice-flow-step p { min-height: 2.8rem; margin: .42rem 0 .55rem; color: rgba(255,255,255,.5); font-size: .72rem; line-height: 1.5; }
.practice-flow-step .practice-image-slot { min-height: 0; padding: .55rem; aspect-ratio: 2 / 1; }
.practice-flow-visual { position: relative; overflow: hidden; justify-items: start; align-content: end; text-align: left; }
.practice-flow-visual::before { content: ""; position: absolute; inset: 12% 10%; border: 1px solid rgba(142,197,255,.25); background: repeating-linear-gradient(0deg, transparent 0 18px, rgba(142,197,255,.12) 19px 20px); opacity: .8; }
.practice-flow-visual::after { content: ""; position: absolute; right: 12%; top: 20%; width: 28%; height: 35%; border: 1px solid rgba(142,197,255,.55); background: linear-gradient(135deg, rgba(142,197,255,.22), transparent); }
.practice-flow-visual > * { position: relative; z-index: 1; }
.practice-metrics { margin-top: clamp(5rem, 12vh, 8rem); }
.practice-metric-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
.practice-metric-grid > div { min-height: 6.6rem; padding: 1.15rem .9rem; border-right: 1px solid rgba(255,255,255,.1); }
.practice-metric-grid > div:nth-child(4n) { border-right: 0; }
.practice-metric-grid > div:nth-child(n + 5) { border-top: 1px solid rgba(255,255,255,.1); }
.practice-metric-grid strong { display: block; color: var(--practice-accent); font-size: .92rem; font-weight: 500; }
.practice-metric-grid span { display: block; margin-top: .8rem; color: rgba(255,255,255,.5); font-size: .73rem; line-height: 1.5; }
.practice-case { margin-top: clamp(5rem, 12vh, 9rem); }
.practice-case-meta { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; margin-bottom: 1.8rem; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); background: transparent; }
.practice-case-meta > div { min-height: 6.5rem; padding: 1.25rem .9rem; border-right: 1px solid rgba(255,255,255,.1); background: transparent; }
.practice-case-meta > div:nth-child(4n) { border-right: 0; }
.practice-case-meta > div:nth-child(-n + 4) { border-bottom: 1px solid rgba(255,255,255,.1); }
.practice-case-meta span { display: block; margin-bottom: .65rem; color: var(--practice-accent); font-size: .88rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.practice-case-meta strong { display: block; color: rgba(255,255,255,.68); font-size: .78rem; font-weight: 500; line-height: 1.55; }
.practice-service-strip, .practice-output-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; border-top: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); background: transparent; }
.practice-service-strip { margin-bottom: 1.2rem; }
.practice-service-strip > div, .practice-output-strip > div { min-height: 5.8rem; padding: 1rem 1.1rem; border: 0; border-right: 1px solid rgba(255,255,255,.1); background: transparent; }
.practice-service-strip > div:nth-child(4n), .practice-output-strip > div:nth-child(4n) { border-right: 0; }
.practice-service-strip span { display: block; margin-bottom: .55rem; color: var(--practice-accent); font-size: .88rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.practice-service-strip strong { display: block; color: rgba(255,255,255,.78); font-size: .78rem; font-weight: 500; line-height: 1.55; }
.practice-output-strip { margin-bottom: 2.8rem; }
.practice-output-strip span { display: block; margin-bottom: .55rem; color: var(--practice-accent); font-size: .88rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.practice-output-strip strong { display: block; color: rgba(255,255,255,.72); font-size: .76rem; font-weight: 500; line-height: 1.6; }
.practice-case-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; border: 1px solid rgba(255,255,255,.13); background: transparent; }
.practice-case-panel { min-width: 0; padding: clamp(1.2rem, 2.4vw, 2.1rem); background: transparent; transition: background 180ms ease, border-color 180ms ease, transform 180ms ease; }
.practice-case-panel:hover, .practice-service-strip > div:hover, .practice-output-strip > div:hover { background: rgba(142,197,255,.055); }
.practice-case-panel--wide { grid-column: 1 / -1; }
.practice-panel-label { display: block; margin-bottom: 1rem; color: var(--practice-accent); font-size: .88rem; font-weight: 700; letter-spacing: .1em; line-height: 1.35; text-transform: uppercase; }
.practice-case-panel h4 { max-width: 25ch; margin: 0; color: #fff; font-size: 1.12rem; line-height: 1.45; }
.practice-case-panel--wide h4 { max-width: none; text-wrap: balance; }
.practice-case-panel p { margin: 1rem 0 0; color: rgba(255,255,255,.6); font-size: .85rem; line-height: 1.75; }
.practice-detail-list { display: grid; gap: .55rem; margin: 1.15rem 0 1.3rem; }
.practice-detail-list span { padding-left: .8rem; border-left: 1px solid rgba(142,197,255,.5); color: rgba(255,255,255,.52); font-size: .76rem; line-height: 1.5; }
.practice-workflow { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
.practice-workflow > div { position: relative; min-height: 8.5rem; padding: 1rem .85rem; border-right: 1px solid rgba(255,255,255,.1); }
.practice-workflow > div:last-child { border-right: 0; }
.practice-workflow > div:not(:last-child)::after { display: none; }
.practice-workflow b { display: grid; place-items: center; width: 1.65rem; height: 1.65rem; margin-bottom: 1.25rem; border: 1px solid rgba(142,197,255,.58); border-radius: 50%; color: var(--practice-accent); font-size: .75rem; }
.practice-workflow strong { display: block; color: #fff; font-size: .82rem; }
.practice-workflow span { display: block; margin-top: .5rem; color: rgba(255,255,255,.48); font-size: .72rem; line-height: 1.55; }
.practice-case-panel .practice-image-slot { margin-top: 1.3rem; min-height: 6.7rem; }
.practice-image-slot--proposal { aspect-ratio: 4 / 3; }
.practice-image-slot--portrait { aspect-ratio: 4 / 5; }
.practice-image-slot--wide { aspect-ratio: 16 / 9; }
.practice-image-slot--report { aspect-ratio: 4 / 3; }
.practice-case-grid > .practice-case-panel:not(.practice-case-panel--wide) .practice-image-slot { aspect-ratio: 4 / 3; }
.practice-page .practice-image-slot { aspect-ratio: 16 / 9; min-height: 0; }
.practice-image-slot:hover { border-color: var(--practice-accent); background: rgba(142,197,255,.1); box-shadow: inset 0 0 0 1px rgba(142,197,255,.12), 0 1rem 2.5rem rgba(0,0,0,.25); transform: translateY(-2px); }
.practice-flow-step:hover h4 { color: var(--practice-accent); }
.practice-summary-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-top: clamp(5rem, 12vh, 9rem); border: 1px solid rgba(255,255,255,.13); background: transparent; }
.practice-platform-report { margin-top: clamp(5rem, 12vh, 9rem); }
.practice-report-kpis { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
.practice-report-kpis > div { min-height: 5.7rem; padding: 1rem .9rem; border-right: 1px solid rgba(255,255,255,.1); transition: background 180ms ease; }
.practice-report-kpis > div:last-child { border-right: 0; }
.practice-report-kpis > div:hover { background: rgba(142,197,255,.055); }
.practice-report-kpis span, .practice-report-chart-head span { display: block; margin-bottom: .55rem; color: var(--practice-accent); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.practice-report-kpis strong { color: rgba(255,255,255,.78); font-size: .78rem; font-weight: 500; line-height: 1.55; }
.practice-report-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(18rem, .65fr); gap: 1rem; margin-top: 1rem; }
.practice-platform-table-wrap, .practice-report-chart { min-width: 0; border: 1px solid rgba(255,255,255,.13); background: transparent; }
.practice-platform-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.practice-platform-table caption { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.practice-platform-table th, .practice-platform-table td { padding: .9rem .85rem; border-bottom: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.56); font-size: .72rem; line-height: 1.45; text-align: left; }
.practice-platform-table thead th { color: var(--practice-accent); font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.practice-platform-table tbody th { color: #fff; font-weight: 600; }
.practice-platform-table tr:last-child th, .practice-platform-table tr:last-child td { border-bottom: 0; }
.practice-platform-table tbody tr { transition: background 180ms ease; }
.practice-platform-table tbody tr:hover { background: rgba(142,197,255,.055); }
.practice-report-chart { padding: 1rem 1.1rem 1.05rem; }
.practice-report-chart-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.practice-report-chart-head strong { color: rgba(255,255,255,.52); font-size: .7rem; font-weight: 500; }
.practice-report-legend { display: flex; flex-wrap: wrap; gap: .55rem .8rem; margin-top: .85rem; color: rgba(255,255,255,.54); font-size: .65rem; }
.practice-report-legend span { display: inline-flex; align-items: center; gap: .3rem; }
.practice-report-legend i { display: inline-block; width: .45rem; height: .45rem; border-radius: 50%; background: var(--practice-accent); }
.practice-report-legend i.series-reach, .practice-report-chart-grid path.series-reach { background: #7ce0d4; stroke: #7ce0d4; }
.practice-report-legend i.series-engagement, .practice-report-chart-grid path.series-engagement { background: #c2a3ff; stroke: #c2a3ff; }
.practice-report-legend i.series-conversion, .practice-report-chart-grid path.series-conversion { background: #ffcc8a; stroke: #ffcc8a; }
.practice-report-chart-values { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .45rem .7rem; margin-top: .8rem; color: rgba(255,255,255,.48); font-size: .65rem; }
.practice-report-chart-values span { display: flex; justify-content: space-between; gap: .4rem; }
.practice-report-chart-values b { color: rgba(255,255,255,.78); font-weight: 600; }
.practice-report-chart-grid { position: relative; display: grid; gap: 1.7rem; min-height: 9.4rem; margin-top: 1.1rem; padding: .7rem 0; overflow: hidden; }
.practice-report-chart-grid i { display: block; height: 1px; background: rgba(255,255,255,.1); }
.practice-report-chart-grid svg { position: absolute; inset: .7rem 0; width: 100%; height: calc(100% - 1.4rem); overflow: visible; }
.practice-report-chart-grid path { fill: none; stroke: var(--practice-accent); stroke-width: 2; stroke-dasharray: 7 7; opacity: .78; animation: practice-report-dash 3s linear infinite; }
@keyframes practice-report-dash { to { stroke-dashoffset: -56; } }
.practice-report-chart-axis { display: flex; justify-content: space-between; gap: .5rem; margin-top: .7rem; color: rgba(255,255,255,.4); font-size: .66rem; }
.practice-report-chart p { margin: .95rem 0 0; color: rgba(255,255,255,.45); font-size: .7rem; line-height: 1.55; }
.practice-report-monthly { margin-top: 1rem; border: 1px solid rgba(255,255,255,.13); background: transparent; }
.practice-report-monthly-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: .9rem 1.1rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.practice-report-monthly-head span { color: var(--practice-accent); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.practice-report-monthly-head strong { color: rgba(255,255,255,.56); font-size: .7rem; font-weight: 500; }
.practice-report-monthly-scroll { overflow-x: auto; }
.practice-report-monthly table { width: 100%; min-width: 54rem; border-collapse: collapse; table-layout: fixed; }
.practice-report-monthly th, .practice-report-monthly td { padding: .72rem .65rem; border-right: 1px solid rgba(255,255,255,.07); border-bottom: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.57); font-size: .66rem; text-align: center; white-space: nowrap; }
.practice-report-monthly thead th { color: var(--practice-accent); font-weight: 700; }
.practice-report-monthly tbody th { color: #fff; font-weight: 600; text-align: left; }
.practice-report-monthly tr:last-child th, .practice-report-monthly tr:last-child td { border-bottom: 0; }
.practice-report-monthly th:last-child, .practice-report-monthly td:last-child { border-right: 0; }
.practice-summary-card { padding: clamp(1.3rem, 2.5vw, 2.4rem); background: transparent; transition: background 180ms ease; }
.practice-summary-card:hover { background: rgba(142,197,255,.055); }
.practice-summary-card h3 { max-width: none; margin: 0; color: #fff; font-size: 1.25rem; line-height: 1.45; text-wrap: balance; }
.practice-summary-card p { margin: 1rem 0 0; color: rgba(255,255,255,.58); font-size: .86rem; line-height: 1.75; }
.practice-footer { display: flex; align-items: center; flex-direction: column; gap: 1.4rem; margin-top: 4rem; padding: 0; text-align: center; }
.practice-footer-brand { display: grid; justify-items: center; padding-bottom: 1.2rem; }
.practice-footer-brand img { display: block; width: min(9rem, 26vw); height: auto; opacity: .9; }
.practice-footer p { margin: 0; color: rgba(255,255,255,.5); font-size: .82rem; }
.practice-footer-lower { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 1rem; padding: 1.2rem 0 1.8rem; border-top: 1px solid rgba(255,255,255,.14); }
.practice-footer-actions { display: flex; align-items: center; gap: .65rem; }
.practice-contact-button, .practice-close { min-height: 2.3rem; padding: 0 .9rem; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: rgba(255,255,255,.86); background: transparent; font: inherit; font-size: .74rem; cursor: pointer; transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease; }
.practice-contact-button:hover, .practice-contact-button:focus-visible, .practice-close:hover, .practice-close:focus-visible { border-color: var(--practice-accent); color: #fff; background: rgba(142,197,255,.1); transform: translateY(-2px); }
.practice-top-toggle { position: fixed; right: clamp(1rem, 2.2vw, 2rem); bottom: calc(clamp(1rem, 2.2vw, 2rem) + 3.35rem + 1.35rem); z-index: 184; display: grid; place-items: center; width: 3.35rem; height: 3.35rem; padding: 0; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; color: rgba(255,255,255,.82); background: transparent; opacity: 0; pointer-events: none; cursor: pointer; transition: opacity 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease; }
body.practice-page-open .practice-top-toggle, body.software-page-open .practice-top-toggle { opacity: 1; pointer-events: auto; }

/* Practice submenu + workflow canvas */
.practice-nav-parent { position: relative; display: flex; align-items: center; height: 100%; }
.practice-nav-parent > a { display: inline-flex; align-items: center; height: 100%; }
.practice-nav-submenu { --practice-menu-x: -50%; position: absolute; top: calc(100% + .15rem); left: 50%; z-index: 110; display: grid; min-width: 12rem; padding: .45rem; border: 1px solid rgba(255,255,255,.16); border-radius: .8rem; background: #000; box-shadow: 0 1.2rem 3rem rgba(0,0,0,.32); opacity: 0; pointer-events: none; transform: translate(var(--practice-menu-x), -.35rem); transition: opacity 180ms ease, transform 180ms ease; }
.practice-nav-submenu::before { content: ""; position: absolute; top: -.15rem; right: 0; left: 0; height: .3rem; }
.practice-nav-parent:hover .practice-nav-submenu, .practice-nav-parent:focus-within .practice-nav-submenu, .practice-nav-parent.is-open .practice-nav-submenu { opacity: 1; pointer-events: auto; transform: translate(var(--practice-menu-x), 0); }
.practice-nav-submenu a { display: block; padding: .65rem .8rem; border-radius: .5rem; color: rgba(255,255,255,.68); font-size: .72rem; line-height: 1.35; white-space: nowrap; transition: color 180ms ease, background 180ms ease; }
.practice-nav-submenu a:hover, .practice-nav-submenu a:focus-visible { color: #fff; background: rgba(142,197,255,.12); outline: none; }

.workflow-page { position: fixed; inset: 0; z-index: 80; overflow: auto; color: #fff; background: #050505; }
.workflow-shell { display: grid; grid-template-rows: auto auto minmax(32rem, 1fr) auto; min-height: 100%; padding: clamp(6.5rem, 11vh, 9rem) clamp(1rem, 4vw, 4.5rem) 2rem; }
.workflow-header { display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.workflow-header h2 { margin: .35rem 0 .6rem; font-family: var(--font-display); font-size: clamp(2.5rem, 7vw, 7rem); line-height: .92; letter-spacing: -.04em; }
.workflow-header p:not(.practice-eyebrow) { max-width: 34rem; margin: 0; color: rgba(255,255,255,.55); line-height: 1.7; }
.workflow-header-actions, .workflow-toolbar { display: flex; flex-wrap: wrap; align-items: center; gap: .55rem; }
.workflow-button { min-height: 2.45rem; padding: 0 .85rem; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: rgba(255,255,255,.85); background: rgba(255,255,255,.05); font: inherit; font-size: .72rem; cursor: pointer; transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease; }
.workflow-button:hover, .workflow-button:focus-visible { border-color: rgba(142,197,255,.75); color: #fff; background: rgba(142,197,255,.13); transform: translateY(-1px); outline: none; }
.workflow-button--quiet { color: rgba(255,255,255,.55); background: transparent; }
.workflow-button--accent { border-color: rgba(142,197,255,.62); color: #dceeff; background: rgba(142,197,255,.14); }
html:not(.workflow-editable-mode) [data-workflow-edit-toggle],
html:not(.workflow-editable-mode) [data-workflow-toolbar],
html:not(.workflow-editable-mode) [data-workflow-floating-tools] { display: none !important; }
.workflow-upload { display: inline-flex; align-items: center; }
.workflow-upload input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.workflow-toolbar { min-height: 4.2rem; margin-top: 1.5rem; padding: .75rem 0; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.workflow-status { min-height: 1.2rem; margin-left: auto; color: rgba(255,255,255,.48); font-size: .7rem; }
.workflow-editor-note { margin-top: 1rem; color: #b9d9ff; font-size: .72rem; }
.workflow-canvas-viewport { position: relative; min-height: 32rem; margin-top: 1.2rem; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 1rem; background: #111315; touch-action: none; cursor: grab; }
.workflow-canvas-viewport:focus { outline: none; }
.workflow-edit-entry { position: absolute; left: 1rem; bottom: 1rem; z-index: 12; display: inline-grid; place-items: center; width: 2.7rem; height: 2.7rem; padding: 0; border: 1px solid rgba(255,255,255,.18); border-radius: .7rem; color: rgba(255,255,255,.72); background: rgba(8,10,14,.88); cursor: pointer; transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease; }
.workflow-edit-entry svg { width: 1.05rem; height: 1.05rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.workflow-edit-entry:hover, .workflow-edit-entry:focus-visible { border-color: rgba(142,197,255,.75); color: #fff; background: rgba(142,197,255,.13); transform: translateY(-1px); outline: none; }
html:not(.workflow-editable-mode) .workflow-edit-entry,
.workflow-page.workflow-editing .workflow-edit-entry { display: none !important; }
.workflow-canvas-viewport.is-panning { cursor: grabbing; }
.workflow-canvas-viewport.is-file-over { outline: 2px solid rgba(142,197,255,.82); outline-offset: -2px; background-color: rgba(142,197,255,.06); }
.workflow-canvas-viewport::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(circle, rgba(255,255,255,.2) 1.15px, transparent 1.8px); background-size: 28px 28px; opacity: .24; }
.workflow-canvas-grid { position: absolute; width: 4000px; height: 2600px; transform-origin: 0 0; background: transparent; }
.workflow-edges { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.workflow-editing .workflow-edges { pointer-events: auto; }
.workflow-edge { fill: none; stroke: var(--workflow-edge-color, rgba(142,197,255,.82)); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.workflow-edge.is-selected { stroke-width: 6; filter: drop-shadow(0 0 .25rem var(--workflow-edge-color, #8ec5ff)); }
.workflow-connection-preview { stroke: var(--workflow-edge-color, rgba(142,197,255,.92)); }
.workflow-editing .workflow-edge { pointer-events: stroke; cursor: pointer; }
.workflow-nodes { position: absolute; inset: 0; z-index: 2; }
.workflow-canvas-text-item { position: absolute; z-index: 3; width: max-content; transform-origin: 0 0; cursor: move; }
.workflow-canvas-text-item.is-selected { outline: 1px solid rgba(142,197,255,.95); outline-offset: 2px; }
.workflow-canvas-text-item.is-locked { cursor: default; }
.workflow-canvas-text-layer { position: relative; display: block; width: max-content; min-width: 4rem; min-height: 1.4em; padding: .12rem .18rem; color: #fff; direction: ltr; writing-mode: horizontal-tb; text-orientation: mixed; white-space: pre; word-break: normal; line-height: 1.25; cursor: inherit; user-select: text; outline: 0; }
.workflow-canvas-text-layer:hover, .workflow-canvas-text-layer:focus, .workflow-canvas-text-layer[contenteditable="true"] { outline: 1px solid rgba(142,197,255,.6); }
.workflow-canvas-text-layer[contenteditable="true"] { cursor: text; }
.workflow-canvas-text-layer:empty::before { content: "输入文字,"; color: rgba(255,255,255,.5); }
.workflow-canvas-text-layer.is-locked { cursor: default; }
.workflow-canvas-text-resize { position: absolute; z-index: 4; width: .65rem; height: .65rem; padding: 0; border: 1px solid #8ec5ff; border-radius: .12rem; background: #f8fbff; }
.workflow-canvas-text-resize--nw { top: -.48rem; left: -.48rem; cursor: nwse-resize; }
.workflow-canvas-text-resize--ne { top: -.48rem; right: -.48rem; cursor: nesw-resize; }
.workflow-canvas-text-resize--se { right: -.48rem; bottom: -.48rem; cursor: nwse-resize; }
.workflow-canvas-text-resize--sw { bottom: -.48rem; left: -.48rem; cursor: nesw-resize; }
.workflow-canvas-text-port { position: absolute; top: 50%; z-index: 4; width: .7rem; height: .7rem; padding: 0; border: 1px solid #8ec5ff; border-radius: 50%; background: #090b0f; cursor: crosshair; transform: translateY(-50%); }
.workflow-canvas-text-port--in { left: -.9rem; }
.workflow-canvas-text-port--out { right: -.9rem; }
.workflow-canvas-text-port:hover { background: #8ec5ff; }
.workflow-canvas-text-tools { position: absolute; z-index: 10; display: flex; align-items: center; gap: .08rem; padding: .28rem; border: 1px solid rgba(255,255,255,.12); border-radius: .65rem; background: rgba(22,24,29,.95); box-shadow: 0 .7rem 1.6rem rgba(0,0,0,.35); white-space: nowrap; }
.workflow-canvas-text-tools[hidden], .workflow-canvas-text-menu[hidden] { display: none; }
.workflow-canvas-text-tools > button { display: grid; place-items: center; min-width: 1.7rem; height: 1.7rem; padding: 0 .25rem; border: 0; border-radius: .3rem; color: rgba(255,255,255,.8); background: transparent; font: inherit; font-size: .7rem; cursor: pointer; }
.workflow-canvas-text-tools > button:hover, .workflow-canvas-text-tools > button:focus-visible { color: #fff; background: rgba(142,197,255,.18); outline: none; }
.workflow-canvas-text-tools > button.is-active { color: #fff; background: rgba(142,197,255,.22); }
.workflow-canvas-text-color { width: 1.15rem; height: 1.15rem; padding: 0; border: 0; border-radius: 50%; background: transparent; cursor: pointer; }
.workflow-canvas-text-menu { position: absolute; left: 2.2rem; bottom: calc(100% + .4rem); z-index: 12; display: grid; min-width: 8rem; padding: .3rem; border: 1px solid rgba(255,255,255,.12); border-radius: .55rem; background: rgba(27,31,38,.98); box-shadow: 0 .8rem 1.8rem rgba(0,0,0,.42); }
.workflow-canvas-text-menu button { display: flex; justify-content: space-between; gap: 1.4rem; padding: .4rem .5rem; border: 0; border-radius: .3rem; color: #e8edf5; background: transparent; text-align: left; font: inherit; font-size: .7rem; cursor: pointer; }
.workflow-canvas-text-menu button:hover, .workflow-canvas-text-menu button:focus-visible { background: rgba(142,197,255,.14); outline: none; }
.workflow-canvas-text-menu span { color: rgba(255,255,255,.45); }
.workflow-selection-box { position: absolute; z-index: 4; border: 1px solid rgba(142,197,255,.9); background: rgba(142,197,255,.1); pointer-events: none; }
.workflow-selection-box[hidden] { display: none; }
.workflow-selection-tools { position: absolute; z-index: 7; display: flex; align-items: center; gap: .3rem; padding: .35rem; border: 1px solid rgba(142,197,255,.28); border-radius: .7rem; background: rgba(24,29,37,.96); box-shadow: 0 12px 30px rgba(0,0,0,.35); backdrop-filter: blur(12px); }
.workflow-selection-tools[hidden], .workflow-align-menu[hidden] { display: none; }
.workflow-selection-tool { border: 1px solid rgba(255,255,255,.12); border-radius: .45rem; padding: .42rem .62rem; color: #e7edf6; background: transparent; font: inherit; font-size: .78rem; line-height: 1; white-space: nowrap; cursor: pointer; }
.workflow-selection-tool:hover, .workflow-selection-tool:focus-visible { border-color: rgba(142,197,255,.7); background: rgba(142,197,255,.12); outline: none; }
.workflow-selection-tool--danger { color: #ffb5bf; }
.workflow-selection-tool--danger:hover, .workflow-selection-tool--danger:focus-visible { border-color: rgba(255,120,140,.7); background: rgba(255,90,110,.12); }
.workflow-align-menu { position: absolute; left: 0; bottom: calc(100% + .5rem); min-width: 11.5rem; padding: .45rem; display: grid; gap: .12rem; border: 1px solid rgba(255,255,255,.12); border-radius: .65rem; background: rgba(27,31,38,.98); box-shadow: 0 14px 34px rgba(0,0,0,.42); }
.workflow-align-menu > span { padding: .32rem .5rem .42rem; color: #8e98a8; font-size: .68rem; }
.workflow-align-menu button { border: 0; border-radius: .4rem; padding: .48rem .5rem; color: #e8edf5; background: transparent; text-align: left; font: inherit; font-size: .76rem; cursor: pointer; }
.workflow-align-menu button:hover, .workflow-align-menu button:focus-visible { background: rgba(142,197,255,.14); outline: none; }
.workflow-node { position: absolute; display: grid; grid-template-columns: minmax(0, 1fr); grid-template-rows: auto minmax(0, 1fr); min-width: 10rem; min-height: 6rem; box-sizing: border-box; overflow: visible; border: 1px solid rgba(255,255,255,.2); border-radius: .8rem; background: rgba(20,22,27,.94); box-shadow: 0 1rem 2.5rem rgba(0,0,0,.3); cursor: move; user-select: none; }
.workflow-node.is-selected { border-color: #8ec5ff; box-shadow: 0 0 0 .2rem rgba(142,197,255,.14), 0 1rem 2.5rem rgba(0,0,0,.3); }
.workflow-node-head { display: flex; align-items: center; justify-content: space-between; width: 100%; min-width: 0; box-sizing: border-box; gap: .6rem; overflow: hidden; padding: .45rem .6rem; border-radius: .8rem .8rem 0 0; border-bottom: 1px solid color-mix(in srgb, var(--workflow-node-color, #8ec5ff) 35%, transparent); color: var(--workflow-node-color, #8ec5ff); background: color-mix(in srgb, var(--workflow-node-color, #8ec5ff) 14%, transparent); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.workflow-node > .workflow-node-head { max-width: 100%; overflow: hidden; }
.workflow-node-head > span { flex: 1 1 auto; width: 0; max-width: 100%; }
.workflow-node-head > .workflow-node-delete { flex: 0 0 auto; }
.workflow-node-head span[contenteditable="true"] { flex: 1 1 auto; width: 0; max-width: 100%; min-width: 0; color: var(--workflow-node-color, #8ec5ff); cursor: text; outline: none; }
html.has-custom-cursor .workflow-page.workflow-editing .workflow-node-head > span, html.has-custom-cursor .workflow-page.workflow-editing .workflow-node-text, html.has-custom-cursor .workflow-page.workflow-editing .workflow-node-head > span[contenteditable="true"], html.has-custom-cursor .workflow-page.workflow-editing .workflow-node-text[contenteditable="true"] { cursor: text !important; }
html.workflow-text-editing .cursor { opacity: 0 !important; visibility: hidden !important; }
.workflow-node-actions { position: absolute; top: -2.55rem; left: 0; display: none; align-items: center; gap: .35rem; white-space: nowrap; transform-origin: bottom left; }
.workflow-node.is-selected .workflow-node-actions { display: inline-flex; }
.workflow-node-actions button, .workflow-node-color-label, .workflow-node-replace { padding: .18rem .3rem; border: 1px solid color-mix(in srgb, var(--workflow-node-color, #8ec5ff) 55%, transparent); border-radius: .3rem; color: rgba(255,255,255,.7); background: rgba(0,0,0,.2); font: inherit; font-size: .55rem; cursor: pointer; }
.workflow-node-replace { display: inline-flex; align-items: center; }
.workflow-node-replace input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.workflow-color-picker { position: absolute; bottom: calc(100% + .35rem); top: auto; left: 0; z-index: 12; display: flex; align-items: center; gap: .3rem; padding: .3rem; border: 1px solid rgba(255,255,255,.16); border-radius: .45rem; background: rgba(12,12,12,.96); box-shadow: 0 .7rem 1.5rem rgba(0,0,0,.3); }
.workflow-color-picker[hidden] { display: none; }
.workflow-color-picker input { width: 1.4rem; height: 1.4rem; padding: .08rem; border: 0; border-radius: .25rem; background: transparent; cursor: pointer; }
.workflow-color-picker input::-webkit-color-swatch-wrapper { padding: 0; }
.workflow-color-picker input::-webkit-color-swatch { border: 0; border-radius: .2rem; }
.workflow-color-swatch { width: .85rem; height: .85rem; padding: 0 !important; border: 1px solid rgba(255,255,255,.32) !important; border-radius: 50% !important; }
.workflow-node-color-label { display: inline-flex; align-items: center; gap: .2rem; }
.workflow-node-color-label input { width: 1.25rem; height: 1.25rem; padding: .08rem; border: 0; border-radius: .25rem; background: transparent; cursor: pointer; }
.workflow-node-color-label input::-webkit-color-swatch-wrapper { padding: 0; }
.workflow-node-color-label input::-webkit-color-swatch { border: 0; border-radius: .2rem; }
.workflow-node-delete { display: none; padding: 0; border: 0; color: rgba(255,255,255,.45); background: none; font: inherit; cursor: pointer; }
.workflow-editing .workflow-node-delete { display: inline-block; }
.workflow-node-delete:hover, .workflow-node-delete:focus-visible { color: #fff; outline: none; }
.workflow-node-media { display: block; width: 100%; max-width: 100%; height: 100%; min-height: 8rem; box-sizing: border-box; object-fit: contain; object-position: center; background: #111318; overflow: hidden; pointer-events: none; }
.workflow-node-media.is-missing { display: none; }
.workflow-node[data-workflow-media-missing]::after { content: "媒体资源未找到，请检查 assets/workflow 文件"; display: grid; place-items: center; min-height: 8rem; padding: 1rem; box-sizing: border-box; color: rgba(255,255,255,.42); font-size: .72rem; line-height: 1.6; text-align: center; }
.workflow-node-text { position: relative; width: 100%; min-width: 0; max-width: 100%; min-height: 8rem; box-sizing: border-box; padding: 1rem 1.1rem; overflow: auto; overflow-wrap: anywhere; word-break: break-word; color: rgba(255,255,255,.82); font-size: .82rem; line-height: 1.65; letter-spacing: 0; text-align: justify; text-align-last: left; text-justify: inter-ideograph; white-space: pre-wrap; }
.workflow-node-text:empty::before { content: attr(data-placeholder); color: rgba(255,255,255,.36); pointer-events: none; }
.workflow-node-head span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.workflow-node-resize { position: absolute; right: -.55rem; bottom: -.55rem; z-index: 5; width: 1.2rem; height: 1.2rem; padding: 0; border: 0; border-radius: 0; background: transparent; cursor: nwse-resize; }
.workflow-node-resize::before { content: ""; position: absolute; right: .12rem; bottom: .12rem; width: .72rem; height: .72rem; background: linear-gradient(135deg, transparent 0 38%, var(--workflow-node-color, #8ec5ff) 39% 45%, transparent 46% 57%, var(--workflow-node-color, #8ec5ff) 58% 64%, transparent 65% 76%, var(--workflow-node-color, #8ec5ff) 77% 83%, transparent 84%); opacity: .9; }
.workflow-node-resize:hover::before { opacity: 1; filter: brightness(1.25); }
.workflow-node-text[contenteditable="true"] { outline: none; cursor: text; user-select: text; caret-color: var(--workflow-node-color, #8ec5ff); }
.workflow-node-port { position: absolute; top: 50%; width: .72rem; height: .72rem; border: 1px solid var(--workflow-node-color, #8ec5ff); border-radius: .2rem; background: #090b0f; opacity: 0; transform: translateY(-50%); transition: opacity 180ms ease, transform 180ms ease, background 180ms ease; cursor: crosshair; }
.workflow-editing .workflow-node-port, .workflow-node:hover .workflow-node-port { opacity: 1; }
.workflow-node-port--in { left: -.35rem; }
.workflow-node-port--out { right: -.35rem; }
.workflow-node-port:hover { background: var(--workflow-node-color, #8ec5ff); transform: translateY(-50%) scale(1.25); }
.workflow-empty { display: none !important; }
.workflow-empty strong { color: #fff; font-size: .9rem; }
.workflow-empty span { font-size: .72rem; line-height: 1.6; }
.workflow-zoom-readout { position: absolute; right: .8rem; bottom: .8rem; z-index: 4; padding: .35rem .5rem; border: 1px solid rgba(255,255,255,.14); border-radius: .4rem; color: rgba(255,255,255,.55); background: rgba(0,0,0,.42); font-size: .65rem; }
.workflow-canvas-controls { position: absolute; top: 1rem; left: 1rem; z-index: 5; display: flex; align-items: center; gap: .45rem; }
.workflow-canvas-controls .workflow-zoom-readout { position: static; }
.workflow-canvas-actions { position: absolute; top: 1rem; right: 1rem; z-index: 5; display: flex; flex-direction: row; align-items: center; gap: .45rem; }
.workflow-floating-tools { position: absolute; left: 50%; bottom: 1.15rem; z-index: 8; display: flex; align-items: center; gap: .2rem; padding: .35rem; border: 1px solid rgba(255,255,255,.12); border-radius: .8rem; background: rgba(22,24,29,.92); box-shadow: 0 1rem 2.5rem rgba(0,0,0,.35); transform: translateX(-50%); backdrop-filter: blur(14px); }
.workflow-floating-tools[hidden] { display: none; }
.workflow-floating-tool { display: grid; place-items: center; width: 2.35rem; height: 2.35rem; padding: 0; border: 0; border-radius: .55rem; color: rgba(255,255,255,.7); background: transparent; font: inherit; font-size: .85rem; cursor: pointer; transition: color 160ms ease, background 160ms ease, transform 160ms ease; }
.workflow-floating-tool:hover, .workflow-floating-tool:focus-visible, .workflow-floating-tool.is-active { color: #fff; background: rgba(142,197,255,.18); outline: none; }
.workflow-floating-tool:hover { transform: translateY(-1px); }
.workflow-edge-delete { position: absolute; z-index: 6; display: grid; place-items: center; width: 1.45rem; height: 1.45rem; padding: 0; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; color: #080a0e; background: #fff; box-shadow: 0 .35rem .8rem rgba(0,0,0,.35); font: inherit; font-size: 1rem; line-height: 1; cursor: pointer; transform: translate(-50%, -50%); }
.workflow-edge-delete[hidden] { display: none; }
.workflow-edge-delete:hover, .workflow-edge-delete:focus-visible { border-color: #ff9eaa; color: #fff; background: #e76a78; outline: none; }
.workflow-canvas-fullscreen { position: static; }
.workflow-page.workflow-in-page-fullscreen { top: 3.4rem; overflow: hidden; background: #090b0f; }
.workflow-page.workflow-in-page-fullscreen .workflow-shell { display: block; min-height: 100%; padding: 0; }
.workflow-page.workflow-in-page-fullscreen .workflow-header { display: none; }
.workflow-page.workflow-in-page-fullscreen .workflow-editor-note { display: none; }
.workflow-page.workflow-in-page-fullscreen .workflow-canvas-viewport { position: absolute; inset: 0; min-height: 0; margin: 0; border: 0; border-radius: 0; }
.workflow-page.workflow-in-page-fullscreen .workflow-canvas-actions { top: 1rem; right: 1rem; }
.workflow-page.workflow-in-page-fullscreen .workflow-toolbar { top: 1rem; }
.workflow-page.workflow-in-page-fullscreen .workflow-footer { display: none; }
.workflow-zoom-controls { display: flex; align-items: center; gap: .2rem; padding: .18rem; border: 1px solid rgba(255,255,255,.14); border-radius: .5rem; background: rgba(8,10,14,.88); }
.workflow-zoom-button { display: grid; place-items: center; width: 1.55rem; height: 1.55rem; padding: 0; border: 0; border-radius: .3rem; color: rgba(255,255,255,.82); background: transparent; font: inherit; font-size: 1rem; line-height: 1; cursor: pointer; }
.workflow-zoom-button:hover, .workflow-zoom-button:focus-visible { color: #fff; background: rgba(142,197,255,.16); outline: none; }
.workflow-zoom-controls .workflow-zoom-readout { position: static; min-width: 3.1rem; padding: .35rem .25rem; border: 0; background: transparent; text-align: center; }
.workflow-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1rem; color: rgba(255,255,255,.4); font-size: .68rem; }
body.workflow-page-open .practice-top-toggle { opacity: 0; pointer-events: none; }
html.workflow-page-open, body.workflow-page-open { width: 100%; height: 100%; overflow: hidden !important; }
html.workflow-in-page-fullscreen-open .top-nav-overlay { background: #000; }
html.workflow-in-page-fullscreen-open .top-nav-overlay::before { display: none; }
body.workflow-page-open .workflow-editing .workflow-header { display: none; }
.workflow-page.workflow-editing .workflow-shell { display: block; min-height: 100%; padding: 0; }
.workflow-page.workflow-editing .workflow-toolbar { position: fixed; top: 4.25rem; left: 1rem; z-index: 190; min-height: 0; margin: 0; padding: 0; border: 0; }
.workflow-page.workflow-editing .workflow-canvas-controls { top: 5.85rem; }
.workflow-page.workflow-editing .workflow-canvas-viewport { position: absolute; inset: 3.4rem 0 0; min-height: 0; margin: 0; border: 0; border-radius: 0; }
.workflow-page.workflow-editing .workflow-footer { display: none; }

@media (max-width: 900px) {
  .practice-nav-submenu { --practice-menu-x: 0; position: fixed; top: var(--practice-menu-top, 5rem); left: var(--practice-menu-left, .75rem); min-width: min(15rem, calc(100vw - 1.5rem)); }
  .workflow-page.workflow-in-page-fullscreen { top: 5.15rem; }
  .workflow-shell { padding-top: 5.8rem; }
  .workflow-header { align-items: start; flex-direction: column; gap: 1.2rem; }
  .workflow-header-actions { width: 100%; }
  .workflow-canvas-viewport { min-height: 28rem; }
  .workflow-toolbar { align-items: stretch; }
  .workflow-status { width: 100%; margin-left: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .practice-nav-submenu, .workflow-button, .workflow-node-port { transition: none; }
}
.practice-top-toggle:hover, .practice-top-toggle:focus-visible { border-color: var(--practice-accent); color: var(--practice-accent); transform: translateY(-3px); }
.practice-top-toggle svg { width: 1.15rem; height: 1.15rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }

@media (max-width: 900px) {
  .practice-page-shell { padding: 5.5rem .9rem 2rem; }
  .practice-hero { grid-template-columns: 1fr; min-height: auto; gap: 2rem; }
  .practice-hero h2 { font-size: clamp(2.3rem, 11vw, 3.8rem); }
  .practice-hero h2, .practice-section-heading h3, .practice-flow-step h4, .practice-summary-card h3 { white-space: normal; }
  .practice-case-panel--wide h4 { white-space: normal; }
  .practice-image-slot--hero { max-width: 30rem; min-height: 10rem; transform: none; }
  .practice-top-toggle { right: .85rem; bottom: 5.45rem; width: 3rem; height: 3rem; }
  .practice-section-heading { margin-top: 4.5rem; }
  .practice-flow { display: block; padding-left: 1.2rem; border-top: 0; }
  .practice-flow-connections { display: none; }
  .practice-flow::before { content: ""; position: absolute; top: 0; bottom: 0; left: .3rem; width: 1px; background: rgba(255,255,255,.2); }
  .practice-flow-step { min-height: 0; padding: .2rem 0 2rem 1.4rem; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .practice-flow-step:last-child { border-bottom: 0; }
  .practice-flow-port { display: none; }
  .practice-flow-step p { min-height: 0; max-width: 34rem; }
  .practice-flow-step .practice-image-slot { max-width: 28rem; }
  .practice-metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .practice-metric-grid > div:nth-child(2n) { border-right: 0; }
  .practice-metric-grid > div:nth-child(n + 3) { border-top: 1px solid rgba(255,255,255,.1); }
  .practice-case-meta, .practice-service-strip, .practice-output-strip, .practice-case-grid, .practice-summary-grid, .practice-report-kpis, .practice-report-layout { grid-template-columns: 1fr; }
  .practice-case-meta > div { border-right: 0; border-bottom: 0; }
  .practice-case-meta > div + div { border-top: 1px solid rgba(255,255,255,.1); }
  .practice-service-strip > div, .practice-output-strip > div { border-right: 0; }
  .practice-service-strip > div + div, .practice-output-strip > div + div { border-top: 1px solid rgba(255,255,255,.1); }
  .practice-report-kpis > div { border-right: 0; }
  .practice-report-kpis > div + div { border-top: 1px solid rgba(255,255,255,.1); }
  .practice-report-layout { gap: .8rem; }
  .practice-platform-table-wrap { overflow-x: auto; }
  .practice-platform-table { min-width: 38rem; }
  .practice-case-panel--wide { grid-column: auto; }
  .practice-footer { align-items: center; flex-direction: column; }
  .practice-footer-lower { align-items: flex-start; flex-direction: column; }
  .practice-footer-actions { width: 100%; flex-wrap: wrap; }
  .practice-workflow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .practice-workflow > div:nth-child(2n) { border-right: 0; }
  .practice-workflow > div:nth-child(n + 3) { border-top: 1px solid rgba(255,255,255,.1); }
  .practice-workflow > div:not(:last-child)::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .practice-image-slot--hero { transform: none; }
  .practice-flow-line { animation: none; }
}

.graphic-lock-copy span {
  display: block;
}

.graphic-password-form {
  width: min(23.5rem, 100%);
  justify-self: center;
}

.graphic-password-field {
  position: relative;
  display: block;
  min-width: 0;
}

.graphic-password-input,
.graphic-password-submit {
  backdrop-filter: blur(18px);
}

.graphic-password-input {
  padding-right: 3rem;
}

.graphic-password-toggle {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  transform: translateY(-50%);
  cursor: pointer;
}

.graphic-password-toggle:hover,
.graphic-password-toggle:focus-visible {
  color: rgba(255, 255, 255, 0.96);
  background: rgba(255, 255, 255, 0.08);
}

.graphic-eye {
  width: 1.12rem;
  height: 1.12rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.graphic-eye-closed,
.graphic-password-toggle.is-visible .graphic-eye-open {
  display: none;
}

.graphic-password-toggle.is-visible .graphic-eye-closed {
  display: inline-block;
}

.graphic-password-submit {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.13);
}

.graphic-password-message {
  margin: 0;
  text-align: center;
}

.graphic-viewer {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 0;
  height: calc(100dvh - clamp(6.4rem, 10vh, 8.1rem));
  display: grid;
  grid-template-columns: var(--graphic-sidebar-width) 7px minmax(0, 1fr);
  grid-template-rows: auto;
  align-items: start;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.16);
  box-shadow: 0 1.5rem 4.5rem rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.graphic-thumbs-toggle,
.graphic-thumbs-close {
  display: none;
}

.graphic-sidebar {
  position: relative;
  top: auto;
  height: 100%;
  align-self: start;
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.34);
}

.graphic-sidebar-head {
  display: grid;
  gap: 0.86rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.graphic-sidebar-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}

.graphic-sidebar-title {
  min-width: 0;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
}

.graphic-thumb-control {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  width: min(9.5rem, 58%);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.66);
}

.graphic-thumb-control input {
  flex: 0 0 auto;
  width: 100%;
  accent-color: #fff;
}

.graphic-thumb-grid {
  min-height: 0;
  overflow: auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(var(--graphic-thumb-columns), minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-rows: auto;
  justify-content: stretch;
  align-content: start;
  align-items: start;
  gap: var(--graphic-thumb-gap);
}

.graphic-thumb {
  width: 100%;
  min-width: 0;
  padding: 0.34rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 0.36rem;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.graphic-thumb.is-active {
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 1px rgba(0, 255, 234, 0.28), 0 0.8rem 1.8rem rgba(0, 0, 0, 0.32);
  transform: translate3d(0, -1px, 0);
}

.graphic-thumb img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.34);
  user-select: none;
  -webkit-user-drag: none;
}

.graphic-thumb span {
  display: block;
  padding: 0.1rem 0 0.14rem;
  font-size: 0.72rem;
  line-height: 1;
  text-align: center;
}

.graphic-thumb.is-active span {
  color: rgba(255, 255, 255, 0.96);
  font-weight: 800;
}

.graphic-resizer {
  position: relative;
  width: 7px;
  min-width: 7px;
  height: 100%;
  cursor: ew-resize;
  background: transparent;
}

.graphic-resizer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  display: block;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.16);
  transition: width 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.graphic-resizer:hover::before {
  width: 3px;
  background: rgba(0, 255, 234, 0.68);
  box-shadow: 0 0 1.25rem rgba(0, 255, 234, 0.36);
}

.graphic-reader {
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  padding: clamp(1.25rem, 2.6vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2.2rem, 4vw, 4.5rem);
}

.graphic-page-item {
  margin: 0 auto;
  width: min(100%, 88rem);
  flex: 0 0 auto;
  min-height: 0;
  display: block;
  scroll-margin-top: clamp(1rem, 2vw, 1.5rem);
}

.graphic-page-item img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  box-shadow: 0 1.25rem 4rem rgba(0, 0, 0, 0.42);
}

@media (max-width: 900px) {
  .graphic-page-shell {
    padding: 6rem 0.9rem 1rem;
  }

  .graphic-close {
    min-width: 0;
    height: 1.75rem;
    padding: 0 0.62rem;
    font-size: 0.72rem;
  }

  .graphic-viewer {
    width: 100%;
    min-height: calc(100dvh - 8rem);
    height: calc(100dvh - 8rem);
    grid-template-columns: 1fr;
    overflow: hidden;
    border-radius: 0.85rem;
  }

  .graphic-thumbs-toggle {
    position: absolute;
    left: 0.9rem;
    top: 5rem;
    z-index: 7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.2rem;
    padding: 0 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
  }

  .graphic-sidebar {
    position: fixed;
    z-index: 8;
    top: 6rem;
    bottom: 1rem;
    left: 0;
    height: auto;
    width: min(82vw, 22rem);
    transform: translateX(-105%);
    transition: transform 240ms ease;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(22px);
  }

  .graphic-page.is-thumbs-open .graphic-sidebar {
    transform: translateX(0);
  }

  .graphic-thumbs-close {
    display: inline-flex;
    justify-self: start;
    height: 2rem;
    padding: 0 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.08);
  }

  .graphic-drawer-backdrop {
    position: absolute;
    inset: 0;
    z-index: 7;
    background: rgba(0, 0, 0, 0.44);
  }

  .graphic-drawer-backdrop[hidden] {
    display: none !important;
  }

  .graphic-resizer {
    display: none;
  }

  .graphic-reader {
    height: 100%;
    min-height: 0;
    overflow-y: auto;
    padding: 1rem 0.7rem 1.45rem;
    gap: 1.65rem;
  }
}
